
    /* ============================================
       CONTACT PAGE - PREMIUM PROFESSIONAL STYLES
       ============================================ */
    
    /* Hero Stats Section - Matching About Page */
    .contact-stats {
        background: #FFFFFF;
        padding: 3rem 0;
        margin-top: -2rem;
        position: relative;
        z-index: 2;
    }
    
    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        background: #FFFFFF;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(7, 12, 52, 0.08);
        padding: 2.5rem 2rem;
    }
    
    .stat-block {
        text-align: center;
        position: relative;
    }
    
    .stat-block:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -1rem;
        top: 20%;
        height: 60%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(42, 53, 130, 0.2), transparent);
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, rgba(235, 103, 14, 0.1) 0%, rgba(42, 53, 130, 0.1) 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stat-icon svg {
        width: 30px;
        height: 30px;
        stroke: #EB670E;
        stroke-width: 2;
    }
    
    .stat-label {
        font-size: 0.95rem;
        font-weight: 600;
        color: #070C34;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 0.25rem;
    }
    
    .stat-value {
        font-family: 'Prata', serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: #EB670E;
        line-height: 1.2;
    }
    
    /* Company Overview Section - Matching About Page */
    .contact-overview {
        padding: 5rem 0;
        background: #F4EEEA;
    }
    
    .overview-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
    
    .overview-content {
        position: relative;
    }
    
    .overline {
        font-family: 'FigTree', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #EB670E;
        margin-bottom: 1rem;
        display: block;
    }
    
    .overview-title {
        font-family: 'Inter', sans-serif;
        font-size: 2.75rem;
        font-weight: 700;
        color: #070C34;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .overview-text {
        font-size: 1.125rem;
        color: #2A3582;
        line-height: 1.9;
        margin-bottom: 2rem;
    }
    
    .overview-visual {
        position: relative;
    }
    
    .visual-card {
        background: linear-gradient(135deg, #070C34 0%, #2A3582 100%);
        border-radius: 20px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .visual-card::before {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(235, 103, 14, 0.2) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-method-item {
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-method-item:last-child {
        border-bottom: none;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
        background: rgba(235, 103, 14, 0.15);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .method-icon svg {
        width: 24px;
        height: 24px;
        stroke: #EB670E;
        stroke-width: 2;
    }
    
    .method-content h4 {
        color: #FFFFFF;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .method-content p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.6;
    }
    
    .method-content a {
        color: #EB670E;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .method-content a:hover {
        color: #FFFFFF;
    }
    
    /* Info Cards Section */
    .info-cards-section {
        padding: 5rem 0;
        background: #FFFFFF;
    }
    
    .info-cards-grid {
        display: flexbox;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .info-card {
        background: #F4EEEA;
        border-radius: 20px;
        padding: 2.5rem 2rem;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .info-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #EB670E, #2A3582);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 50px rgba(7, 12, 52, 0.1);
        background: #FFFFFF;
    }
    
    .info-card:hover::after {
        transform: scaleX(1);
    }
    
    .info-card-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
        background: linear-gradient(135deg, #EB670E, #2A3582);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .info-card-icon svg {
        width: 32px;
        height: 32px;
        stroke: #FFFFFF;
        stroke-width: 2;
    }
    
    .info-card-title {
        font-size: 1.35rem;
        font-weight: 700;
        color: #070C34;
        margin-bottom: 1rem;
    }
    
    .info-card-text {
        color: #2A3582;
        line-height: 1.7;
        font-size: 0.95rem;
    }
    
    .info-card-text a {
        color: #EB670E;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
        display: inline-block;
        margin-top: 0.25rem;
    }
    
    .info-card-text a:hover {
        color: #d4560c;
    }
    
    /* Certifications Section - Compact */
    .certs-compact {
        padding: 3rem 0;
        background: #F4EEEA;
    }
    
    .certs-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem 3rem;
    }
    
    .cert-item {
        text-align: center;
    }
    
    .cert-name {
        font-family: 'Prata', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #EB670E;
        margin-bottom: 0.25rem;
    }
    
    .cert-desc {
        font-size: 0.75rem;
        font-weight: 600;
        color: #2A3582;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    /* Location Banner - Matching Visual Card Style */
    .location-banner {
        padding: 0 0 5rem 0;
        background: #F4EEEA;
    }
    
    .location-banner-card {
        background: linear-gradient(135deg, #070C34 0%, #1a1f4e 100%);
        border-radius: 20px;
        padding: 3rem 3.5rem;
        position: relative;
        overflow: hidden;
    }
    
    .location-banner-card::before {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(235, 103, 14, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }
    
    .location-banner-content {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .location-banner-left {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    .location-banner-icon {
        width: 64px;
        height: 64px;
        background: rgba(235, 103, 14, 0.12);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(235, 103, 14, 0.25);
    }
    
    .location-banner-icon svg {
        width: 32px;
        height: 32px;
        stroke: #EB670E;
        stroke-width: 2;
    }
    
    .location-banner-details {
        text-align: left;
    }
    
    .location-banner-label {
        font-size: 0.75rem;
        font-weight: 700;
        color: #EB670E;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
    
    .location-banner-address {
        font-family: 'Inter', sans-serif;
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.4;
        color: #FFFFFF;
    }
    
    .location-banner-badge {
        padding: 0.75rem 2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(235, 103, 14, 0.2);
        border-radius: 100px;
        color: #EB670E;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        backdrop-filter: blur(4px);
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .stats-wrapper {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .stat-block:last-child::after {
            display: none;
        }
        
        .overview-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        .info-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .overview-title {
            font-size: 2.25rem;
        }
    }
    
    @media (max-width: 768px) {
        .stats-wrapper {
            grid-template-columns: 1fr;
            padding: 2rem 1.5rem;
        }
        
        .stat-block:not(:last-child)::after {
            display: none;
        }
        
        .overview-title {
            font-size: 2rem;
        }
        
        .info-cards-grid {
            grid-template-columns: 1fr;
        }
        
        .certs-wrapper {
            gap: 1.5rem;
        }
        
        .location-banner-card {
            padding: 2rem 1.75rem;
        }
        
        .location-banner-content {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .location-banner-address {
            font-size: 1.25rem;
        }
        
        .contact-stats {
            padding: 2rem 0;
        }
    }
    
    @media (max-width: 480px) {
        .overview-title {
            font-size: 1.75rem;
        }
        
        .location-banner-left {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .location-banner-address {
            font-size: 1.1rem;
        }
        
        .cert-name {
            font-size: 1.25rem;
        }
    }
