﻿/* ========================================
   ABOUT & CONTACT PAGES - PROFESSIONAL STYLES
   Designed for UAE real estate excellence
   ======================================== */


/* ========================================
   CRITICAL FIXES - PREVENT FOUC & FLICKERING
   ======================================== */

/* SKELETON LOADING FOR HERO STATS */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    display: inline-block;
    border-radius: 4px;
    min-width: 60px;
    height: 2.5rem;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* IMAGE CONTAINER FIX - PREVENT LAYOUT SHIFT */
.image-container {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 aspect ratio */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s ease;
}

    .image-container img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.6s ease, transform 0.5s ease;
    }

        .image-container img.lazy-load {
            opacity: 0.3;
            filter: blur(2px);
        }

        .image-container img:not(.lazy-load) {
            opacity: 1;
            filter: blur(0);
            transform: scale(1.02);
        }

    .image-container:hover img {
        transform: scale(1.05);
    }

/* BADGE POSITIONING - NO FLICKER */
.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-container:hover .image-badge,
.image-container img:not(.lazy-load) + .image-badge {
    opacity: 1;
    transform: translateY(0);
}

/* TABS - CSS ONLY VISIBILITY (NO JS FOUC) */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREVENT TEXT SELECTION DURING ANIMATIONS */
.about-hero,
.about-section,
.mission-section {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* CRITICAL: HIDE TAB CONTENTS UNTIL JS LOADS */
.client-sections:not(.js-loaded) .tab-content:not(.active) {
    display: none !important;
}

/* SMOOTH TRANSITIONS FOR ALL ELEMENTS */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* PRELOAD FONTS TO PREVENT FOUC */
@font-face {
    font-family: 'Montserrat';
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-display: swap;
}

/* HERO SECTIONS */
.about-hero, .contact-hero {
    background: linear-gradient(rgba(10, 46, 90, 0.85), rgba(10, 46, 90, 0.9)), url('../Images/about-hero.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

.contact-hero {
    background-image: linear-gradient(rgba(10, 46, 90, 0.85), rgba(10, 46, 90, 0.9)), url('../Images/contact-hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(42, 183, 181, 0.1) 0%, transparent 25%), radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 30%);
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

    .hero-content h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        letter-spacing: -1px;
        line-height: 1.2;
    }

        .hero-content h1 span {
            color: var(--coral);
            position: relative;
        }

            .hero-content h1 span::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--coral);
                opacity: 0.6;
                border-radius: 2px;
            }

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--coral);
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--coral), var(--coral-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.stat-label {
    font-size: 1.05rem;
    color: white;
    font-weight: 500;
    opacity: 0.9;
}

/* CONTACT INFO CARDS */
.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.info-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.8rem;
    min-width: 220px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .info-card:hover {
        background: rgba(255, 255, 255, 0.18);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .info-card i {
        font-size: 2.2rem;
        color: var(--coral);
        margin-bottom: 1rem;
        display: block;
    }

    .info-card h4 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: white;
        font-weight: 700;
    }

    .info-card p {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.7;
        font-size: 1.05rem;
    }

/* SECTION STYLING */
.about-section, .mission-section, .services-section, .why-choose-section,
.client-sections, .contact-form-section, .testimonials-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .section-header h2 {
        font-size: 2.8rem;
        color: var(--navy);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

        .section-header h2 span {
            color: var(--coral);
            position: relative;
        }

            .section-header h2 span::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 100%;
                height: 4px;
                background: var(--coral);
                opacity: 0.6;
                border-radius: 2px;
            }

    .section-header p {
        color: var(--gray);
        font-size: 1.2rem;
        margin-top: 1.2rem;
        line-height: 1.7;
    }

/* ABOUT CONTENT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.about-highlight {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    border-left: 4px solid var(--admin-success);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .about-highlight i {
        font-size: 2rem;
        color: var(--admin-success);
        min-width: 36px;
    }

    .about-highlight h4 {
        color: var(--navy);
        margin-bottom: 0.5rem;
        font-size: 1.3rem;
    }

    .about-highlight p {
        color: var(--gray);
        margin-bottom: 0;
        font-size: 0.95rem;
    }

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* MISSION SECTION */
.mission-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
    color: white;
}

    .mission-section .section-header h2 {
        color: white;
    }

        .mission-section .section-header h2 span {
            color: var(--coral-light);
        }

    .mission-section .section-header p {
        color: rgba(255, 255, 255, 0.85);
    }

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.mission-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--coral), var(--admin-secondary), var(--admin-success));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(230, 57, 70, 0.3);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--coral);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
    color: var(--admin-secondary);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    color: var(--admin-success);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .service-features li {
        padding: 0.6rem 0;
        color: var(--dark-gray);
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
        font-weight: 500;
    }

        .service-features li i {
            color: var(--coral);
            font-size: 1.1rem;
            min-width: 20px;
            margin-top: 3px;
        }

