/* ==========================================================================
   Design System & Tokens
   ========================================================================== */
   :root {
    /* Colors */
    --clr-forest-dark: #0a1f18;
    --clr-forest-green: #14362a;
    --clr-forest-light: #1e4d3c;
    --clr-cream: #f9fbf2;
    --clr-cream-dark: #e8ede0;
    --clr-amber: #4ade80; /* Brighter but professional emerald */
    --clr-amber-hover: #22c55e;
    --clr-teal: #2f6b6a;
    --clr-text-main: #1a1a1a;
    --clr-text-light: #4a5568;
    --clr-white: #ffffff;
    --clr-black: #000000;
    --clr-red-tint: #fef2f2;
    --clr-red-text: #dc2626;
    --clr-green-tint: #f0fdf4;
    --clr-green-text: #166534;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Layout & Spacing */
    --container-max: 1200px;
    --section-pad: 80px 20px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: 0.3s ease-in-out;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-forest-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center {
    text-align: center;
}

.section-dark {
    background-color: var(--clr-forest-green);
    color: var(--clr-cream);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--clr-white);
}

.section-light {
    background-color: var(--clr-white);
}

/* ==========================================================================
   Components (Buttons, Badges, etc.)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 4px; /* Subtle rounding for professional feel */
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-amber);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: var(--clr-amber-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--clr-white);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    border-color: var(--clr-white);
    color: var(--clr-forest-dark);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   1. Sticky Header
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    background: transparent;
}

#main-header.scrolled {
    background: rgba(10, 31, 24, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#main-header.scrolled .logo-text { color: var(--clr-white); }
#main-header.scrolled .logo-sub { color: rgba(255,255,255,0.6); }
#main-header.scrolled .desktop-nav a { color: var(--clr-white); }
#main-header.scrolled .desktop-nav a:hover { color: var(--clr-amber); }
#main-header.scrolled .btn-primary { background-color: var(--clr-amber); color: var(--clr-forest-dark);}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px; /* Adjust based on logo proportions */
    width: auto;
    display: block;
}

/* Mobile logo adjustment */
@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

.desktop-nav {
    display: flex;
    gap: 40px;
}

.desktop-nav a {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    opacity: 0.8;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--clr-amber);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a:hover::after {
    width: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    transition: var(--transition);
    transform-origin: center;
}

#main-header.scrolled .mobile-menu-btn span {
    background-color: var(--clr-white);
}

/* Mobile Menu Button Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay Styles */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-forest-dark);
    z-index: 999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.mobile-nav-overlay.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-nav-content {
    text-align: center;
    width: 100%;
    padding: 40px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--clr-white);
    letter-spacing: 2px;
}

.mobile-nav-contact {
    margin-top: 40px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

body.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   2. Hero Section
   ========================================================================== */
/* ==========================================================================
   2. Hero Section (Replica Design)
   ========================================================================== */
.hero-replica {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-color: var(--clr-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-replica .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-replica .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-replica {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%),
                radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.hero-center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--clr-white);
    margin-bottom: 80px;
}

.replica-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(6rem, 15vw, 12rem);
    line-height: 0.8;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--clr-white);
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
    /* Distressed effect simulation */
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
}

.replica-subtitle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.replica-subtitle-wrap .v-line {
    width: 100px;
    height: 2px;
    background-color: #f9d423; /* Yellow line */
}

.replica-script {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #f9d423;
    font-weight: 700;
}

.replica-badge {
    display: inline-block;
    background-color: var(--clr-white);
    color: var(--clr-forest-dark);
    padding: 15px 40px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
    position: relative;
    /* Torn paper effect simulation */
    clip-path: polygon(
        0% 5%, 5% 0%, 10% 5%, 15% 0%, 20% 5%, 25% 0%, 30% 5%, 35% 0%, 40% 5%, 45% 0%, 50% 5%, 55% 0%, 60% 5%, 65% 0%, 70% 5%, 75% 0%, 80% 5%, 85% 0%, 90% 5%, 95% 0%, 100% 5%, 
        100% 95%, 95% 100%, 90% 95%, 85% 100%, 80% 95%, 75% 100%, 70% 95%, 65% 100%, 60% 95%, 55% 100%, 50% 95%, 45% 100%, 40% 95%, 35% 100%, 30% 95%, 25% 100%, 20% 95%, 15% 100%, 10% 95%, 5% 100%, 0% 95%
    );
}

