/* ==========================================================================
   SVM Land Promoters - Exclusive Offers CSS
   ========================================================================== */

/* --- Design System & Custom Properties --- */
:root {
    /* Colors */
    --primary-green: #0D5B35;
    --dark-green: #0A4A2C;
    --light-green: #EAF6EC;
    --accent-gold: #D4AF37;
    --accent-gold-light: #FFF9E6;
    --white: #FFFFFF;
    --text-dark: #1D1D1D;
    --text-grey: #666666;
    --overlay-dark: rgba(10, 74, 44, 0.65);
    --border-color: #E2E8F0;
    --cta-gradient: linear-gradient(145deg, #063B2B 0%, #0A4C37 45%, #0F6647 100%);
    
    /* Shadows & Glows */
    --shadow-soft: 0 8px 24px rgba(0,0,0,.08);
    --shadow-large: 0 30px 80px rgba(0,0,0,.18);
    --glow-green: 0 0 45px rgba(29,185,84,.35);
    --glow-gold: 0 0 45px rgba(212,175,55,.40);
    --glow-blue: 0 0 45px rgba(66,133,244,.40);
    --glow-emerald: 0 0 45px rgba(13,91,53,.35);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout & Sizing Constants */
    --container-width: 1200px;
    --card-radius: 24px;
    --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 25px 55px rgba(10, 74, 44, 0.12);
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spacing: clamp(1rem, 2vw, 2.5rem);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background image layer - animated and GPU-optimized */
body::before {
    content: '';
    position: fixed;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-image: url('assets/images/offerbg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
    will-change: transform;
    transform-origin: center center;
    backface-visibility: hidden;
    transform: translateZ(0);
    animation: cinematicDrift 35s ease-in-out infinite;
}

/* Background translucent overlay layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

@keyframes cinematicDrift {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    25% {
        transform: translate(-8px, -6px) scale(1.01);
    }
    50% {
        transform: translate(8px, 6px) scale(1.015);
    }
    75% {
        transform: translate(-6px, 4px) scale(1.02);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        animation: none !important;
        transform: none !important;
    }
}

/* Keyboard focus state styling */
:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 4px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==========================================================================
   Header / Floating Navigation
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    --navbar-offset-y: 0px;
    transform: translateX(-50%) translateY(var(--navbar-offset-y));
    width: min(calc(100% - 3rem), var(--container-width));
    z-index: 1000;
    transition: transform 0.28s cubic-bezier(.22,.61,.36,1);
}

.navbar-container.navbar-hidden {
    --navbar-offset-y: -150%;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.logo-img {
    height: clamp(35px, 5.5vw, 55px);
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-name {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--dark-green);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.company-tagline {
    font-family: var(--font-body);
    color: #4A6B5D;
    font-size: clamp(0.7rem, 1.1vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-top: 0.15rem;
}

/* Old menu-btn styles removed - handled by mobile-menu-toggle in navigation.css */

/* ==========================================================================
   Main Content Layout
   ========================================================================== */
.main-content {
    width: min(calc(100% - 3rem), var(--container-width));
    margin: calc(75px + 5rem) auto 5rem auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Badge styling */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.7rem, 1vw, 0.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
}

.exclusive-badge {
    background-color: var(--light-green);
    color: var(--primary-green);
    border: 1px solid rgba(13, 91, 53, 0.15);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--dark-green);
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

/* Subtitle with leaf dividers */
.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--text-grey);
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    font-weight: 400;
}

.decorative-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(247, 201, 72, 0) 0%, rgba(247, 201, 72, 0.75) 50%, rgba(247, 201, 72, 0) 100%);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4));
}

/* Global leaf icon gold styling */
i.fa-leaf, .leaf-icon {
    color: #FFD65A; /* Base Rich Gold */
    text-shadow: 
        0 -1px 0 #FFF8D2,                 /* Highlight (Champagne/Highlight) */
        0 1px 0 #C99618,                  /* Bevel shadowing (Antique Gold) */
        0 2px 2px rgba(168, 118, 8, 0.6), /* Deep gold shadow underneath */
        0 0 10px rgba(247, 201, 72, 0.45); /* Royal gold ambient glow */
    filter: saturate(1.4) brightness(1.15);
    display: inline-block;
}

.leaf-icon {
    font-size: 1rem;
    opacity: 1;
    transition: transform 0.3s ease;
}

.left-leaf {
    transform: rotate(-45deg);
}

.right-leaf {
    transform: rotate(45deg);
}

/* ==========================================================================
   Future CMS Loading / Empty States
   ========================================================================== */
