/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #3A473A;
    background-color: #F4EFE6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ========================================
   COLOR VARIABLES (Green + Red Theme)
   ======================================== */

:root {
    --primary-green: #6B8E4E;      /* Dusty olive green */
    --dark-green: #2E4A2E;         /* Deep forest green */
    --sage-green: #8DA37A;         /* Soft sage */
    --primary-red: #C44D3A;        /* Warm, earthy red (like roses) */
    --dark-red: #A83826;           /* Deeper red for hover states */
    --light-red: #D9705E;          /* Lighter red for accents */
    --warm-beige: #EDE5D8;         /* Creamy beige */
    --cream: #F4EFE6;              /* Light cream */
    --brown: #8B7355;              /* Earth brown */
    --dark-text: #3A473A;          /* Muted dark green */
    --light-text: #6F7C6F;         /* Soft gray-green */
}

/* ========================================
   STICKY NAVIGATION BAR (60% Transparent + Shadow)
   ======================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(46, 74, 46, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled {
    background: rgba(46, 74, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: var(--primary-red);
    padding: 5px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo a:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

.logo-text {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    display: none;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-red);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-green);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    list-style: none;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu li a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

.mobile-menu li a:hover {
    color: var(--primary-red);
}

/* ========================================
   HERO SECTION WITH SLIDESHOW
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Better Text Readability */
.slideshow-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Slideshow Dots */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-red);
    width: 30px;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT US SECTION (Centered "Our Story")
   ======================================== */

.about {
    background-color: var(--cream);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196,77,58,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Centered Header */
.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    padding: 0;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    position: relative;
}

/* Decorative lines */
.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    opacity: 0.5;
}

.section-badge::before {
    left: -55px;
    transform: translateY(-50%);
}

.section-badge::after {
    right: -55px;
    transform: translateY(-50%);
}

/* Hide decorative lines on mobile */
@media (max-width: 600px) {
    .section-badge::before,
    .section-badge::after {
        width: 20px;
    }
    .section-badge::before {
        left: -30px;
    }
    .section-badge::after {
        right: -30px;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(46,74,46,0.3));
    pointer-events: none;
}

.about-content {
    padding: 20px;
}

.about-text {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: var(--dark-text);
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a2e1a 100%);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.stats-cta {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--primary-red);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--dark-red);
}

.cta-buttons .btn-secondary {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--primary-red);
    color: white;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: #1a2e1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact li i {
    width: 25px;
    color: var(--primary-red);
}

