/* ============================================
   Favour-Bel Farms — Redesign
   Organic / refined aesthetic • Warm earth + green
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,400&display=swap');

:root {
    /* Brand & palette — inspiration: light mint + warm off-white */
    --primary: #0d6b34;
    --primary-light: #11ac4b;
    --primary-hover: #0d8a3a;
    --mint: #e8f5e9;
    --mint-card: #daeeca;
    --cream: #fffef5;
    --cream-dark: #f0fdf4;
    --cream-warm: #fcf5d9;
    --earth: #6b4423;
    --earth-light: #8b6914;
    --dark: #1a1612;
    --text: #2c2620;
    --text-muted: #5c534a;
    --white: #fff;
    /* Organic pattern (wave) for sections */
    --pattern-wave: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230d6b34' fill-opacity='0.04' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,165.3C960,171,1056,149,1152,138.7C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    /* Spacing & rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.25s;
    --duration: 0.4s;
    --duration-slow: 0.7s;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 22, 18, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 22, 18, 0.1);
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Subtle grain overlay for depth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Reveal animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ---- Nav ---- */
.nav-bar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, #0a5528 100%);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo img {
    width: 88px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform var(--duration) var(--ease-out);
}

.nav-logo img:hover {
    transform: scale(1.03);
}

.nav-section {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
}

.nav-section ul li {
    display: inline-block;
}

.nav-section ul li a {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    text-decoration: none;
    color: rgba(255,255,255,0.95);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: color var(--duration-fast), background-color var(--duration-fast);
}

.nav-section ul li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.12);
}

.nav-links li::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--white);
    margin: 2px auto 0;
    border-radius: 1px;
    transition: width var(--duration) var(--ease-out);
}

.nav-links li:hover::after {
    width: 100%;
}

/* ---- Hero (inspiration: off-white rounded card, organic pattern) ---- */
.Hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    min-height: 85vh;
    padding: var(--space-2xl) var(--space-lg);
    position: relative;
    overflow: visible;
}

.Hero .hero-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2xl);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(165deg, var(--cream-warm) 0%, var(--cream) 50%, rgba(218, 238, 202, 0.3) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 107, 52, 0.08);
    position: relative;
    overflow: hidden;
}

.Hero .hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pattern-wave);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.6;
    pointer-events: none;
}

.Hero .hero-card > * {
    position: relative;
    z-index: 1;
}

.Hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(17, 172, 75, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.content {
    max-width: 520px;
}

.content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.content h1 span {
    color: var(--primary);
    font-style: italic;
    position: relative;
}

.content p {
    margin-top: var(--space-md);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.Hero-image {
    flex-shrink: 0;
    position: relative;
}

.Hero-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 22, 18, 0.06);
    transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.Hero-image img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 56px rgba(26, 22, 18, 0.12);
}

/* Hero overlaid mini-cards (inspiration) */
.hero-overlay-cards {
    position: absolute;
    bottom: 1rem;
    right: -0.5rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 2;
}

.hero-mini-card {
    background: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.8rem;
    color: var(--text);
    max-width: 140px;
}

.hero-mini-card strong { color: var(--primary); }
.hero-mini-card .stars { color: var(--earth-light); font-size: 0.7rem; }

/* ---- Reviews strip ---- */
.Kawaski {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-lg);
}

.Kawaski .F.star.rev span {
    color: var(--earth-light);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
}

.Rev-cont p {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ---- Satisfaction badge ---- */
.Satisfaction {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) auto;
    width: fit-content;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 22, 18, 0.06);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.Satisfaction:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.Satis-image img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream-dark);
    padding: 6px;
}

.Satis-cont h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.Satis-cont p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- Social icons (fixed) ---- */
.social-icons {
    position: fixed;
    right: var(--space-md);
    bottom: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    z-index: 10001;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--duration) var(--ease-out);
}

.social-icons a:hover {
    transform: scale(1.12);
}

.social-icons img {
    width: 56px;
    height: auto;
    transition: transform var(--duration) var(--ease-out);
}

.icon-whatsapp img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    border: 2px solid var(--primary);
    padding: 6px;
    box-sizing: border-box;
}

.icon-instagram img,
.icon-facebook img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

