@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Core Variables (Design Tokens) */
:root {
    --bg-main: #004c1d; /* Herb Green 700 background */
    --bg-surface: #FFFFFF;
    --color-primary: #003d17; /* Dark Green for primary action borders/gradients */
    --color-primary-dark: #002e12;
    --color-secondary: #10B981; /* Emerald 500 */
    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-success: #84CC16; /* Lime 500 */
    --color-border: #E2E8F0;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows - Tinted with Green */
    --shadow-soft: 0 4px 20px -2px rgba(0, 46, 18, 0.2);
    --shadow-hover: 0 10px 25px -5px rgba(0, 46, 18, 0.3), 0 8px 10px -6px rgba(0, 46, 18, 0.2);
    --shadow-button: 0 4px 14px 0 rgba(0, 46, 18, 0.25);
    
    /* Premium Gold Color Accents */
    --color-gold: #D4AF37;
    --color-gold-hover: #F59E0B;
}

/* Reset / Global Defaults */
html {
    font-size: 16px !important;
}

body {
    background-color: var(--bg-main) !important;
    color: #FFFFFF !important;
    font-family: var(--font-main) !important;
    font-size: 1.15rem !important; /* Larger text for readability (target 40-50yo) */
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main) !important;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.85rem;
}

p {
    color: #F1F5F9; /* Crisp off-white contrast */
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease-out;
}

a:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

/* Atmospheric Background Blobs */
.blur-blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.blur-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 0;
}

.blob-primary {
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    top: -10%;
    right: -5%;
}

.blob-secondary {
    background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
    bottom: 20%;
    left: -10%;
}

.blob-success {
    background: radial-gradient(circle, var(--color-success) 0%, transparent 70%);
    top: 40%;
    right: -10%;
}

/* Containers */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Modern Sticky Header */
.modern-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.modern-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-text-main);
    text-decoration: none !important;
}

.modern-brand img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.modern-brand span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.modern-nav-link {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
}

.modern-nav-link:hover, .modern-nav-link.active {
    color: var(--color-primary);
}

.modern-nav-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-button);
    border: none;
    text-decoration: none !important;
}

.modern-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 76, 29, 0.3);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 4px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-modern-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)) !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border: none !important;
    box-shadow: var(--shadow-button) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease-out !important;
}

.btn-modern-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px 0 rgba(0, 76, 29, 0.3) !important;
}

.btn-modern-secondary {
    background: var(--bg-surface) !important;
    color: var(--color-text-main) !important;
    padding: 14px 32px !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border: 1px solid var(--color-border) !important;
    box-shadow: var(--shadow-soft) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease-out !important;
}

.btn-modern-secondary:hover {
    background: #F8FAFC !important;
    border-color: #CBD5E1 !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-hover) !important;
}

/* Dynamic Cards */
.card-modern {
    background: var(--bg-surface);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem !important;
}

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

.card-modern-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card-modern:hover .card-modern-icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #ffffff;
}