.replica-badge .sep {
    color: var(--clr-forest-green);
    margin: 0 15px;
    opacity: 0.5;
}

/* Bottom Features Bar */
.hero-bottom-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 61, 46, 0.95); /* Forest Green */
    z-index: 10;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.features-grid-replica {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--clr-white);
}

.f-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #f9d423;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f9d423;
}

.f-icon svg {
    width: 20px;
    height: 20px;
}

.f-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.f-sep {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
}

/* Sticker Callout */
.sticker-callout {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 15;
    background-color: var(--clr-white);
    padding: 20px 30px;
    transform: rotate(-3deg);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.3);
    /* Torn paper effect */
    clip-path: polygon(
        2% 0%, 98% 2%, 100% 98%, 0% 100%
    );
}

.sticker-inner {
    display: flex;
    flex-direction: column;
    color: var(--clr-forest-green);
    font-weight: 900;
    line-height: 1;
}

.s-top {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.s-bottom {
    font-size: 1.5rem;
    color: #f9d423; /* Yellow highlight */
    background: var(--clr-forest-green);
    padding: 5px 10px;
}

@media (max-width: 900px) {
    .features-grid-replica {
        flex-wrap: wrap;
        gap: 20px;
    }
    .f-sep { display: none; }
    .replica-title { font-size: 6rem; }
    .sticker-callout { display: none; }
}

/* ==========================================================================
   4. Testimonials
   ========================================================================== */
.testimonials {
    padding: var(--section-pad);
}

/* ==========================================================================
   4. Reviews Section (Replica Design)
   ========================================================================== */
.reviews-replica {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #fdfbf7;
}

.rev-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.6;
}

.rev-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-replica .container {
    position: relative;
    z-index: 10;
}

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

.header-pre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.header-pre .line {
    width: 40px;
    height: 1px;
    background-color: var(--clr-amber);
}

.script-pre {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--clr-amber);
    font-weight: 700;
}

.leaf-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.rev-main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--clr-forest-dark);
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
}

.script-highlight {
    font-family: 'Caveat', cursive;
    color: #f9d423;
    font-style: italic;
    font-weight: 700;
    margin: 0 5px;
}

.rev-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text);
    opacity: 0.8;
}

/* Reviews Grid */
.rev-grid-replica {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
}

.rev-card-replica {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease;
}

.side-card {
    background: rgba(11, 61, 46, 0.85); /* Dark green tint */
    color: var(--clr-white);
}

.middle-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.middle-card .rev-main-title,
.middle-card .rev-headline,
.middle-card .quote-text,
.middle-card .name {
    color: var(--clr-forest-dark);
}

.heart-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #f9d423;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(249, 212, 35, 0.3);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #f9d423;
    line-height: 1;
    margin-bottom: -10px;
    opacity: 0.8;
}

.stars {
    color: #f9d423;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.rev-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.quote-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rev-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f9d423;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-info .name {
    font-weight: 700;
    font-size: 1rem;
}

.user-info .loc {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Stats Bar */
.rev-stats-bar {
    background: #0b3d2e;
    border-radius: 100px;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.2);
    margin-bottom: 30px;
}

.stat-item-rep {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--clr-white);
}

.s-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
}

.s-data {
    display: flex;
    flex-direction: column;
}

.s-data .val {
    font-size: 1.4rem;
    font-weight: 800;
}

.s-data .lab {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rev-footer-script {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #f9d423;
    font-weight: 700;
}

/* Mobile Optimizations for Reviews */
@media (max-width: 900px) {
    .rev-grid-replica {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .middle-card {
        transform: scale(1);
        padding: 40px;
        order: -1;
    }
    .rev-stats-bar {
        border-radius: 30px;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    .s-sep {
        display: none;
    }
}

/* ==========================================================================
   5. CTA / Lead Form (Upgraded Design)
   ========================================================================== */
.lead-section-upgraded {
    background-color: var(--clr-white);
    padding: 0;
    overflow: hidden;
}

.lead-container-upgraded {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 700px;
}

.lead-image-panel {
    position: relative;
    overflow: hidden;
}

.lead-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s linear;
}

.lead-image-panel:hover img {
    transform: scale(1.1);
}

.image-overlay-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
    color: var(--clr-white);
}

.script-small {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: #f9d423;
    margin-bottom: 10px;
}

.bebas-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 2px;
}