/* ---- Section headings pattern ---- */
.Product-subheading,
.Seedlings-Subheading,
.Subtitle-preamble,
.Journey,
.Testimonials,
.Board-title,
.FAQ-QUESTIONS,
.Contact-Subheading {
    text-align: center;
}

.Product-subheading h2,
.Seedlings-Subheading h2,
.Subtitle-preamble h2,
.Journey h2,
.Testimonials h2,
.Board-title h2,
.FAQ-QUESTIONS h3,
.Contact-Subheading h3 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
}

.product-line,
.seedlings-line,
.pre-line,
.Testi-line,
.board-line,
.faq-line {
    display: block;
    width: 64px;
    height: 3px;
    margin: var(--space-sm) auto;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border: none;
    border-radius: 2px;
}

/* ---- Product features (inspiration: 4 light green cards, wave pattern) ---- */
#Product-features {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.Feature-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.Feature-components1,
.Feature-components2,
.Feature-components3,
.Feature-components4 {
    background: var(--mint-card);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 107, 52, 0.1);
    max-width: 260px;
    text-align: center;
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.Feature-components1::before,
.Feature-components2::before,
.Feature-components3::before,
.Feature-components4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--pattern-wave);
    background-size: cover;
    background-position: bottom;
    opacity: 0.25;
    pointer-events: none;
}

.Feature-components1:hover,
.Feature-components2:hover,
.Feature-components3:hover,
.Feature-components4:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.Feature-components1 img,
.Feature-components2 img,
.Feature-components3 img,
.Feature-components4 img {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(13, 107, 52, 0.12);
}

.Feature-components1 h4,
.Feature-components2 h4,
.Feature-components3 h4,
.Feature-components4 h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: var(--space-xs);
    position: relative;
    z-index: 1;
}

.Feature-components1 P,
.Feature-components2 P,
.Feature-components3 P,
.Feature-components4 P {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

/* Staggered card reveal when section is revealed */
#Product-features.revealed .Feature-components1 { animation: fadeInUp 0.6s var(--ease-out) 0.1s both; }
#Product-features.revealed .Feature-components2 { animation: fadeInUp 0.6s var(--ease-out) 0.2s both; }
#Product-features.revealed .Feature-components3 { animation: fadeInUp 0.6s var(--ease-out) 0.3s both; }
#Product-features.revealed .Feature-components4 { animation: fadeInUp 0.6s var(--ease-out) 0.4s both; }

/* ---- Cocoa Seedlings ---- */
#Cocoa-Seedlings {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.Seedlings-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-lg);
}

.Seedlings-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.Seedlings-Carousel-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.seedlings-prev,
.seedlings-next {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--duration-fast), transform var(--duration-fast);
}

.seedlings-prev:hover,
.seedlings-next:hover {
    background: var(--primary-hover);
    transform: scale(1.08);
}

.SeedlingsSlider {
    display: flex;
    gap: var(--space-md);
    margin: 0 auto;
    max-width: min(1400px, 100vw);
    padding: var(--space-sm);
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.SeedlingsSlider > div {
    scroll-snap-align: center;
    flex-shrink: 0;
}

.seedlings-container1 img,
.seedlings-container2 img,
.seedlings-container3 img,
.seedlings-container4 img,
.seedlings-container5 img,
.seedlings-container6 img,
.seedlings-container7 img {
    width: 320px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out);
}

.SeedlingsSlider img:hover {
    transform: scale(1.02);
}

/* ---- Product bag (cocoa products carousel) ---- */
#Product-bag {
    margin-top: var(--space-xl);
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: var(--radius-xl);
}

.Cocoa-Carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

.Product-title h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.Product-title p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.Carouselbuttons {
    display: flex;
    gap: var(--space-xs);
}

.prev,
.next {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--duration-fast), transform var(--duration-fast);
}

.prev:hover,
.next:hover {
    background: var(--primary-hover);
    transform: scale(1.06);
}

.SliderCarousel {
    display: flex;
    gap: var(--space-md);
    margin: var(--space-lg) auto;
    max-width: min(1400px, 100vw);
    padding: var(--space-sm);
    overflow-x: hidden;
    scroll-behavior: smooth;
    min-height: 380px;
}