/* 3D Isometric View Styles */
.perspective-container {
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.isometric-card {
    transform: rotateX(10deg) rotateY(-18deg) rotateZ(5deg);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.15), 0 4px 20px -2px rgba(79, 70, 229, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.isometric-card:hover {
    transform: rotateX(4deg) rotateY(-8deg) rotateZ(2deg) translateY(-8px);
    box-shadow: -25px 25px 50px rgba(0, 0, 0, 0.2), 0 8px 30px rgba(79, 70, 229, 0.15);
}

/* Section Header styling */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header span {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 16px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

/* Modern Layouts Grid */
.modern-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.modern-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Custom Inquiry Form UI */
.inquiry-card {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-hover);
}

.form-group-modern {
    margin-bottom: 24px;
}

.form-group-modern label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.form-input-modern {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #CBD5E1;
    background: var(--bg-surface);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-text-main);
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.form-input-modern:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Carousel/Slider wrapper */
.premium-carousel-wrapper {
    background: var(--bg-surface);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.premium-carousel-wrapper img {
    border-radius: 12px;
}

/* Floating WhatsApp / Live Chat style */
.modern-wtsp-chat {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
}

.modern-wtsp-chat a img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-wtsp-chat a img:hover {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Footer modern layout */
.modern-footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 48px 0;
    border-top: 1px solid #1E293B;
}

.modern-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.modern-footer a {
    color: #94A3B8;
    font-weight: 500;
}

.modern-footer a:hover {
    color: #ffffff;
}

/* Banners and Graphic Displays */
.graphic-banner-wrapper {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.graphic-banner-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.graphic-banner-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

/* Custom Grid List for About Us (Checkmarks) */
.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-feature-info h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
}

.about-feature-info p {
    margin: 0;
    font-size: 0.875rem;
}

/* Mobile responsive menu */
@media (max-width: 1024px) {
    .modern-grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .modern-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        font-size: 1.35rem;
    }
    
    /* Navbar is now self-contained via embedded <style> in index.php */
    /* Old .modern-nav, .modern-header, .mobile-menu-toggle rules removed */

    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ─── FAQ v3 — Clean Webflow-style Accordion ──────── */
.faq3-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq3-item {
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e8edf2;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq3-item:hover {
    border-color: #c8d8cc;
    box-shadow: 0 2px 12px rgba(0, 76, 29, 0.07);
}

.faq3-item.open {
    border-color: #004c1d;
    border-left: 3px solid #004c1d;
    box-shadow: 0 4px 18px rgba(0, 76, 29, 0.1);
}

.faq3-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    transition: background 0.15s ease;
}

.faq3-btn:hover {
    background: #f9fafb;
}

.faq3-item.open .faq3-btn {
    color: #004c1d;
    font-weight: 700;
}

.faq3-icon {
    color: #94A3B8;
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: transform 0.28s ease, color 0.2s ease;
}

.faq3-item.open .faq3-icon {
    color: #004c1d;
}

.faq3-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq3-body p {
    padding: 0 22px 18px 22px;
    margin: 0;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.72;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

@media (max-width: 768px) {
    .faq3-btn {
        font-size: 0.9rem !important;
        padding: 15px 16px !important;
    }
    .faq3-body p {
        font-size: 0.87rem !important;
        padding: 12px 16px 16px !important;
    }
}
/* Custom Overrides for Green Background Design */
.card-modern, .inquiry-card {
    background: var(--bg-surface) !important;
    color: var(--color-text-main) !important;
}

.card-modern h1, .card-modern h2, .card-modern h3, .card-modern h4, .card-modern h5, .card-modern h6,
.inquiry-card h1, .inquiry-card h2, .inquiry-card h3, .inquiry-card h4 {
    color: var(--color-text-main) !important;
}

.card-modern p, .inquiry-card p {
    color: var(--color-text-muted) !important;
}

.modern-header {
    background: rgba(0, 76, 29, 0.98) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.modern-brand span {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    color: #FFFFFF !important;
}

.modern-nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.modern-nav-link:hover, .modern-nav-link.active {
    color: #FFFFFF !important;
}

.mobile-menu-toggle {
    color: #FFFFFF !important;
}

.modern-nav-btn {
    background: linear-gradient(135deg, #F59E0B, #D4AF37) !important;
    color: #0F172A !important;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2) !important;
}

.modern-nav-btn:hover {
    background: linear-gradient(135deg, #E5900A, #C59F27) !important;
    color: #000000 !important;
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3) !important;
}

.about-feature-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.6; }
}

/* White Section Overrides for Alternating Colors */
.bg-white-section {
    background-color: #FFFFFF !important;
    color: var(--color-text-main) !important;
}

.bg-white-section h1, .bg-white-section h2, .bg-white-section h3, .bg-white-section h4, .bg-white-section h5 {
    color: var(--color-text-main) !important;
}

.bg-white-section p {
    color: var(--color-text-muted) !important;
}

.bg-white-section .about-feature-info h4 {
    color: var(--color-text-main) !important;
}

.bg-white-section .about-feature-info p {
    color: var(--color-text-muted) !important;
}

.bg-white-section .about-feature-icon {
    background: rgba(0, 61, 23, 0.08) !important;
    color: #004c1d !important;
}

.bg-white-section .section-header span {
    color: #004c1d !important;
    background: rgba(0, 61, 23, 0.08) !important;
}

/* White Hero Section styles */
.hero-white-section {
    background-color: #FFFFFF !important;
    color: var(--color-text-main) !important;
}

.hero-white-section h1 {
    color: var(--color-text-main) !important;
}

.hero-white-section p {
    color: var(--color-text-muted) !important;
}

.hero-white-section .feature-text {
    color: var(--color-text-muted) !important;
}

/* Responsive Mobile Scaling Overrides */
@media (max-width: 768px) {
    html {
        font-size: 13px !important;
    }
    
    body {
        font-size: 0.95rem !important;
    }
    
    h1 {
        font-size: 1.85rem !important; /* Tight title on mobile */
        line-height: 1.25 !important;
        margin-bottom: 12px !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-top: 6px !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
    }
    
    section {
        padding: 32px 0 !important; /* Tight padding for modern layout flows */
    }
    
    /* Carousel section must stay zero-padding on all screen sizes */
    section.gallery-carousel-section {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .btn-modern-primary, .btn-modern-secondary {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
    
    .card-modern, .inquiry-card {
        padding: 16px !important;
        font-size: 0.95rem !important;
    }
    
    .custom-container {
        padding: 0 12px !important;
    }
    
    .modern-header-container {
        height: 50px !important;
        padding: 0 12px !important;
    }
    
    .perspective-container {
        perspective: none !important;
        margin-top: 24px;
        max-width: 280px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        position: relative !important;
        overflow: visible !important;
    }
    
    .isometric-card {
        transform: none !important;
        box-shadow: var(--shadow-soft) !important;
        max-width: 280px !important;
        margin: 0 auto;
    }
    
    .isometric-card:hover {
        transform: none !important;
        box-shadow: var(--shadow-hover) !important;
    }
    
    .section-padding {
        padding: 32px 0 !important;
    }
    
    .modern-nav {
        background: #004c1d !important;
        /* position is relative (in-flow) — no top offset needed */
        top: auto !important;
    }
    
    .hero-logo-img {
        width: 70px !important;
        height: 70px !important;
    }
    
    /* Shrink floating social proof cards on mobile */
    .hero-white-section .card-modern {
        padding: 8px 10px !important;
        max-width: 150px !important;
        border-radius: 8px !important;
    }
    
    .hero-white-section .card-modern p {
        font-size: 0.65rem !important;
        margin: 2px 0 0 0 !important;
        line-height: 1.2 !important;
    }
    
    .hero-white-section .card-modern span[style*="font-weight: 800"] {
        font-size: 0.7rem !important;
    }
    
    /* Shrink the hero feature checklist items */
    .feature-text {
        font-size: 0.8rem !important;
        gap: 5px !important;
    }
    
    .feature-text i {
        font-size: 0.8rem !important;
    }
    
    /* Tighten hero section top gap on mobile */
    .hero-white-section.section-padding {
        padding-top: 10px !important;
        padding-bottom: 24px !important;
    }
}

/* Standard Section Padding */
.section-padding {
    padding: 80px 0 !important;
}

/* Full-bleed carousel: zero padding/margin at ALL breakpoints */
.gallery-carousel-section {
    padding: 0 !important;
    margin: 0 !important;
}

/* 4 Column Layout */
.modern-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .modern-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modern-grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Hero Logo Class */
.hero-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 61, 23, 0.12));
    transition: transform 0.3s ease;
}

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

/* Slider & Vector Card Styling */
.modern-slider-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 6px solid #ffffff;
    background: #ffffff;
}

.vector-card-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #F0FDF4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(0, 61, 23, 0.1);
    font-size: 3rem;
}

/* Premium Green & Gold Branding Accents */
.modern-brand .gold-text, .gold-text {
    color: var(--color-gold) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--color-gold) !important;
    font-weight: 800 !important;
    display: inline !important;
}