/* WHY CHOOSE US */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

    .reason-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--coral);
    }

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--coral);
}

.reason-card:nth-child(2) .reason-icon {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(231, 76, 60, 0.2) 100%);
    color: #e74c3c;
}

.reason-card:nth-child(3) .reason-icon {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(26, 188, 156, 0.2) 100%);
    color: #1abc9c;
}

.reason-card:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.2) 100%);
    color: #3498db;
}

.reason-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reason-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.02rem;
}

/* CLIENT SECTIONS */
.client-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

    .tab-btn:hover {
        background: var(--light-gray);
        border-color: var(--coral);
        color: var(--coral);
    }

    .tab-btn.active {
        background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
        color: white;
        border-color: var(--coral);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        transform: translateY(-2px);
    }

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

.client-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.client-text h3 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.client-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .benefits-list li {
        padding: 0.8rem 0;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        color: var(--dark-gray);
        font-weight: 500;
        border-bottom: 1px dashed var(--light-gray);
    }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li i {
            color: var(--coral);
            font-size: 1.2rem;
            min-width: 24px;
            margin-top: 4px;
        }

.client-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

    .client-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .client-image:hover img {
        transform: scale(1.05);
    }

/* CONTACT FORM SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-container {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.6rem;
    font-size: 1.02rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.95rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1.02rem;
    transition: all 0.2s;
}

    .contact-form .form-control:focus {
        outline: none;
        border-color: var(--coral);
        box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    }

.contact-form .form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 1.02rem;
    background-color: white;
    background-image: url("image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 0 0 .293 4.707l5 5a1 1 0 0 0 1.414 0l5-5a1 1 0 1 0-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    appearance: none;
}

    .contact-form .form-select:focus {
        outline: none;
        border-color: var(--coral);
        box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
    }

.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.2rem 0;
}

.contact-form .form-check-input {
    width: 180px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--coral);
}

.contact-form .form-check label {
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    font-size: 0.98rem;
}

.contact-form .btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    color: white;
    border: none;
    padding: 1.1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

    .contact-form .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, var(--coral-light) 0%, #ff8e8e 100%);
    }

.contact-form .validation-error {
    font-size: 0.85rem;
    color: var(--coral);
    margin-top: 0.3rem;
    display: block;
    font-weight: 500;
}

/* SUCCESS PANEL */
.success-panel {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4rem;
    color: #2ecc71;
}

.success-panel h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.success-message {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    .success-actions .btn {
        padding: 0.9rem 2rem;
        border-radius: 14px;
        font-weight: 600;
        font-size: 1.05rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        transition: all 0.3s;
    }

.btn-secondary {
    background: var(--coral);
    color: white;
    border: none;
}

    .btn-secondary:hover {
        background: var(--coral-light);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-outline {
    background: white;
    color: var(--navy);
    border: 2px solid var(--light-gray);
}

    .btn-outline:hover {
        background: var(--light-gray);
        border-color: var(--coral);
        color: var(--coral);
        transform: translateY(-2px);
    }

/* CONTACT INFO SIDEBAR */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

    .info-box h3 {
        font-size: 1.6rem;
        color: var(--navy);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

        .info-box h3 i {
            color: var(--coral);
            font-size: 1.8rem;
        }

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hours-list li {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--light-gray);
        display: flex;
        justify-content: space-between;
        font-weight: 500;
        color: var(--dark-gray);
    }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list li span:first-child {
            color: var(--navy);
            font-weight: 600;
        }

.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.map-note {
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 0.8rem;
    font-style: italic;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--cream-light);
    transition: all 0.2s;
}

    .contact-item:hover {
        background: var(--light-gray);
        transform: translateX(5px);
    }

    .contact-item i {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
    }

.contact-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-value {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1.05rem;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--light-gray);
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 15px;
        left: 20px;
        font-size: 5rem;
        color: var(--coral);
        opacity: 0.2;
        font-family: Georgia, serif;
        line-height: 1;
    }

.testimonial-content {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.author-info h4 {
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* CTA PHONE SECTION */
.cta-phone {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    margin: 2rem auto;
    border: 2px solid var(--coral);
}

    .cta-phone i {
        font-size: 2.5rem;
        color: var(--coral);
        min-width: 60px;
        text-align: center;
    }

.phone-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--coral);
    letter-spacing: -0.5px;
}

.phone-hours {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .about-content,
    .mission-content,
    .client-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image,
    .client-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about-hero, .contact-hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .client-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

        .success-actions .btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }

    .cta-phone {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero, .contact-hero {
        height: 55vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card, .reason-card {
        padding: 1.8rem 1.2rem;
    }

    .service-icon, .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .contact-form .btn-primary {
        padding: 1rem;
        font-size: 1.1rem;
    }
}