.SliderCarousel > div {
    flex-shrink: 0;
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 22, 18, 0.06);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.SliderCarousel > div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.slider-container1 img,
.slider-container2 img,
.slider-container3 img,
.slider-container4 img,
.slider-container5 img,
.slider-container6 img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.SliderCarousel p {
    margin-top: var(--space-sm);
    font-weight: 500;
    color: var(--dark);
}

.SliderCarousel span {
    color: var(--earth-light);
    font-size: 0.9rem;
}

/* ---- Preamble / Additional products ---- */
#Preamble {
    margin-top: var(--space-xl);
}

.Subtitle-preamble {
    margin-top: var(--space-2xl);
}

.ADDITIONAL {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-left: 0;
}

.addi-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
}

.addi-content h3 span,
.addi-content p span,
.addi-content ul li span:first-of-type {
    color: var(--primary);
    font-weight: 600;
}

.addi-content p {
    margin-top: var(--space-sm);
    color: var(--text-muted);
}

.addi-content ul {
    list-style: none;
    margin-top: var(--space-md);
}

.addi-content ul li {
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.addi-content ul li span:last-child {
    color: var(--earth-light);
    font-size: 0.85rem;
}

.Addi-slider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-1,
.slider-2,
.slider-3,
.slider-4 {
    max-width: 500px;
}

.slider-1 img,
.slider-2 img,
.slider-3 img,
.slider-4 img {
    width: 100%;
    max-width: 480px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.slider-1btn {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
    margin-top: var(--space-sm);
}

.slider-1 {
    position: relative;
}

.before,
.after {
    padding: 8px 16px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: background-color var(--duration-fast);
}

.before:hover,
.after:hover {
    background: var(--primary-hover);
}

/* ---- Years / stats ---- */
.years {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.years-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.years-cont1,
.years-cont2,
.years-cont3,
.years-cont4 {
    text-align: center;
    min-width: 140px;
}

.years-cont1 h1,
.years-cont2 h1,
.years-cont3 h1,
.years-cont4 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.years-cont1 p,
.years-cont2 p,
.years-cont3 p,
.years-cont4 p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- Founder ---- */
.Founder-Container {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    margin-top: var(--space-2xl);
}

.Founder-Container h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--dark);
}

.pim {
    width: 80px;
    height: 2px;
    margin: var(--space-sm) auto;
    background: var(--primary);
    border: none;
}

.Founder-Container p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: var(--space-xs);
}

.Founder-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.Founder-images1 img,
.Founder-images2 img,
.Founder-images3 img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--duration) var(--ease-out);
}

.Founder-images1 img:hover,
.Founder-images2 img:hover,
.Founder-images3 img:hover {
    transform: scale(1.02);
}

.Founder-Cont {
    max-width: 480px;
}

.Founder-Cont P {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text);
}

.Founder-Cont span {
    color: var(--primary);
    font-weight: 600;
}

/* ---- CTA ---- */
.call-to-action {
    margin: var(--space-2xl) var(--space-lg);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--primary) 0%, #0a5528 100%);
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta-content > p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: var(--space-md);
}

.cta-text {
    text-align: left;
    max-width: 640px;
    margin: 0 auto var(--space-lg);
}

.cta-text p {
    font-size: 0.95rem;
    line-height: 1.75;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.cta-text p:last-child {
    font-weight: 600;
    opacity: 1;
    margin-top: var(--space-md);
}

.cta-button {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: var(--white);
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-cta {
    margin-top: var(--space-md);
    display: inline-block;
}

.cta-link {
    display: block;
    margin-top: var(--space-sm);
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color var(--duration-fast);
}

.cta-link:hover {
    color: var(--white);
}

/* ---- Testimonials (inspiration: large light green card, speech bubble) ---- */
#Testi-bag {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
    background: var(--mint-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(13, 107, 52, 0.1);
    position: relative;
    overflow: hidden;
}

#Testi-bag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pattern-wave);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.35;
    pointer-events: none;
}

#Testi-bag .Testimonials,
#Testi-bag .Testimonies {
    position: relative;
    z-index: 1;
}

.Testimonials p {
    margin-top: var(--space-xs);
    color: var(--text-muted);
}

