/* --- HERO POSTER --- */
.hero-poster {
    height: 90vh;
    background: linear-gradient(rgba(10, 25, 47, 0.72), rgba(10, 25, 47, 0.72)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Changed from center to flex-start */
    text-align: left;        /* Changed from center to left */
    color: white;
    padding-top: 80px;
    padding-left: 5%;        /* Added padding so it doesn't touch the exact edge */
}

.hero-inner {
    width: 90%;
    max-width: 600px; /* Changed from 1000px to 600px so the text wraps nicely */
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start; /* Changed from center to flex-start */
    flex-wrap: wrap;
}

.hero-poster h1 { font-size: 3rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.hero-poster h1 span { color: var(--gold); }
.hero-poster p { font-size: 1rem; opacity: 0.9; margin-bottom: 30px; font-weight: 300; }

/* --- SERVICE SECTION --- */
.service-section { padding: 80px 10%; background: #fdfdfd; }

.service-section h2 {
    font-size: 2.4rem;
    color: var(--navy);
    font-weight: 800;
}

/* The Container for your cards */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* NEW CARD STYLE: Optimized for Long Text */
.long-text-card {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-left: 5px solid var(--gold);
    transition: all 0.4s ease;
}

.long-text-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    background: var(--navy);
    color: var(--gold);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.card-icon i { font-size: 3rem; }

/* Service Image Styling */
.long-text-card img {
    width: 200px;
    min-width: 200px;
    height: 100%;
    min-height: 200px;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-right: 1px solid #eee;
}

@media (max-width: 768px) {
    .long-text-card {
        flex-direction: column;
    }
    .long-text-card img {
        width: 100px;
        height: 100px;
        margin: 15px auto 0;
        min-width: auto;
        max-height: 100px;
        object-fit: contain;
        object-position: center;
        background: transparent;
        border-right: none;
        border-bottom: none;
        padding: 0;
        box-sizing: border-box;
        border-radius: 5px;
    }
}

.card-content { padding: 30px 40px; }
.card-content h3 {
    color: var(--navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.card-content p {
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    text-align: justify;
}

/* --- CTA BANNER --- */
.cta-banner {
    background: var(--gold);
    color: var(--navy);
    padding: 60px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-banner h2 { font-size: 2rem; }

/* --- MOBILE RESPONSIVE --- */

@media (max-width: 768px) {
    /* Hero Adjustments */
    .hero-poster { height: 70vh; padding-top: 60px; }
    .hero-poster h1 { font-size: 1.8rem; padding: 0 10px; letter-spacing: 1px; }
    .hero-poster p { font-size: 0.95rem; padding: 0 15px; margin-bottom: 20px; }
    .hero-inner { width: 95%; }
    .hero-actions { gap: 12px; }
    .hero-actions .btn { padding: 10px 20px; font-size: 0.85rem; }

    /* Service Section */
    .service-section { padding: 50px 5%; }
    .service-section h2 { font-size: 1.6rem; }

    /* Card Adjustments (Stacked for mobile) */
    .long-text-card { flex-direction: column; }
    .card-icon { padding: 20px; min-width: auto; }
    .card-icon i { font-size: 2rem; }
    .card-content { padding: 20px; }
    .card-content h3 { font-size: 1.1rem; letter-spacing: 0.5px; margin-bottom: 10px; }
    .card-content p { font-size: 0.9rem; line-height: 1.7; }

    /* CTA Banner */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 5%;
    }
    .cta-banner h2 { font-size: 1.4rem; }
    .cta-banner p { font-size: 0.9rem; }
    .cta-banner a { width: 100%; text-align: center; padding: 12px 20px; font-size: 0.85rem; }

    /* Clients Section */
    .clients-section { padding: 50px 0; }
    .clients-header { margin-bottom: 30px; }
    .clients-header .eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
    .clients-header h2 { font-size: 1.5rem; }
    .logo-track { padding: 0 5%; }
    .client-logo { max-width: 100px; }
    .client-logo img { max-height: 40px; }

    /* Reviews Section */
    .reviews-section { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .section-header .eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
    .section-header h2 { font-size: 1.5rem; }
    .reviews-grid { gap: 20px; padding: 0 5%; }
    .review-card { padding: 25px; }
    .quote-icon { font-size: 1.5rem; top: 15px; right: 20px; }
    .review-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
    .reviewer-info img { width: 45px; height: 45px; }
    .reviewer-meta strong { font-size: 0.95rem; }
    .reviewer-meta span { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .hero-poster { height: 60vh; }
    .hero-poster h1 { font-size: 1.5rem; }
    .hero-poster p { font-size: 0.85rem; }

    .service-section { padding: 40px 4%; }
    .service-section h2 { font-size: 1.4rem; }

    .card-content h3 { font-size: 1rem; }
    .card-content p { font-size: 0.85rem; }

    .cta-banner h2 { font-size: 1.2rem; }
    .cta-banner p { font-size: 0.85rem; }

    .clients-header h2 { font-size: 1.3rem; }
    .section-header h2 { font-size: 1.3rem; }
    .review-text { font-size: 0.9rem; }
}

/* CLIENTS SECTION STYLES */
.clients-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-header .eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.clients-header h2 {
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 800;
}

.logo-track {
    max-width: 1100px;
    margin: 0 auto;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 logos in a row */
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.client-logo {
    width: 100%;
    max-width: 140px;
    filter: grayscale(100%); /* Makes logos look professional and uniform */
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 50px;
}

.client-logo:hover {
    filter: grayscale(0%); /* Restores color on hover */
    opacity: 1;
    transform: translateY(-5px); /* Subtle lift effect */
}

/* Responsive for Mobile */
@media (max-width: 992px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 logos per row on tablets */
    }
}

@media (max-width: 576px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 logos per row on phones */
        gap: 20px;
    }
    .clients-header h2 {
        font-size: 1.8rem;
    }
}
/* REVIEWS SECTION STYLES */
.reviews-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--gold);
    font-size: 0.8rem;
    display: block;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two reviews side by side */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border-top: 4px solid var(--gold); /* Adds a professional gold accent line */
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.2;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-style: italic;
    margin-bottom: 30px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.reviewer-meta strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
}

.reviewer-meta span {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for Mobile */
@media (max-width: 850px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5%;
    }
    .review-card {
        padding: 30px;
    }
}

/* =============================================
   COMPREHENSIVE MOBILE STYLES FOR REVIEW CARDS
   ============================================= */

/* Tablet breakpoint (768px) */
@media (max-width: 768px) {
    .reviews-section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; padding: 0 5%; }
    .section-header .eyebrow { font-size: 0.7rem; letter-spacing: 2px; }
    .section-header h2 { font-size: 1.6rem; }

    .reviews-grid { grid-template-columns: 1fr; gap: 15px; padding: 0 4%; }

    .review-card { padding: 25px; max-width: 100%; margin: 0 auto; }
    .review-card:hover { transform: translateY(-5px); }

    .quote-icon { font-size: 1.5rem; top: 15px; right: 20px; }
    .review-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

    .reviewer-info { gap: 12px; }
    .reviewer-info img { width: 50px; height: 50px; }
    .reviewer-meta strong { font-size: 1rem; }
    .reviewer-meta span { font-size: 0.75rem; letter-spacing: 0.5px; }
}

/* Small mobile breakpoint (576px) */
@media (max-width: 576px) {
    .reviews-section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.4rem; }

    .reviews-grid { gap: 12px; padding: 0 3%; }

    .review-card { padding: 20px; border-radius: 10px; }
    .review-card:hover { transform: translateY(-3px); }

    .quote-icon { font-size: 1.2rem; top: 12px; right: 15px; }
    .review-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 18px; }

    .reviewer-info { gap: 10px; }
    .reviewer-info img { width: 45px; height: 45px; }
    .reviewer-meta strong { font-size: 0.95rem; }
    .reviewer-meta span { font-size: 0.7rem; }
}

/* Extra small mobile breakpoint (480px) */
@media (max-width: 480px) {
    .section-header h2 { font-size: 1.2rem; }
    .reviews-grid { gap: 10px; padding: 0 2%; }

    .review-card { padding: 18px; border-radius: 8px; }
    .quote-icon { font-size: 1.1rem; top: 10px; right: 12px; }
    .review-text { font-size: 0.85rem; line-height: 1.55; margin-bottom: 15px; }

    .reviewer-info img { width: 40px; height: 40px; }
    .reviewer-meta strong { font-size: 0.9rem; }
    .reviewer-meta span { font-size: 0.65rem; }
}

/* FEEDBACK FORM SECTION */
.feedback-section {
    padding: 80px 0;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.feedback-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
}

.feedback-form .form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form .form-group input,
.feedback-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(10, 25, 47, 0.15);
    border-radius: 6px;
    background: white;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.feedback-form .form-group input:focus,
.feedback-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 165, 92, 0.15);
}