.lead-form-panel-upgraded {
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fdfbf7;
}

.form-header {
    margin-bottom: 40px;
}

.form-tag {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--clr-amber);
    letter-spacing: 3px;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--clr-forest-dark);
    font-weight: 900;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text);
    opacity: 0.7;
    max-width: 500px;
}

.booking-form-upgraded {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group-upgraded.full {
    grid-column: span 2;
}

.form-group-upgraded {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-upgraded label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-forest-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group-upgraded input,
.form-group-upgraded select,
.form-group-upgraded textarea {
    padding: 15px 20px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    background: var(--clr-white);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--clr-forest-dark);
}

.form-group-upgraded input:focus,
.form-group-upgraded select:focus,
.form-group-upgraded textarea:focus {
    outline: none;
    border-color: var(--clr-forest-dark);
    box-shadow: 0 0 0 4px rgba(11, 61, 46, 0.05);
}

.btn-form-submit {
    margin-top: 20px;
    background: var(--clr-forest-dark);
    color: var(--clr-white);
    border: none;
    padding: 20px 40px;
    border-radius: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-form-submit:hover {
    background: #0d4b39;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(11, 61, 46, 0.2);
}

.btn-form-submit:active {
    transform: translateY(0);
}

/* Mobile Optimizations for Lead Form */
@media (max-width: 1000px) {
    .lead-container-upgraded {
        grid-template-columns: 1fr;
    }
    .lead-image-panel {
        height: 300px;
    }
    .lead-form-panel-upgraded {
        padding: 60px 40px;
    }
}

@media (max-width: 600px) {
    .form-row-upgraded {
        grid-template-columns: 1fr;
    }
    .form-group-upgraded.full {
        grid-column: span 1;
    }
    .form-title {
        font-size: 2.2rem;
    }
    .image-overlay-text {
        padding: 30px;
    }
    .bebas-large {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   6. Pain to Proof (Upgraded Design)
   ========================================================================== */
.pain-proof-upgraded {
    padding: 100px 0;
    background-color: var(--clr-white);
}

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

.playfair-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--clr-forest-dark);
    font-weight: 900;
}

.comparison-header .subtitle {
    font-size: 1.1rem;
    color: var(--clr-text);
    opacity: 0.7;
    margin-top: 10px;
}

.comparison-grid-upgraded {
    display: flex;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.comp-card {
    flex: 1;
    background: #fdfbf7;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(11, 61, 46, 0.05);
    transition: all 0.4s ease;
}

.comp-card.proof {
    background: var(--clr-forest-dark);
    color: var(--clr-white);
    border-color: rgba(255,255,255,0.1);
}

.comp-card.proof .comp-title {
    color: var(--clr-white);
}

.comp-card.proof .comp-list li {
    color: rgba(255,255,255,0.8);
}

.comp-badge-top {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    padding: 15px;
    text-align: center;
    letter-spacing: 2px;
}

.comp-badge-top.red {
    background-color: #f1f1f1;
    color: #888;
}

.comp-badge-top.green {
    background-color: var(--clr-forest-dark);
    color: var(--clr-white);
}

.comp-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comp-status-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.status-bad {
    background-color: #ff4d4d;
    color: white;
}

.status-good {
    background-color: #f9d423;
    color: var(--clr-forest-dark);
}

.comp-content {
    padding: 40px;
    flex-grow: 1;
}

.comp-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--clr-forest-dark);
}

.comp-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--clr-text);
}

.comp-list li span {
    font-weight: bold;
    font-size: 1.1rem;
}