.Testimonies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.Testimony1,
.Testimony2,
.Testimony3 {
    flex: 1 1 300px;
    max-width: 360px;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 22, 18, 0.06);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
    position: relative;
}

/* Speech-bubble style for first testimonial */
.Testimony1::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 24px;
    border: 12px solid transparent;
    border-top-color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

.Testimony1:hover,
.Testimony2:hover,
.Testimony3:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.Testimony1 h4,
.Testimony2 h4,
.Testimony3 h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.Testimony1 p,
.Testimony2 p,
.Testimony3 p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.65;
    margin-top: var(--space-xs);
}

.Testimony1 span,
.Testimony2 span,
.Testimony3 span {
    color: var(--earth-light);
    font-size: 0.85rem;
}

/* ---- Board members ---- */
.Board-members {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.Board-title p {
    margin-top: var(--space-sm);
    color: var(--text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.Testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.member-1,
.member-2,
.member-3,
.member-4 {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.member-1 img,
.member-2 img,
.member-3 img,
.member-4 img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    display: block;
}

.text1,
.text2,
.text3,
.text4 {
    margin-top: var(--space-md);
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text);
}

.text1 span,
.text2 span,
.text3 span,
.text4 span {
    color: var(--primary);
    font-weight: 600;
}

.Bol, .Fav, .Fem, .Gab {
    margin-top: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

/* ---- FAQ ---- */
#FAQ-CONTAINER {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.FAQ-QUESTIONS {
    margin-top: 0;
}

.accordion {
    max-width: 720px;
    margin: var(--space-lg) auto 0;
}

.accordion-item {
    background: var(--white);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 22, 18, 0.06);
    overflow: hidden;
    transition: box-shadow var(--duration-fast);
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.accordion-item-header {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding-right: 3rem;
    transition: background-color var(--duration-fast);
}

.accordion-item-header:hover {
    background: var(--cream);
}

.accordion-item-header::after {
    content: '\002B';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    transition: transform var(--duration) var(--ease-out);
}

.accordion-item-header.active::after {
    content: '\2212';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease-out);
}

.accordion-item-body-content {
    padding: var(--space-sm) var(--space-lg) var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

.accordion-item-body-content P {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Contact ---- */
#Cont-wrapper {
    padding: var(--space-2xl) var(--space-lg);
    margin-top: var(--space-xl);
}

.Contact-Subheading h3 span {
    color: var(--primary);
}

.Contact-Subheading p {
    margin-top: var(--space-xs);
    color: var(--text-muted);
}

.Contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.Contact-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.Cont1 h4,
.Cont2 h4,
.Cont3 h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.Cont1 p,
.Cont2 p,
.Cont3 p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.Contact-Image img {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ---- Newsletter (inspiration: subscribe block before footer) ---- */
.newsletter-block {
    margin: var(--space-2xl) var(--space-lg) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--cream-warm) 0%, var(--cream) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 107, 52, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    position: relative;
    overflow: hidden;
}

.newsletter-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pattern-wave);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.4;
    pointer-events: none;
}