/* Gold Section Header Span highlight for green sections */
.section-header span {
    color: var(--color-gold) !important;
    background: rgba(212, 175, 55, 0.12) !important;
    border: 1px solid var(--color-gold) !important;
}

/* Gold highlight for white sections headers */
.bg-white-section .section-header span {
    color: #003d17 !important;
    background: rgba(0, 61, 23, 0.05) !important;
    border: 1px solid var(--color-gold) !important;
}

/* Gold highlight for hero floating cards */
.hero-white-section .card-modern {
    border-left: 4px solid var(--color-gold) !important;
}

/* ─── Hero Features Grid ─────────────────────────────── */
.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Feature badge pills */
.feature-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #003d17;
    background: rgba(0, 61, 23, 0.07);
    border: 1.5px solid rgba(0, 61, 23, 0.18);
    border-radius: 9999px;
    padding: 7px 14px;
    white-space: nowrap;
}

.feature-text i {
    color: #004c1d;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Hero image wrapper – show floating cards on mobile */
.hero-img-wrap {
    overflow: visible;
}

/* Hero logo desktop */
.hero-logo-wrapper {
    margin-bottom: 12px;
}

/* ─── Mobile Overrides ───────────────────────────────── */
@media (max-width: 768px) {

    /* Logo: centered, larger, tighter */
    .hero-logo-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 8px !important;
    }

    .hero-logo-img {
        width: 165px !important;
        height: 165px !important;
    }

    /* Feature badges: compact 2-col grid, wrap allowed */
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .feature-text {
        font-size: 0.7rem !important;
        padding: 5px 9px !important;
        gap: 5px !important;
        border-radius: 9999px !important;
        white-space: normal;
        line-height: 1.2;
    }

    .feature-text i {
        font-size: 0.7rem !important;
    }

    /* Floating hero cards: smaller, fully inside bounds */
    .hero-float-card {
        padding: 7px 10px !important;
        max-width: 140px !important;
        border-radius: 8px !important;
    }

    .hero-float-card p {
        font-size: 0.6rem !important;
        margin: 2px 0 0 !important;
        line-height: 1.2 !important;
    }

    .hero-float-card span {
        font-size: 0.68rem !important;
    }

    .hero-float-card--top {
        top: 6px !important;
        left: 6px !important;
    }

    .hero-float-card--bottom {
        bottom: 6px !important;
        right: 6px !important;
    }
}