.loading-state, .empty-state {
    background-color: var(--white);
    border-radius: var(--card-radius);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-green);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Offers List & Card Layout
   ========================================================================== */
.offer-list {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 58%) minmax(380px, 42%);
    align-items: stretch;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

/* --- Left Side: Media --- */
.card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #f7fafc;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Top Left Badge inside image */
.image-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: clamp(0.7rem, 1vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.limited-offer-badge {
    background-color: var(--dark-green);
    color: var(--white);
}

.exclusive-offer-badge {
    background-color: var(--primary-green);
    color: var(--white);
}

/* --- Right Side: Content --- */
.card-content {
    padding: var(--spacing);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.offer-title {
    font-family:
        "Cormorant Garamond",
        "Libre Baskerville",
        "Playfair Display",
        Georgia,
        serif;
    font-optical-sizing: auto;
    color: var(--primary-green);
    font-size: clamp(2rem, 2.3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.type-badge {
    background-color: var(--light-green);
    color: var(--primary-green);
    border: 1px solid rgba(13, 91, 53, 0.2);
    flex-shrink: 0;
}

.project-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-grey);
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    margin-bottom: 1rem;
}

.detail-item i {
    color: var(--primary-green);
    margin-right: 0.25rem;
}

.detail-divider {
    color: var(--border-color);
    font-weight: 300;
}

.content-divider {
    border: 0;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 1.25rem;
}

/* Price & Date Block Row */
.price-date-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-grey);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.info-label i {
    color: var(--primary-green);
    font-size: 0.8rem;
}

.price-value {
    color: var(--primary-green);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    line-height: 1.1;
}

.price-value .unit {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-grey);
}

.original-price {
    font-size: clamp(0.75rem, 1.1vw, 0.85rem);
    color: var(--text-grey);
    text-decoration: line-through;
    margin-top: 0.15rem;
}

.date-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
}

/* Free Benefits Checklist */
.benefits-container {
    margin-bottom: 1.75rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
}

.benefit-item {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.check-icon {
    color: var(--primary-green);
    font-size: 0.95rem;
}

/* --- Actions CTA Buttons --- */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: clamp(0.75rem, 1.5vw, 0.9rem) 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(0.8rem, 1.2vw, 0.85rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
}

/* Ripple click container */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* WhatsApp Button (Primary) */
.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 91, 53, 0.2);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    box-shadow: 0 6px 20px rgba(10, 74, 44, 0.35);
    transform: translateY(-2px);
}

