﻿:root {
    --primary-color: #00aeef;
    /* Teknocak Blue */
    --primary-dark: #0088bb;
    --navy-dark: #001b36;
    /* Project Heading Color */
    --navy-text: #0a274a;
    /* Project Body Text Color */
    --page-bg: #f8f6f5;
    /* Project Background */
    --card-bg: #ffffff;
    --border-color: #e9ecef;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 27, 54, 0.12);
    /* Navy tinted shadow */
}

/* Page Wrapper */
.support-page-wrapper {
    background-color: transparent;
    color: var(--navy-text);
    font-family: "Roboto", sans-serif;
    padding-bottom: 80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: transparent;
    margin-bottom: 40px;
    text-align: center;
}

.hero-overlay {
    display: none;
}

.hero-title {
    font-family: "Roboto", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-dark);
    /* High Contrast Navy */
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--navy-text);
    /* High Contrast Body Text */
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.badge-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(0, 174, 239, 0.2);
    margin-bottom: 20px;
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    padding-bottom: 30px;
}

.action-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.icon-wrapper {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.action-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Icons keep their brand colors */
.email-bg {
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
}

.phone-bg {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.location-bg {
    background: linear-gradient(135deg, #6ab04c, #badc58);
}

.social-bg {
    background: linear-gradient(135deg, #f0932b, #ffbe76);
}

.action-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy-dark);
    /* High Contrast */
}

.action-card p {
    font-size: 1.05rem;
    color: var(--navy-text);
    /* High Contrast */
    font-weight: 500;
    margin-bottom: 0;
}

.hover-arrow {
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.action-card:hover .hover-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Section */
.section-heading {
    font-weight: 800;
    color: var(--navy-dark);
    /* High Contrast */
    font-size: 2rem;
    margin-bottom: 25px;
}

.accordion-custom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item-custom {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.accordion-item-custom.active {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: #fff;
}

.accordion-header-custom {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--navy-dark);
    /* High Contrast */
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
}

.accordion-header-custom i {
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgba(0, 174, 239, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item-custom.active .accordion-header-custom i {
    background: var(--primary-color);
    color: #fff;
}

.accordion-body-custom {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--navy-text);
    /* High Contrast */
    font-weight: 400;
    line-height: 1.7;
    font-size: 1.05rem;
    transition: all 0.3s ease-out;
}

.accordion-item-custom.active .accordion-body-custom {
    max-height: 500px;
    padding-bottom: 25px;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy-dark);
    /* High Contrast */
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.info-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    background: rgba(0, 174, 239, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.info-list li strong {
    display: block;
    color: var(--navy-dark);
    /* High Contrast */
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-list li p {
    color: var(--navy-text);
    /* High Contrast */
    font-size: 1.05rem;
    margin: 0;
    font-weight: 500;
}

.social-links-row {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.card-header-custom {
    padding: 35px;
    background: #f1f5f9;
    /* Slight gray for header distinction */
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.card-header-custom h2 {
    font-size: 2rem;
    font-weight: 800 !important;
    color: var(--navy-dark);
    /* High Contrast */
    margin-bottom: 10px;
}

.card-header-custom p {
    color: var(--navy-text);
    /* High Contrast */
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

/* Light Theme Inputs */
.form-floating-custom .form-control,
.form-floating-custom .form-select {
    background: #fff;
    border: 1px solid #ced4da;
    color: #000;
    /* Absolute Black for Input Text */
    border-radius: 10px;
    padding: 1.25rem 1rem 0.75rem;
    height: auto;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.form-floating-custom .form-control:focus,
.form-floating-custom .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
    outline: none;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #495057;
    /* Darker gray for labels */
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Float logic */
.form-floating-custom .form-control:focus~label,
.form-floating-custom .form-control:not(:placeholder-shown)~label,
.form-floating-custom .form-select:focus~label,
.form-floating-custom .form-select:not([value=""])~label {
    top: 0.7rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Textarea specific */
.form-floating-custom textarea.form-control+label {
    top: 1.5rem;
}

.form-floating-custom textarea.form-control:focus+label,
.form-floating-custom textarea.form-control:not(:placeholder-shown)+label {
    top: 0.7rem;
    transform: none;
}

.form-check-label {
    color: var(--navy-dark);
    /* High Contrast */
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    border: 2px solid #adb5bd;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-submit-custom {
    background: linear-gradient(135deg, #00aeef, #007bbd);
    color: #fff;
    font-weight: 700;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.3);
}

.btn-submit-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .card-header-custom {
        padding: 25px;
    }

    .action-card {
        padding: 30px;
    }
}