.newsletter-text {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    color: white;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    padding: 10px 15px;
    border: none;
    border-radius: 30px;
    background: var(--primary-red);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-bottom i {
    color: var(--primary-red);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Smooth Scroll Offset for Fixed Navbar */
html {
    scroll-padding-top: 80px;
}

/* Active Navigation Link Style */
.nav-link.active {
    color: #C44D3A !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* ========================================
   SERVICES SECTION (with Image Zoom-Out)
   ======================================== */

.services {
    background-color: var(--cream);
    padding: 80px 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-badge {
    display: inline-block;
    background: transparent;
    color: var(--primary-red);
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    position: relative;
}

.services-badge::before,
.services-badge::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
    opacity: 0.5;
}

.services-badge::before {
    left: -40px;
    transform: translateY(-50%);
}

.services-badge::after {
    right: -40px;
    transform: translateY(-50%);
}

@media (max-width: 600px) {
    .services-badge::before,
    .services-badge::after {
        width: 15px;
    }
    .services-badge::before {
        left: -22px;
    }
    .services-badge::after {
        right: -22px;
    }
}

.services-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.services-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image Wrapper - Handles overflow and zoom effect */
.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

/* ZOOM OUT EFFECT on hover */
.service-card:hover .service-image {
    transform: scale(0.95);
}

/* Optional: Slight zoom IN instead (comment out above, uncomment below) */
/* .service-card:hover .service-image {
    transform: scale(1.05);
} */

/* Highlight the Site Visit card */
.service-highlight {
    background: linear-gradient(135deg, #fff 0%, #FFF5F0 100%);
    border: 1px solid rgba(196,77,58,0.2);
}

.service-card .service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin: 20px 20px 10px;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 20px 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 20px 25px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--dark-red);
}

.btn-site-visit {
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    width: auto;
    text-align: center;
}

.btn-site-visit:hover {
    background: var(--dark-red);
    color: white;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}

/* Optional: Add a subtle overlay on image hover */
.service-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196,77,58,0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.service-card:hover .service-image-wrapper::after {
    background: rgba(196,77,58,0.1);
}
/* Logo styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 45px;
    width: auto;
    display: block;
}

/* If you want to keep the text, adjust spacing */
.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
/* ======================================== */
/* 2. ADD THIS CSS TO styles.css            */
/* AFTER the existing services section       */
/* ======================================== */

/* FAQ Homepage Section */
.faq-home {
    padding: 80px 0;
    background: linear-gradient(135deg, #F4EFE6 0%, #EDE5D8 100%);
    position: relative;
    overflow: hidden;
}

.faq-home::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196,77,58,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-home::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(107,142,78,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.faq-home-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-block;
    background: rgba(196,77,58,0.1);
    color: #C44D3A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.faq-home-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.faq-home-subtitle {
    color: #6F7C6F;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-home-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-home-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FAQ List Styling */
.faq-home-list {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-home-item {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-home-item:last-child {
    border-bottom: none;
}

.faq-home-question {
    padding: 18px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #2E4A2E;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-home-question:hover {
    background: #FFF5F0;
    border-radius: 12px;
}

.faq-home-question i {
    color: #C44D3A;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-home-item.active .faq-home-question i {
    transform: rotate(180deg);
}

.faq-home-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-home-item.active .faq-home-answer {
    padding: 0 15px 18px 15px;
    max-height: 200px;
}

.faq-home-answer p {
    color: #6F7C6F;
    line-height: 1.7;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ CTA Card */
.faq-home-cta {
    position: sticky;
    top: 100px;
}

.faq-cta-card {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(196,77,58,0.1);
    transition: transform 0.3s ease;
}

.faq-cta-card:hover {
    transform: translateY(-5px);
}

.faq-cta-card i {
    font-size: 2.5rem;
    color: #C44D3A;
    margin-bottom: 15px;
}

.faq-cta-card h3 {
    font-size: 1.3rem;
    color: #2E4A2E;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.faq-cta-card p {
    color: #6F7C6F;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-whatsapp,
.btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-contact {
    background: #F4EFE6;
    color: #C44D3A;
    border: 1px solid #C44D3A;
}

.btn-contact:hover {
    background: #C44D3A;
    color: white;
    transform: translateY(-2px);
}

.faq-cta-phone {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.faq-cta-phone p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: #8B9A8B;
}

.faq-cta-phone a {
    color: #C44D3A;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-cta-phone a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-home {
        padding: 60px 0;
    }
    
    .faq-home-list {
        padding: 15px;
    }
    
    .faq-home-question {
        padding: 14px 10px;
        font-size: 0.9rem;
    }
    
    .faq-home-item.active .faq-home-answer {
        padding: 0 10px 14px 10px;
    }
    
    .faq-cta-card {
        padding: 25px 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .faq-home-question {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .faq-home-answer p {
        font-size: 0.85rem;
    }
}
/* ========================================
   REDUCED STATS SECTION SIZE
   ======================================== */

/* Add this at the end of your styles.css file */

/* Reduce stats section padding and spacing */
.stats {
    padding: 40px 0 50px 0;  /* Reduced from 80px 0 */
}

/* Reduce gap between stat items */
.stats-grid {
    gap: 20px;  /* Reduced from 40px */
    margin-bottom: 30px;  /* Reduced from 60px */
}

/* Make stat numbers slightly smaller */
.stat-number {
    font-size: clamp(2rem, 6vw, 3rem);  /* Reduced from 2.5rem-4rem */
    margin-bottom: 5px;  /* Reduced from 10px */
}

/* Make stat labels smaller */
.stat-label {
    font-size: 0.85rem;  /* Slightly smaller */
    letter-spacing: 0.5px;
}

/* Reduce CTA section padding and spacing */
.stats-cta {
    padding-top: 25px;  /* Reduced from 40px */
    max-width: 700px;  /* Slightly narrower */
}

/* Make CTA heading smaller */
.cta-heading {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);  /* Reduced from 1.5rem-2rem */
    margin-bottom: 0.5rem;  /* Reduced from 1rem */
}

/* Make CTA text smaller */
.cta-text {
    font-size: 0.85rem;  /* Smaller */
    margin-bottom: 1.2rem;  /* Reduced from 2rem */
}

/* Make buttons slightly smaller */
.stats-cta .btn {
    padding: 8px 20px;  /* Reduced from 12px 30px */
    font-size: 0.85rem;  /* Smaller font */
}

/* Reduce gap between buttons */
.cta-buttons {
    gap: 0.8rem;  /* Reduced from 1rem */
}
/* ========================================
   TESTIMONIALS / REVIEWS SECTION
   ======================================== */

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #F4EFE6 0%, #EDE5D8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(196, 77, 58, 0.1);
    color: #C44D3A;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #2E4A2E;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.testimonials-subtitle {
    color: #6F7C6F;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Slider Container */
.testimonials-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 40px;
}

.testimonials-slider {
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: #C44D3A;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3A473A;
    margin-bottom: 30px;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #C44D3A;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 0.8rem;
    color: #8B9A8B;
}

.author-rating {
    margin-top: 5px;
}

.author-rating i {
    font-size: 0.8rem;
    color: #FFB800;
    margin-right: 2px;
}

/* Navigation Dots */
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #C4C4C4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot.active {
    width: 30px;
    border-radius: 10px;
    background: #C44D3A;
}

/* Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #C44D3A;
    font-size: 1rem;
    z-index: 10;
}

.testimonial-arrow:hover {
    background: #C44D3A;
    color: white;
    transform: translateY(-50%) scale(1.05);
}

.testimonial-arrow.prev {
    left: 0;
}

.testimonial-arrow.next {
    right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .testimonials-slider-container {
        padding: 20px 30px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonials-slider-container {
        padding: 20px 15px;
    }
    
    .testimonial-arrow {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .testimonial-arrow.prev {
        left: -5px;
    }
    
    .testimonial-arrow.next {
        right: -5px;
    }
}
/* ========================================
   CANCELLATION POLICY MODAL
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 28px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease;
    z-index: 2001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #F0EBE0;
    position: relative;
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: #FEF8F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D3A;
    font-size: 1.3rem;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2E4A2E;
    font-family: 'Playfair Display', serif;
    margin: 0;
    flex: 1;
}

.modal-close {
    background: #F5F0E8;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: #8B9A8B;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #C44D3A;
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px 30px;
}

.modal-intro {
    color: #6F7C6F;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Policy Timeline Items */
.policy-timeline {
    margin-bottom: 25px;
}

.policy-item {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    padding: 12px;
    background: #FAFAFA;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateX(5px);
    background: #FFF5F0;
}

.policy-badge {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.policy-badge i {
    font-size: 1.3rem;
}

.policy-badge span {
    font-size: 0.7rem;
    font-weight: 600;
}

.policy-badge.green {
    background: #E8F5E9;
    color: #2E7D32;
}

.policy-badge.yellow {
    background: #FFF8E1;
    color: #F57C00;
}

.policy-badge.red {
    background: #FFEBEE;
    color: #D32F2F;
}

.policy-detail {
    flex: 1;
}

.policy-detail h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E4A2E;
    margin-bottom: 5px;
}

.policy-detail p {
    font-size: 0.8rem;
    color: #6F7C6F;
    line-height: 1.4;
}

/* Policy Notes */
.policy-note {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #E8F5E9;
    border-radius: 16px;
    margin-bottom: 15px;
}

.policy-note i {
    font-size: 1.3rem;
    color: #2E7D32;
    flex-shrink: 0;
}

.policy-note .note-content h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2E4A2E;
    margin-bottom: 5px;
}

.policy-note .note-content p {
    font-size: 0.8rem;
    color: #4A5A4A;
    line-height: 1.5;
}

.policy-note.warning {
    background: #FFF8E1;
}

.policy-note.warning i {
    color: #F57C00;
}

.modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #F0EBE0;
    text-align: center;
}

.modal-btn {
    background: #C44D3A;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: #A83826;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 77, 58, 0.3);
}

/* Modal Link Style */
.policy-modal-link {
    color: #C44D3A;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.policy-modal-link:hover {
    color: #A83826;
}

/* Scrollbar Styling */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: #F0EBE0;
    border-radius: 10px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: #C44D3A;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-container {
        width: 95%;
        border-radius: 20px;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px 20px;
    }
    
    .policy-item {
        padding: 10px;
    }
    
    .policy-badge {
        width: 55px;
        height: 55px;
    }
    
    .policy-badge i {
        font-size: 1rem;
    }
    
    .policy-badge span {
        font-size: 0.6rem;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
}