/* View Image Button (Secondary) */
.btn-secondary {
    background-color: var(--dark-green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(10, 74, 44, 0.15);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(13, 91, 53, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Image Lightbox Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    z-index: 2001;
    width: min(90%, 1000px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform var(--transition);
}

.modal.open .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal-close:hover {
    color: var(--light-green);
}

.modal-content {
    background-color: transparent;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-image {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   Mobile Slideout Navigation Menu
   ========================================================================== */
/* Mobile hamburger menu styles moved to shared css/navigation.css */

/* ==========================================================================
   Closing CTA Section Styling (Luxury Upgrade - Pixel-Matched)
   ========================================================================== */
.closing-cta {
    margin-top: clamp(40px, 5vw, 56px);
    width: 100%;
    margin-inline: auto;
    max-width: none;
    position: relative;
    box-sizing: border-box;
}

.cta-container {
    width: min(1180px, calc(100% - clamp(32px, 4vw, 64px)));
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
    padding: clamp(30px, 3vw, 42px) clamp(24px, 3vw, 40px) clamp(36px, 4vw, 48px);
    background: var(--cta-gradient);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--accent-gold);
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.cta-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(38px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 12ch;
    margin-inline: auto;
}

.cta-subtitle {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 500;
    max-width: 42rem;
    margin-inline: auto;
}

.cta-cards {
    width: min(100%, 860px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 28px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.cta-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFB 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: clamp(24px, 3vw, 34px);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 245px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, background-color 0.25s ease;
    position: relative;
    z-index: 2;
}

.cta-call-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBFCFB 100%);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    max-width: 520px;
    width: min(100%, 520px);
    margin: 32px auto 36px;
    min-height: 245px;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, background-color 0.25s ease;
    position: relative;
    z-index: 2;
}

.cta-card:hover, .cta-call-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-large), var(--shadow-soft);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
    animation: iconFloat 8s ease-in-out infinite alternate;
}

.whatsapp-icon-bg {
    background-color: var(--light-green);
    color: #25D366;
    box-shadow: var(--glow-green);
}

.visit-icon-bg {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.call-icon-bg {
    background-color: var(--light-green);
    color: var(--primary-green);
    box-shadow: var(--glow-emerald);
}

.cta-card:nth-child(2) .card-icon-wrapper {
    animation-delay: -4s;
}

.card-cta-title {
    font-family: var(--font-heading);
    color: var(--dark-green);
    font-weight: 800;
    font-size: clamp(34px, 3vw, 42px);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
}

.card-cta-desc {
    font-family: var(--font-body);
    color: rgba(6, 59, 43, 0.88);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    text-align: center;
    max-width: 24ch;
    margin-inline: auto;
}

/* Button chevrons custom styling */
.btn-arrow {
    margin-left: auto;
    font-size: 0.8em;
    transition: transform 0.25s ease;
}

/* Centralized buttons layout styling inside cards */
.cta-card .btn, .cta-call-card .btn {
    inline-size: min(230px, 100%);
    height: 52px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.08em;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.8rem;
    box-shadow: 0 8px 25px rgba(13, 91, 53, 0.25);
    margin-top: auto;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, background-color 0.25s ease;
}

.cta-card .btn:hover, .cta-call-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.closing-cta .btn:hover .btn-arrow {
    transform: translateX(8px);
}

.closing-cta .btn:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

/* Premium Statistics Section */
.cta-trust-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    align-items: center;
    justify-items: center;
    margin-top: 36px;
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: 100%;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(-16px / 2);
    top: 30%;
    height: 40%;
    width: 1px;
    background: rgba(212, 175, 55, 0.25);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-green-bg {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: var(--glow-green);
}

.stat-blue-bg {
    background-color: #0070F3;
    color: var(--white);
    box-shadow: var(--glow-blue);
}

.stat-gold-bg {
    background-color: var(--accent-gold);
    color: var(--white);
    box-shadow: var(--glow-gold);
}

.stat-number {
    font-family: var(--font-body);
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Subtle End of Page Divider */
.cta-divider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 28px;
    width: 100%;
    max-width: 400px;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.cta-divider-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, rgba(247, 201, 72, 0) 0%, rgba(247, 201, 72, 0.85) 50%, rgba(247, 201, 72, 0) 100%);
}

.cta-divider-leaf {
    color: #FFD65A;
    font-size: 1.25rem;
    transform: rotate(-15deg);
    text-shadow: 
        0 -1px 0 #FFF8D2,                 /* Highlight (Champagne/Highlight) */
        0 1px 0 #C99618,                  /* Bevel shadowing (Antique Gold) */
        0 2px 2px rgba(168, 118, 8, 0.6), /* Deep gold shadow underneath */
        0 0 10px rgba(247, 201, 72, 0.75); /* Royal gold ambient glow */
    filter: saturate(1.4) brightness(1.15);
    display: inline-block;
}

/* Premium Background Decorations (Strict Layering) */
.decor-circle-1,
.decor-lens-glow,
.decor-leaf-1,
.decor-leaf-2,
.decor-leaf-3,
.decor-sparkle-1,
.decor-sparkle-2,
.decor-blob-1 {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    will-change: transform;
    contain: paint;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.decor-circle-1 {
    border-radius: 50%;
    filter: blur(40px);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.32) 0%, rgba(255, 215, 0, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
    top: -50px;
    right: -50px;
    animation: glowBreathe 6s ease-in-out infinite alternate;
}

.decor-lens-glow {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1.5px dashed rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
    top: -80px;
    right: -80px;
}

.decor-leaf-1 {
    top: 15%;
    left: 8%;
    font-size: 32px;
    color: #FFD65A;
    text-shadow: 
        0 -1px 0 #FFF8D2,
        0 1px 0 #C99618,
        0 2px 2px rgba(168, 118, 8, 0.6),
        0 0 15px rgba(247, 201, 72, 0.5);
    filter: saturate(1.4) brightness(1.2);
    opacity: 0.55;
    animation: leafFloatPremium 20s ease-in-out infinite;
}

.decor-leaf-2 {
    top: 45%;
    right: 5%;
    font-size: 34px;
    color: #FFD65A;
    text-shadow: 
        0 -1px 0 #FFF8D2,
        0 1px 0 #C99618,
        0 2px 2px rgba(168, 118, 8, 0.6),
        0 0 15px rgba(247, 201, 72, 0.5);
    filter: saturate(1.4) brightness(1.2);
    opacity: 0.55;
    animation: leafFloatPremium 22s ease-in-out infinite alternate;
}

.decor-leaf-3 {
    bottom: 25%;
    left: 6%;
    font-size: 28px;
    color: #FFD65A;
    text-shadow: 
        0 -1px 0 #FFF8D2,
        0 1px 0 #C99618,
        0 2px 2px rgba(168, 118, 8, 0.6),
        0 0 15px rgba(247, 201, 72, 0.5);
    filter: saturate(1.4) brightness(1.2);
    opacity: 0.45;
    animation: leafFloatPremium 18s ease-in-out infinite;
}

.decor-sparkle-1 {
    top: 25%;
    right: 12%;
    font-size: 18px;
    color: #FFF8D2;
    text-shadow: 
        0 -1px 0 #FFF8D2,
        0 1px 0 #C99618,
        0 2px 2px rgba(168, 118, 8, 0.6),
        0 0 12px rgba(247, 201, 72, 0.6);
    filter: saturate(1.4) brightness(1.2);
    opacity: 0.8;
    animation: sparkleFade 3s ease-in-out infinite alternate;
}

.decor-sparkle-2 {
    top: 38%;
    right: 8%;
    font-size: 24px;
    color: #FFF8D2;
    text-shadow: 
        0 -1px 0 #FFF8D2,
        0 1px 0 #C99618,
        0 2px 2px rgba(168, 118, 8, 0.6),
        0 0 12px rgba(247, 201, 72, 0.6);
    filter: saturate(1.4) brightness(1.2);
    opacity: 0.7;
    animation: sparkleFade 4s ease-in-out infinite alternate-reverse;
}

.decor-blob-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(13, 91, 53, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    bottom: 10%;
    left: -50px;
    filter: blur(50px);
    animation: blobDrift 20s ease-in-out infinite alternate;
}

/* Micro Animations keyframes */
@keyframes iconFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-5px);
    }
}