.feedback-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form .form-error {
    color: #b91c1c;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 6px;
}

.form-submit-wrapper {
    text-align: center;
    margin-top: 30px;
}

.btn-feedback-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-feedback-submit:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.btn-feedback-submit i {
    font-size: 0.9rem;
}

/* Mobile Responsive for Feedback Form */
@media (max-width: 768px) {
    .feedback-section {
        padding: 50px 0;
    }

    .feedback-form-wrapper {
        padding: 25px;
        margin: 0 5%;
    }

    .feedback-form .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .feedback-form .form-group {
        margin-bottom: 15px;
    }

    .feedback-form .form-group input,
    .feedback-form .form-group textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn-feedback-submit {
        width: 100%;
        justify-content: center;
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feedback-form-wrapper {
        padding: 20px;
        margin: 0 4%;
    }

    .feedback-form .form-group input,
    .feedback-form .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .feedback-form .form-error {
        font-size: 0.75rem;
    }
}

/* =============================================
   SWIPER SLIDER STYLES FOR REVIEWS SECTION
   ============================================= */

/* Swiper Container */
.reviews-swiper {
    width: 100%;
    padding: 20px 0 60px 0;
    overflow: hidden;
}

/* Swiper Slide - No card styling changes, just layout */
.reviews-swiper .swiper-slide {
    height: auto;
}

/* Ensure review-card inside swiper maintains its design */
.reviews-swiper .swiper-slide .review-card {
    height: 100%;
    width: 500px;
    margin: 0 auto;
}

/* Swiper Pagination Bullets */
.reviews-swiper .swiper-pagination {
    bottom: 0;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(10, 25, 47, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 5px;
}

/* Swiper Navigation Arrows */
.reviews-swiper .swiper-button-prev,
.reviews-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

.reviews-swiper .swiper-button-prev:hover,
.reviews-swiper .swiper-button-next:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

.reviews-swiper .swiper-button-prev:after,
.reviews-swiper .swiper-button-next:after {
    font-size: 16px;
    font-weight: bold;
}

.reviews-swiper .swiper-button-prev {
    left: -22px;
}

.reviews-swiper .swiper-button-next {
    right: -22px;
}

/* Responsive Adjustments for Swiper */
@media (max-width: 1200px) {
    .reviews-swiper .swiper-button-prev {
        left: 10px;
    }
    .reviews-swiper .swiper-button-next {
        right: 10px;
    }
}

@media (max-width: 850px) {
    .reviews-swiper {
        padding: 20px 0 50px 0;
    }

    .reviews-swiper .swiper-button-prev,
    .reviews-swiper .swiper-button-next {
        width: 38px;
        height: 38px;
    }

    .reviews-swiper .swiper-button-prev:after,
    .reviews-swiper .swiper-button-next:after {
        font-size: 14px;
    }

    .reviews-swiper .swiper-slide .review-card {
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .reviews-swiper {
        padding: 15px 0 45px 0;
    }

    .reviews-swiper .swiper-button-prev,
    .reviews-swiper .swiper-button-next {
        display: none; /* Hide arrows on mobile, use swipe only */
    }

    .reviews-swiper .swiper-slide .review-card {
        margin: 0;
    }
}

/* =============================================
   PYRAMID LAYOUT STYLES (2+1 Cards)
   ============================================= */

/* Pyramid Grid Container */
.review-pyramid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px;
}

/* Top row cards */
.pyramid-card {
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
}

/* Bottom card - spans both columns and centers */
.pyramid-bottom {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 500px;
}

/* Responsive Pyramid - Mobile shows 1 card */
@media (max-width: 768px) {
    .review-pyramid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .pyramid-card,
    .pyramid-bottom {
        grid-column: 1;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .pyramid-bottom {
        justify-self: center;
    }

    /* Single card per slide on mobile */
    .pyramid-slide {
        padding: 0 5px;
    }

    .pyramid-card-item {
        width: 100% !important;
        max-width: 100%;
    }
}

@media (max-width: 850px) {
    .review-pyramid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .pyramid-card,
    .pyramid-bottom {
        grid-column: 1;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .review-pyramid {
        padding: 10px;
        gap: 10px;
    }
}

/* ============================================
   NEW SECTIONS: Stats, Why Choose Us, FAQ Preview
   ============================================ */

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--navy);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 5%;
    background: var(--bg);
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-section .eyebrow {
    display: inline-block;
    background: rgba(201, 165, 92, 0.15);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.why-choose-section h2 {
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--surface);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--gold);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 80px 5%;
    background: var(--surface);
}

.faq-preview-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-preview-section .eyebrow {
    display: inline-block;
    background: rgba(201, 165, 92, 0.15);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.faq-preview-section h2 {
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 700;
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-preview-item {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-preview-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.faq-preview-icon {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--navy);
}

.faq-preview-item h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-preview-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.faq-preview-cta {
    text-align: center;
}

.faq-preview-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.faq-preview-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-preview-cta .btn-primary i {
    transition: transform 0.3s ease;
}

.faq-preview-cta .btn-primary:hover i {
    transform: translateX(3px);
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 50px 4%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .why-choose-section {
        padding: 60px 4%;
    }

    .why-choose-section h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .faq-preview-section {
        padding: 60px 4%;
    }

    .faq-preview-section h2 {
        font-size: 1.8rem;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-preview-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .why-choose-section h2,
    .faq-preview-section h2 {
        font-size: 1.5rem;
    }
}