/* ─── FAQ Accordion ──────────────────────────────────── */
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 76, 29, 0.12);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 76, 29, 0.1);
    border-color: rgba(0, 76, 29, 0.28);
}

.faq-item.open {
    border-color: #004c1d;
    box-shadow: 0 6px 24px rgba(0, 76, 29, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.4;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 76, 29, 0.03);
}

.faq-item.open .faq-question {
    color: #004c1d;
    background: rgba(0, 76, 29, 0.04);
}

.faq-icon {
    color: #004c1d;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    margin: 0;
    font-size: 0.98rem;
    color: #4B5563 !important;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 76, 29, 0.08);
    padding-top: 16px;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.92rem !important;
        padding: 16px 18px !important;
    }

    .faq-answer p {
        font-size: 0.88rem !important;
        padding: 12px 18px 16px !important;
    }
}

/* ─── FAQ v3 — Clean Webflow-style Accordion ──────── */
.faq3-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq3-item {
    background: #ffffff;
    border-radius: 10px;
    border: 1.5px solid #e8edf2;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq3-item:hover {
    border-color: #c8d8cc;
    box-shadow: 0 2px 12px rgba(0, 76, 29, 0.07);
}

.faq3-item.open {
    border-color: #004c1d;
    border-left: 3px solid #004c1d;
    box-shadow: 0 4px 18px rgba(0, 76, 29, 0.1);
}

.faq3-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    transition: background 0.15s ease;
}

.faq3-btn:hover {
    background: #f9fafb;
}

.faq3-item.open .faq3-btn {
    color: #004c1d;
    font-weight: 700;
}

.faq3-icon {
    color: #94A3B8;
    font-size: 0.78rem;
    flex-shrink: 0;
    transition: transform 0.28s ease, color 0.2s ease;
}

.faq3-item.open .faq3-icon {
    color: #004c1d;
}

.faq3-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
}

.faq3-body p {
    padding: 0 22px 18px 22px;
    margin: 0;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.72;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

@media (max-width: 768px) {
    .faq3-btn {
        font-size: 0.9rem !important;
        padding: 15px 16px !important;
    }
    .faq3-body p {
        font-size: 0.87rem !important;
        padding: 12px 16px 16px !important;
    }
}