@keyframes leafFloatPremium {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(4deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes glowBreathe {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}

@keyframes sparkleFade {
    0% {
        opacity: 0.35;
        transform: scale(0.9) rotate(0deg);
        filter: drop-shadow(0 0 4px rgba(247, 201, 72, 0.4)) saturate(1.3) brightness(1.1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.1) rotate(20deg);
        filter: drop-shadow(0 0 10px rgba(247, 201, 72, 0.85)) saturate(1.6) brightness(1.4);
    }
    100% {
        opacity: 0.35;
        transform: scale(0.9) rotate(40deg);
        filter: drop-shadow(0 0 4px rgba(247, 201, 72, 0.4)) saturate(1.3) brightness(1.1);
    }
}

@keyframes blobDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(30px, -20px) scale(1.1);
    }
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
    .card-icon-wrapper,
    .decor-leaf-1,
    .decor-leaf-2,
    .decor-leaf-3,
    .decor-sparkle-1,
    .decor-sparkle-2,
    .decor-circle-1,
    .decor-lens-glow,
    .decor-blob-1 {
        animation: none !important;
        transform: none !important;
        opacity: 0.6 !important;
    }
    .cta-card,
    .cta-call-card,
    .closing-cta .btn {
        transition: none !important;
        transform: none !important;
    }
}

/* ==========================================================================
   Large Screen & Laptop Offer Card Responsive Layout Fix
   ========================================================================== */
@media (min-width: 1024px) and (max-width: 1599px) {
    .offer-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-auto-flow: row !important;
        height: auto !important;
        min-height: auto !important;
        overflow: hidden !important;
        align-items: stretch !important;
    }

    .card-media {
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        height: auto !important;
        overflow: hidden !important;
        border-radius: inherit !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        display: block !important;
    }

    .card-content {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        padding: 32px !important;
        gap: 20px !important;
        box-sizing: border-box !important;
    }

    .card-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .card-actions > * {
        width: 100% !important;
    }
}

/* ==========================================================================
   Ultra Wide Desktop Offer Card Enhancement
   ========================================================================== */
@media (min-width: 1600px) {
    .offer-card {
        display: grid !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
        overflow: hidden !important;
        height: auto !important;
        min-height: auto !important;
    }

    .card-media {
        grid-row: 1 !important;
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
        overflow: hidden !important;
        align-self: stretch !important;
        min-width: 0 !important;
        min-height: 0 !important;
        border-radius: inherit !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .card-image {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center center !important;
    }

    .card-content {
        grid-row: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 40px !important;
        gap: 22px !important;
        box-sizing: border-box !important;
    }

    .card-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
        width: 100% !important;
    }

    .card-actions > * {
        width: 100% !important;
    }
}