.pain .comp-list li span { color: #ff4d4d; }
.proof .comp-list li span { color: #f9d423; font-weight: 900; }

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--clr-white);
    border: 2px solid var(--clr-forest-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--clr-forest-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Mobile Fixes */
@media (max-width: 900px) {
    .comparison-grid-upgraded {
        flex-direction: column;
    }
    .vs-divider {
        margin: -45px 0;
        transform: rotate(90deg);
    }
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.badge-red {
    background-color: var(--clr-red-tint);
    color: var(--clr-red-text);
}

.badge-green {
    background-color: var(--clr-green-tint);
    color: var(--clr-green-text);
}

.panel-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.panel-card p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.panel-img {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   7. Why Choose Us
   ========================================================================== */
.why-us {
    padding: var(--section-pad);
    background-color: var(--clr-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--clr-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* ==========================================================================
   8. Comparison Table
   ========================================================================== */
.comparison {
    padding: var(--section-pad);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.compare-table th, .compare-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table th:first-child, .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.compare-table th {
    background-color: var(--clr-cream-dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.compare-table .highlight {
    background-color: var(--clr-forest-light);
    color: var(--clr-white);
}

.compare-table th.highlight {
    background-color: var(--clr-forest-green);
}

.check {
    color: var(--clr-amber);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight .check {
    color: var(--clr-amber);
}

.cross {
    color: var(--clr-red-text);
    opacity: 0.5;
}

/* ==========================================================================
   9. About Us (Upgraded Design)
   ========================================================================== */
.about-upgraded {
    padding: 100px 0;
    background-color: #fdfbf7;
}

.about-grid-rep {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.about-visual-panel {
    flex: 1;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 500px;
}

.about-img-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-logo-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 35px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-logo-large {
    height: 140px; /* Increased from 80px */
    width: auto;
}

.about-exp-badge-rep {
    border-left: 3px solid var(--clr-amber);
    padding-left: 35px;
}

.exp-num-rep {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--clr-forest-dark);
    line-height: 1;
}

.exp-text-rep {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--clr-amber);
}

.about-text-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-desc-rep {
    margin: 30px 0;
}

.lead-p {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--clr-forest-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cert-grid-rep {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cert-item-rep {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--clr-white);
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(11, 61, 46, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
}

.cert-icon-rep {
    font-size: 1.2rem;
}

/* Mobile Fixes for About */
@media (max-width: 1000px) {
    .about-grid-rep {
        flex-direction: column;
        gap: 50px;
    }
    .about-visual-panel {
        min-height: 400px;
    }
    .about-logo-card {
        padding: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .about-logo-large {
        height: 100px;
    }
    .exp-num-rep {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
/* ==========================================================================
   10. How It Works (Upgraded Design)
   ========================================================================== */
.how-it-works-upgraded {
    position: relative;
    padding: 100px 0;
    background-color: #0b3d2e;
    overflow: hidden;
}

.process-texture {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.15;
}

.process-texture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-it-works-upgraded .container {
    position: relative;
    z-index: 10;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.white { color: var(--clr-white) !important; }
.white-op { color: rgba(255, 255, 255, 0.7) !important; }

.process-flow-upgraded {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

.process-step-rep {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px 30px 40px;
    width: 100%;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-circle {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--clr-amber);
    color: var(--clr-forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(249, 212, 35, 0.4);
    z-index: 5;
}

.process-step-rep:hover .step-glass-card {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(249, 212, 35, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.step-icon-rep {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.step-title-rep {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-desc-rep {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Adjustments for Process */
@media (max-width: 1000px) {
    .process-flow-upgraded {
        flex-direction: column;
        gap: 50px;
        padding-top: 20px;
    }
    .step-glass-card {
        padding: 50px 25px 35px;
    }
}

/* ==========================================================================
   Gallery Section (Bento Grid)
   ========================================================================== */
.gallery-replica {
    padding: 100px 0;
    background-color: #fdfbf7;
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: 20px;
    margin-bottom: 40px;
}

.bento-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(11, 61, 46, 0.05);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.5), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 1; /* Always visible for better UX */
    transition: background 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top, rgba(11, 61, 46, 0.7), transparent 70%);
}

.bento-tag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    background: rgba(249, 212, 35, 0.95);
    padding: 6px 16px;
    border-radius: 50px;
    align-self: flex-start;
    color: var(--clr-forest-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.bento-item:hover .bento-tag {
    transform: translateY(-5px);
}

/* Bento Spans (Reorganized for 3-Column Grid) */
.item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.item-3 {
    grid-column: span 2;
    grid-row: span 2;
}

.item-2 {
    grid-column: span 1;
    grid-row: span 2;
}

/* Mobile Optimizations for Gallery */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

/* ==========================================================================
   11. Meet the Team (Upgraded Design)
   ========================================================================== */
.team-upgraded {
    padding: 100px 0;
    background-color: var(--clr-white);
}

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

.team-grid-upgraded {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card-upgraded {
    background: var(--clr-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(11, 61, 46, 0.05);
}

.team-card-upgraded:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.team-img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.5s ease;
}

.team-card-upgraded:hover .team-img-wrapper img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.team-info-upgraded {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--clr-forest-dark);
    margin-bottom: 8px;
    font-weight: 800;
}

.team-role {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--clr-amber);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.team-credential-box {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--clr-forest-dark);
    font-weight: 600;
}

/* Mobile Fixes for Team */
@media (max-width: 1000px) {
    .team-grid-upgraded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid-upgraded {
        grid-template-columns: 1fr;
    }
}
.guarantee {
    padding: var(--section-pad);
    background-color: var(--clr-cream-dark);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--clr-white);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 138, 63, 0.2);
}

.seal {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: var(--clr-amber);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 1.2;
    border: 4px solid var(--clr-cream-dark);
    box-shadow: var(--shadow-sm);
}

.guarantee-box h2 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.guarantee-box p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--clr-text-light);
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.faq-section {
    padding: var(--section-pad);
}

.faq-container {
    display: flex;
    gap: 60px;
}

.faq-sidebar {
    flex: 1;
}

.faq-sidebar p {
    margin-bottom: 20px;
    color: var(--clr-text-light);
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
    display: inline-flex;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: white;
}

.faq-accordion {
    flex: 2;
}

.accordion-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-forest-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--clr-amber);
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--clr-text-light);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   14. Closer Section
   ========================================================================== */
.closer-section {
    position: relative;
    padding: 120px 20px;
    text-align: center;
    color: var(--clr-white);
}

.closer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.closer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.closer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 64, 49, 0.85); /* Forest green overlay */
}

.closer-content {
    max-width: 700px;
    margin: 0 auto;
}

.closer-content h2 {
    color: var(--clr-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.closer-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.closer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.closer-microcopy {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.site-footer {
    background-color: var(--clr-forest-dark);
    color: var(--clr-white);
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Optional: make logo white if background is dark */
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--clr-white);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--clr-amber);
    padding-left: 5px;
}

.footer-contact p, .footer-contact address {
    opacity: 0.7;
    margin-bottom: 10px;
    font-style: normal;
}

.footer-contact a:hover {
    color: var(--clr-amber);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================================================
   Global Mobile Optimization Refinements
   ========================================================================== */
@media (max-width: 900px) {
    :root {
        --section-pad: 60px 20px;
    }

    h2 { font-size: 2.2rem; }

    .container { padding: 0 24px; }
    
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: flex; }
    
    /* Header Mobile Refinement */
    #main-header .btn-primary { 
        display: inline-block !important; 
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    .mobile-menu-btn { display: none !important; }
    #main-header { padding: 12px 0; }
    .logo-text { font-size: 1.1rem; }
    .logo-sub { font-size: 0.5rem; letter-spacing: 0.5px; }
    
    /* Hero Replica Mobile Fixes */
    .hero-replica { 
        height: 100vh;
        min-height: 560px; 
        padding: 80px 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hero-center-content { 
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .replica-title { font-size: clamp(3rem, 12vw, 4.5rem); margin-bottom: 5px; }
    .replica-script { font-size: 1.6rem; }
    .replica-subtitle-wrap { gap: 10px; margin-bottom: 15px; }
    .replica-subtitle-wrap .v-line { width: 25px; }
    .replica-badge { font-size: 0.9rem; padding: 8px 16px; }
    
    .hero-bottom-features {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px 0;
    }

    .features-grid-replica {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
        padding: 0 5px;
    }
    .f-sep { display: block; width: 1px; height: 20px; background: rgba(255,255,255,0.1); }
    .f-item { 
        flex-direction: column; 
        text-align: center; 
        gap: 5px; 
        flex: 1;
        min-width: 0;
    }
    .f-icon { width: 24px; height: 24px; border-width: 1px; }
    .f-icon svg { width: 12px; height: 12px; }
    .f-text { font-size: 0.55rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    
    .sticker-callout { display: none; }

    /* Grids & Containers */
    .reviews-grid, .features-grid, .team-grid, .comparison-panel {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .lead-container, .about-container, .faq-container, .steps-row {
        flex-direction: column !important;
        gap: 40px;
    }

    .lead-form-panel { padding: 40px 20px; }
    .about-image img { width: 100%; }
    .experience-badge { right: 0; bottom: -10px; width: 100px; height: 100px; }
    .experience-badge .number { font-size: 1.8rem; }

    /* Comparison Table Mobile */
    .table-responsive {
        margin: 0 -20px;
        padding: 0 20px;
    }
    .compare-table { font-size: 0.85rem; }
    .compare-table th, .compare-table td { padding: 12px 8px; }

    /* Footer */
    .footer-container { flex-direction: column; text-align: center; gap: 40px; }
    .footer-brand { flex: 1; margin: 0 auto; }
}

@media (max-width: 500px) {
    .replica-title { font-size: 3.5rem; }
    .features-grid-replica { grid-template-columns: 1fr; }
    .hero-replica { justify-content: flex-start; padding-top: 140px; }
    .hero-center-content { margin-bottom: 40px; }
    
    .closer-content h2 { font-size: 2rem; }
    .closer-actions { flex-direction: column; }
}
/* ==========================================================================
   Wildlife Spotlight
   ========================================================================== */
.wildlife-spotlight {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.wildlife-content-panel {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.wildlife-content-panel p {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin: 20px auto 50px;
    max-width: 700px;
}

.wildlife-feature-card {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.wildlife-img-card {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wildlife-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.wildlife-img-card:hover img {
    transform: scale(1.1);
}

.wildlife-tag-rep {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 15px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--clr-forest-dark);
    letter-spacing: 1px;
}

/* Mobile Fixes for Wildlife & Others */
@media (max-width: 900px) {
    .wildlife-feature-card {
        flex-direction: column;
        gap: 20px;
    }
    .wildlife-img-card {
        height: 350px;
    }
    
    /* Lead Section Mobile Fix */
    .lead-container-upgraded {
        flex-direction: column !important;
    }
    .lead-image-panel {
        height: 300px !important;
    }
    
    /* About Upgraded Mobile Fix */
    .about-grid-rep {
        flex-direction: column !important;
        gap: 40px;
    }
    .about-visual-panel {
        min-height: 350px;
    }
}
/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #0b3d2e; /* Forest dark */
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* ==========================================================================
   Mobile Horizontal Slider for Reviews
   ========================================================================== */
@media (max-width: 900px) {
    .rev-grid-replica {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 30px 10px 50px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        grid-template-columns: none !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .rev-grid-replica::-webkit-scrollbar {
        display: none;
    }

    .rev-card-replica {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        transform: none !important;
        min-height: 300px !important;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .rev-header {
        margin-bottom: 20px !important;
    }
}

/* Hero Call Button Mobile */
.hero-call-btn-mobile {
    display: none;
}

@media (max-width: 900px) {
    .hero-call-btn-mobile {
        display: inline-flex !important;
        align-items: center;
        gap: 12px;
        background-color: #f9d423; /* Gold */
        color: #0b3d2e; /* Forest Dark */
        padding: 14px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 800;
        font-family: 'Poppins', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 25px;
        box-shadow: 0 10px 20px rgba(249, 212, 35, 0.4);
        font-size: 0.95rem;
        border: 2px solid #ffffff;
        transition: all 0.3s ease;
    }

    .hero-call-btn-mobile:active {
        transform: scale(0.95);
    }
    
    .hero-center-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
