/* Contact Hero Section */
    .contact-hero {
        padding: 180px 0 120px;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
    }

    .contact-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .contact-hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 32px;
        border: 1px solid rgba(255, 215, 0, 0.3);
    }

    .contact-hero-title {
        font-size: 64px;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 32px;
        color: var(--white);
        letter-spacing: -1px;
    }

    .contact-hero-subtitle {
        font-size: 20px;
        color: var(--gray-300);
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto;
    }

    /* Support Info Section */
    .support-info-section {
        background: var(--white);
        padding: 40px 0;
    }

    .info-box {
        margin-bottom: 60px;
    }

    .info-box h2 {
        font-size: 36px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 24px;
    }

    .info-box p {
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .info-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-box ul li {
        font-size: 18px;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 16px;
        padding-left: 32px;
        position: relative;
    }

    .info-box ul li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: 700;
        font-size: 20px;
    }

    .info-box ul li strong {
        color: var(--black);
        font-weight: 700;
    }

    /* Contact Methods Section */
    .contact-methods-section {
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 42px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 16px;
    }

    .section-title p {
        font-size: 18px;
        color: var(--gray-600);
        max-width: 700px;
        margin: 0 auto;
    }

    .contact-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }

    .method-card {
        background: var(--white);
        border: 2px solid var(--gray-200);
        border-radius: 20px;
        padding: 40px 32px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .method-card:hover {
        border-color: var(--primary);
        box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
        transform: translateY(-8px);
    }

    .method-icon {
        width: 70px;
        height: 70px;
        background: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 32px;
        color: var(--black);
    }

    .method-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--black);
        margin-bottom: 16px;
    }

    .method-card p {
        font-size: 16px;
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .method-link {
        display: inline-block;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .method-link:hover {
        color: var(--black);
    }

    /* Email Departments Section */
    .email-departments-section {
        background: var(--white);
        padding: 10px 0;
        margin-bottom: 25px;
    }

    .departments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .department-card {
        background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
        border: 2px solid var(--gray-200);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .department-card:hover {
        border-color: var(--primary);
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
    }

    .department-card h4 {
        font-size: 18px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 12px;
    }

    .department-card a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .department-card a:hover {
        color: var(--black);
    }

    /* Office Info Section */
    .office-info-section {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        color: var(--white);
        padding: 80px 0;
        position: relative;
    }

    .office-info-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .office-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .office-card {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 48px 32px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .office-card:hover {
        background: rgba(255, 215, 0, 0.05);
        border-color: var(--primary);
    }

    .office-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    }

    .office-card p {
        font-size: 16px;
        color: var(--gray-300);
        line-height: 1.8;
        margin: 0;
    }

    .office-card strong {
        color: var(--primary);
        display: block;
        margin-bottom: 8px;
    }

    /* Social Section */
    .social-section {
        background: var(--white);
        padding: 60px 0;
        text-align: center;
    }

    .social-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--black);
        margin-bottom: 32px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 56px;
        height: 56px;
        background: var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 24px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid var(--black);
    }

    .social-link:hover {
        background: var(--primary);
        color: var(--black);
        border-color: var(--primary);
        transform: translateY(-4px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-hero {
            padding: 140px 0 80px;
        }

        .contact-hero-title {
            font-size: 36px;
        }

        .contact-hero-subtitle {
            font-size: 17px;
        }

        .support-info-section,
        .contact-methods-section,
        .email-departments-section,
        .office-info-section {
            padding: 60px 0;
        }

        .info-box h2 {
            font-size: 28px;
        }

        .section-title h2 {
            font-size: 32px;
        }

        .contact-methods-grid,
        .departments-grid,
        .office-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }

    @media (max-width: 480px) {
        .contact-hero-title {
            font-size: 28px;
        }

        .info-box h2 {
            font-size: 24px;
        }

        .section-title h2 {
            font-size: 28px;
        }
    }