.newsletter-block .newsletter-content { position: relative; z-index: 1; }
.newsletter-block .newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: var(--space-xs);
}
.newsletter-block .newsletter-content p { color: var(--text-muted); margin-bottom: var(--space-sm); }
.newsletter-form {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.newsletter-form input[type="email"] {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid rgba(13, 107, 52, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    min-width: 220px;
}
.newsletter-form button {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background var(--duration-fast), transform var(--duration-fast);
}
.newsletter-form button:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

/* ---- CAC SIGNBOARD ---- */
.CAC-SIGNBOARD {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.CAC-SIGNBOARD img {
    width: 300px;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.middle-img {
    object-position: top;
}

/* ---- Footer (inspiration: light green rounded card) ---- */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-lg);
    margin: var(--space-lg) var(--space-lg) var(--space-lg);
    background: var(--mint-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13, 107, 52, 0.12);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--pattern-wave);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.2;
    pointer-events: none;
}

.footer > * { position: relative; z-index: 1; }

.nav-footer p,
.Navvv,
.Contact .acttt,
.Business-hours .nesss {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.nav-footer ul {
    list-style: none;
}

.nav-footer ul li {
    margin-top: var(--space-xs);
}

.nav-footer ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.nav-footer ul li a:hover {
    color: var(--primary);
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.Contact p,
.Business-hours p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 1px solid rgba(13, 107, 52, 0.15);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ---- Mobile menu (hidden by default) ---- */
.nav-section .fa,
.fa[menu-btn],
.fa[close-btn] {
    display: none;
}

/* ========== Responsive: tablet & mobile ========== */
@media (max-width: 768px) {
    .fa[menu-btn] {
        display: block !important;
        margin-top: 0;
        color: var(--white);
        cursor: pointer;
        font-size: 1.35rem;
        padding: var(--space-sm);
    }

    .nav-logo img {
        width: 72px;
        height: 72px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, var(--primary) 0%, #0a5528 100%);
        padding: var(--space-xl);
        z-index: 1001;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
    }

    .nav-links.show-nav {
        display: flex;
    }

    .nav-links li {
        display: block;
        margin: 0;
        padding: var(--space-sm) 0;
    }

    .nav-links li a {
        font-size: 1.1rem;
    }

    .fa[close-btn] {
        display: block !important;
        font-size: 1.5rem;
        cursor: pointer;
        margin-bottom: var(--space-md);
        color: var(--white);
    }

    .Hero .hero-card {
        flex-direction: column;
        padding: var(--space-lg) var(--space-md);
    }

    .Hero {
        min-height: auto;
        padding: var(--space-xl) var(--space-md);
    }

    .hero-overlay-cards {
        position: static;
        margin-top: var(--space-sm);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .Hero-image img {
        max-width: 100%;
    }

    .content h1 {
        text-align: center;
    }

    .content p {
        text-align: center;
    }

    .Kawaski {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .Satisfaction {
        margin: var(--space-md) auto;
    }

    .Feature-container {
        flex-direction: column;
        align-items: center;
    }

    .Founder-content {
        flex-direction: column;
        align-items: center;
    }

    .Founder-Cont {
        max-width: 100%;
        text-align: center;
    }

    .Testimonies {
        flex-direction: column;
        align-items: center;
    }

    .years-cont {
        gap: var(--space-lg);
    }

    .Testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .member-1, .member-2, .member-3, .member-4 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .SliderCarousel {
        margin-left: 0;
    }

    .SliderCarousel > div {
        min-width: 280px;
    }

    .SeedlingsSlider {
        margin-left: 0;
    }

    .ADDITIONAL {
        flex-direction: column;
        align-items: center;
    }

    .slider-1btn {
        display: flex;
    }

    .Contact-details {
        flex-direction: column;
        text-align: center;
    }

    .Contact-container {
        align-items: center;
    }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-bar {
        padding: var(--space-sm) var(--space-md);
    }

    .nav-logo img {
        width: 60px;
        height: 60px;
    }

    .nav-links {
        width: 85%;
    }

    .Hero {
        padding: var(--space-lg) var(--space-sm);
    }

    .content h1 {
        font-size: 1.85rem;
    }

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

    .Feature-components1,
    .Feature-components2,
    .Feature-components3,
    .Feature-components4 {
        max-width: 100%;
    }

    .SliderCarousel > div {
        min-width: 260px;
    }

    .slider-container1 img,
    .slider-container2 img,
    .slider-container3 img,
    .slider-container4 img,
    .slider-container5 img,
    .slider-container6 img {
        width: 100%;
        max-width: 260px;
        height: 180px;
    }

    .accordion {
        width: 100%;
    }

    .seedlings-container1 img,
    .seedlings-container2 img,
    .seedlings-container3 img,
    .seedlings-container4 img,
    .seedlings-container5 img,
    .seedlings-container6 img,
    .seedlings-container7 img {
        width: 280px;
        height: 220px;
    }

    .social-icons img,
    .icon-whatsapp img,
    .icon-instagram img,
    .icon-facebook img {
        width: 48px;
        height: 48px;
    }

    .call-to-action {
        padding: var(--space-xl) var(--space-md);
    }

    .jr{
        display: block;
        width: 16px;
        height: 3px;
        margin: var(--space-sm) auto;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
        border: none;
        border-radius: 2px;
    }
 
    .CAC-SIGNBOARD {
        flex-direction: column;
    }
 

}
