/* =========================================================
   FreshGreens — 2026 modern restyle
   Palette: deep forest green primary, warm amber accent,
   cream neutrals. Premium, professional, B2B produce.
   ========================================================= */

:root {
    /* Primary — forest green ramp */
    --primary-50: #ecf7ee;
    --primary-100: #d0ebd4;
    --primary-200: #a6d7af;
    --primary-300: #6fbc7e;
    --primary-400: #3a9d51;
    --primary: #1f7a3d;
    --primary-600: #176231;
    --primary-dark: #0f4a24;
    --primary-900: #0a3319;

    /* Secondary — warm amber (harvest) */
    --secondary-50: #fdf3e6;
    --secondary-100: #f9e0c2;
    --secondary-200: #f2c78a;
    --secondary-300: #eaa851;
    --secondary: #d98a2b;
    --secondary-500: #c4741f;
    --secondary-dark: #9c5713;

    /* Accent — fresh lime */
    --accent: #8bc34a;
    --accent-dark: #5a8f2d;

    /* Status */
    --success: #1f7a3d;
    --success-bg: #e8f5ec;
    --warning: #d98a2b;
    --warning-bg: #fdf3e6;
    --error: #c0392b;
    --error-bg: #fdecea;

    /* Neutrals — warm cream */
    --neutral-0: #ffffff;
    --neutral-50: #fbfaf6;
    --light: #f6f3ec;
    --light-strong: #fffdf9;
    --neutral-100: #f1ede4;
    --neutral-200: #e5e0d4;
    --border-soft: rgba(15, 74, 36, 0.09);
    --border-strong: rgba(15, 74, 36, 0.16);

    /* Text */
    --dark: #0f2a18;
    --muted: #566051;
    --muted-light: #7a857a;

    /* Effects */
    --shadow-xs: 0 1px 2px rgba(15, 42, 24, 0.06);
    --shadow-sm: 0 2px 8px rgba(15, 42, 24, 0.06);
    --shadow-soft: 0 10px 30px rgba(15, 42, 24, 0.08);
    --shadow-md: 0 18px 40px rgba(15, 42, 24, 0.12);
    --shadow-lg: 0 30px 60px rgba(15, 42, 24, 0.18);
    --shadow-primary: 0 14px 34px rgba(31, 122, 61, 0.28);
    --shadow-secondary: 0 14px 34px rgba(217, 138, 43, 0.30);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --container-pad: clamp(20px, 4vw, 40px);
}

/* ---------- Base ---------- */
* {
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--muted);
    background:
        radial-gradient(circle at 0% 0%, rgba(31, 122, 61, 0.04), transparent 40%),
        linear-gradient(180deg, var(--light-strong) 0%, var(--light) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-2, .display-3, .display-4, .display-5, .display-6 {
    color: var(--dark);
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.display-2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
.display-5 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }

h1, h2 { letter-spacing: -0.025em; }
h4 { font-weight: 700; letter-spacing: -0.01em; }
h5 { font-weight: 700; }
h6 { font-weight: 700; color: var(--dark); }

p { color: var(--muted); }

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

a:hover { color: var(--primary-600); }

::selection {
    background: var(--primary);
    color: #fff;
}

/* ---------- Layout helpers ---------- */
.my-6 { margin-top: 6rem; margin-bottom: 6rem; }
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

.container,
.container-xxl,
.container-fluid {
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

section { position: relative; }

.bg-light {
    background: linear-gradient(180deg, var(--neutral-50) 0%, var(--light) 100%) !important;
}

.bg-dark {
    background: var(--primary-900) !important;
}

/* ---------- Spinner ---------- */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 4px;
    color: var(--primary);
}

/* ---------- Buttons ---------- */
.btn {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--radius-pill);
    transition: all 0.3s var(--ease);
}

.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--primary) 55%, var(--primary-600) 100%);
    border: none;
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 60%, var(--primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(31, 122, 61, 0.38);
    color: #fff;
}

.btn.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-300) 0%, var(--secondary) 55%, var(--secondary-500) 100%);
    border: none;
    color: #fff;
    box-shadow: var(--shadow-secondary);
}

.btn.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(217, 138, 43, 0.42);
    color: #fff;
}

.btn.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    border: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}

.btn.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
}

.btn.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn.btn-light {
    background: #fff;
    color: var(--primary-dark);
    border: none;
    box-shadow: var(--shadow-sm);
}

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

.btn.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.btn.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn:active { transform: translateY(0) scale(0.99); }

.btn-square { width: 42px; height: 42px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-lg-square { width: 50px; height: 50px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ---------- Top bar ---------- */
.fixed-top { transition: top 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease); }

.top-bar {
    height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, var(--primary-900) 0%, var(--primary-dark) 50%, var(--primary) 100%);
}

.top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
}

.top-contact small,
.top-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.25s var(--ease);
}

.top-contact a:hover { color: #fff; }

.top-contact i { color: var(--secondary-200); }

/* ---------- Language switcher ---------- */
.language-switcher {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}

.lang-btn:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
    transform: translateY(-1px);
}

.lang-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(217, 138, 43, 0.4);
}

/* Mobile language switcher */
.mobile-lang-switcher {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 9999;
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-lang-switcher { display: block; }
    .language-switcher {
        margin-top: 12px;
        justify-content: center;
        padding: 12px 0;
        border-top: 1px solid var(--border-soft);
    }
}

.mobile-lang-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s var(--ease);
}

.mobile-lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(31, 122, 61, 0.4);
}

.mobile-lang-dropdown {
    position: absolute;
    top: 52px;
    right: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease);
    min-width: 170px;
    border: 1px solid var(--border-soft);
}

.mobile-lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-lang-option {
    display: block;
    width: 100%;
    padding: 12px 18px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s var(--ease);
    border-bottom: 1px solid var(--border-soft);
}

.mobile-lang-option:last-child { border-bottom: none; }
.mobile-lang-option:hover { background: var(--light); color: var(--primary); }

/* ---------- Navbar ---------- */
.navbar {
    height: 88px;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(255, 253, 249, 0.88);
    box-shadow: 0 6px 22px rgba(15, 42, 24, 0.05);
}

.fixed-top.bg-white .navbar,
.fixed-top.shadow .navbar {
    background: rgba(255, 253, 249, 0.96);
}

.navbar .navbar-nav .nav-link {
    padding: 26px 16px;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    outline: none;
    position: relative;
    transition: color 0.25s var(--ease);
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 20px;
    left: 50%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s var(--ease);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 70%;
}

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

.navbar-brand img.large-logo {
    max-height: 64px;
    width: auto;
    transition: transform 0.4s var(--ease);
}

.navbar-brand:hover img.large-logo {
    transform: scale(1.04);
}

.nav-cta {
    box-shadow: var(--shadow-primary);
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        padding: 12px 16px;
        background: rgba(255, 253, 249, 0.98);
    }

    .navbar-brand img.large-logo { max-height: 52px; }

    .navbar .navbar-nav {
        margin-top: 14px;
        border-top: 1px solid var(--border-soft);
        background: #fff;
        border-radius: var(--radius);
        padding: 10px 14px;
        box-shadow: var(--shadow-sm);
    }

    .navbar .navbar-nav .nav-link {
        padding: 14px 6px;
        border-radius: var(--radius-sm);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        background: var(--primary-50);
    }

    .navbar .navbar-nav .nav-link::after { display: none; }
}

/* ---------- Section header ---------- */
.section-header {
    position: relative;
    padding-top: 26px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 56px;
    height: 3px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
}

.section-header.text-start::before { left: 0; transform: translateX(0); }

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.08rem;
    max-width: 640px;
    margin: 0 auto;
    color: var(--muted);
}

/* ---------- Hero ---------- */
.hero-section {
    position: relative;
    padding: 168px 0 90px;
    background:
        radial-gradient(circle at 85% 15%, rgba(217, 138, 43, 0.18), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(139, 195, 74, 0.12), transparent 35%),
        linear-gradient(135deg, #0a3319 0%, #143f25 40%, #1f7a3d 100%);
    color: #fff;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04), transparent 50%);
    opacity: 1;
    pointer-events: none;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}

.hero-grid { min-height: 600px; }

.hero-copy { position: relative; z-index: 2; }

.hero-copy .display-2,
.hero-copy h1 {
    color: #fff;
    font-weight: 700;
}

.hero-copy p,
.hero-copy strong,
.hero-copy span { color: #fff; }

.hero-lead {
    max-width: 620px;
    font-size: 1.18rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.hero-outline-btn {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.hero-outline-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--primary-dark);
}

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-trust-card {
    padding: 20px 18px 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.hero-trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.13);
}

.hero-trust-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    color: #fff;
}

.hero-trust-card span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-image-card {
    position: absolute;
    top: 24px;
    right: 0;
    width: min(100%, 460px);
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 34px 70px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(15, 74, 36, 0.25) 100%);
    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.hero-image-card:hover img { transform: scale(1.06); }

.hero-floating-card {
    position: absolute;
    z-index: 2;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 244, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    transition: transform 0.4s var(--ease);
}

.hero-floating-card:hover { transform: translateY(-4px); }

.hero-floating-card h3,
.hero-floating-card strong,
.hero-floating-card span {
    color: var(--dark);
    font-family: "Fraunces", serif;
}

.hero-floating-card-top {
    top: -10px;
    left: -16px;
    max-width: 280px;
}

.hero-floating-card-bottom {
    bottom: -8px;
    left: 30px;
    width: min(100%, 320px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

.hero-metric + .hero-metric {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}

.hero-metric strong {
    display: block;
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.hero-metric span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
    position: relative;
    z-index: 2;
    margin-top: -56px;
    padding-bottom: 44px;
}

.announcement-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 34px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 30%),
        linear-gradient(135deg, var(--secondary-300) 0%, var(--secondary) 45%, var(--secondary-500) 100%);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.announcement-wrap::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.announcement-copy { position: relative; z-index: 1; }

.announcement-copy .section-kicker { color: rgba(255, 255, 255, 0.92); }
.announcement-copy .section-kicker::before { background: rgba(255, 255, 255, 0.7); }

.announcement-copy h2 {
    color: #fff;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
}

.announcement-copy p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.announcement-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ---------- About ---------- */
.about-img {
    position: relative;
    border-radius: var(--radius-xl);
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    transition: transform 0.5s var(--ease);
    box-shadow: var(--shadow-md);
}

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

.about-img::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 16px;
    width: 84%;
    height: 84%;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    transform: rotate(-4deg);
    z-index: 1;
    opacity: 0.5;
}

.about-img::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary-200) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.5;
}

.about .fa-check {
    color: var(--primary);
    background: var(--primary-50);
    border-radius: 50%;
    padding: 10px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem !important;
}

/* ---------- Stats grid ---------- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    padding: 22px 18px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #fff 0%, var(--neutral-50) 100%);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.stat-card strong {
    display: block;
    color: var(--primary);
    font-family: "Fraunces", serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
}

/* ---------- Cards: cert / process / service / product / faq ---------- */
.cert-card,
.process-card,
.service-card,
.product-card,
.faq-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    background: #fff;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cert-card:hover,
.process-card:hover,
.service-card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.cert-card i { transition: transform 0.35s var(--ease); color: var(--primary); }
.cert-card:hover i { transform: scale(1.12) rotate(4deg); }

.cert-card h5,
.process-card h5,
.service-card h4,
.product-card h4 {
    color: var(--dark);
}

/* Process cards */
.process-card { position: relative; padding-top: 30px; }

.process-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary-300) 0%, var(--secondary) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Fraunces", serif;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-secondary);
    z-index: 1;
}

.process-card i { transition: transform 0.35s var(--ease); color: var(--primary); }
.process-card:hover i { transform: scale(1.15); }

/* Service cards */
.service-card { overflow: hidden; position: relative; }

.service-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
    color: var(--primary);
    font-size: 2.1rem;
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.service-card:hover .service-icon {
    transform: translateY(-4px) rotate(-3deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

/* Product cards */
.product-card { position: relative; overflow: hidden; }

.product-media {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--light);
    overflow: hidden;
    cursor: pointer;
}

.product-media img {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.product-card:hover .product-media img {
    transform: scale(1.045);
}

.product-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    padding: 26px 28px 30px;
}

.product-card-body > p {
    flex-grow: 1;
}

.product-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--accent) 100%);
    color: var(--primary);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}

.product-card:hover .product-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #fff;
}

.product-meta {
    padding-top: 12px;
    border-top: 1px solid var(--border-soft);
    margin-top: 12px;
}

.product-meta small {
    color: var(--muted-light) !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ---------- Operations gallery ---------- */
.operations-gallery {
    background: var(--neutral-0);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 22px;
}

.gallery-item {
    position: relative;
    min-height: 390px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--primary-900);
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.gallery-item-wide img {
    object-position: center;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(180deg, transparent, rgba(5, 30, 15, 0.9));
    pointer-events: none;
}

.gallery-item figcaption {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px;
    color: #fff;
}

.gallery-item figcaption strong,
.gallery-item figcaption span {
    display: block;
    color: #fff;
}

.gallery-item figcaption strong {
    margin-bottom: 5px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.35rem;
}

.gallery-item figcaption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.gallery-trust-note {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 20px 22px;
    border: 1px solid var(--primary-100);
    border-radius: var(--radius-lg);
    background: var(--primary-50);
}

.gallery-trust-note > i {
    color: var(--primary);
    font-size: 1.25rem;
}

.gallery-trust-note p {
    flex: 1;
    color: var(--dark);
}

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-soft) !important;
    border-radius: var(--radius-lg) !important;
}

.faq-accordion .accordion-button {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    background: #fff;
    box-shadow: none;
    padding: 22px 26px;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary);
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    color: var(--muted);
    background: #fff;
    padding: 4px 26px 26px;
    font-size: 1.02rem;
    line-height: 1.65;
}

/* ---------- Contact ---------- */
.contact-section {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(217, 138, 43, 0.16), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(139, 195, 74, 0.1), transparent 30%),
        linear-gradient(135deg, #0a3319 0%, #143f25 45%, #1f7a3d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.6;
    pointer-events: none;
}

.contact-story-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-story-copy,
.contact-side-card,
.contact-benefits {
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-form-card,
.contact-benefits { border-radius: var(--radius-xl); }

.contact-form-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
}

.contact-form-card::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 138, 43, 0.1) 0%, transparent 70%);
}

.contact-form-card::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 122, 61, 0.08) 0%, transparent 70%);
}

.contact-side-card a,
.contact-side-card p,
.contact-story-card p { color: #fff; }

.contact-side-card a:hover { color: rgba(255, 255, 255, 0.82); }

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item + .contact-detail-item { margin-top: 18px; }

.contact-detail-item i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-detail-item:hover i {
    background: var(--secondary);
    transform: scale(1.06);
}

.contact-hours-card {
    margin-top: 24px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Form ---------- */
.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.form-control,
.form-select {
    min-height: 56px;
    border-radius: var(--radius);
    background: var(--neutral-50);
    border: 1px solid var(--border-soft) !important;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--dark);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31, 122, 61, 0.12);
}

textarea.form-control { min-height: 150px; resize: vertical; }

.selected-product-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: var(--primary-50);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--primary-100);
}

.form-status {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
}

.form-status.success {
    color: var(--primary-dark);
    background: var(--success-bg);
    border: 1px solid var(--primary-100);
}

.form-status.error {
    color: var(--error);
    background: var(--error-bg);
    border: 1px solid #f5c6cb;
}

#contactForm button[type="submit"] { position: relative; overflow: hidden; }
#contactForm button[type="submit"]:active { transform: scale(0.98); }

/* ---------- Footer ---------- */
.footer {
    background:
        radial-gradient(circle at top left, rgba(31, 122, 61, 0.22), transparent 26%),
        radial-gradient(circle at bottom right, rgba(217, 138, 43, 0.1), transparent 30%),
        #0a2114;
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    color: #fff;
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.footer p,
.footer .btn.btn-link {
    color: rgba(255, 255, 255, 0.62);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0 0 4px;
    text-align: left;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.25s var(--ease);
}

.footer .btn.btn-link::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
    font-size: 11px;
    transition: transform 0.25s var(--ease);
}

.footer .btn.btn-link:hover {
    color: #fff;
    padding-left: 6px;
}

.footer .btn.btn-link:hover::before { transform: translateX(3px); }

.footer .btn-square {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s var(--ease);
}

.footer .btn-square:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.footer .copyright {
    padding: 24px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
}

.footer .copyright a { color: var(--light); }
.footer .copyright a:hover { color: var(--secondary); }

.footer-legal {
    line-height: 1.55;
}

.footer-vat {
    display: inline-block;
    margin-left: 31px;
    color: rgba(255, 255, 255, 0.72);
}

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    display: none;
    right: 26px;
    bottom: 26px;
    z-index: 99;
    box-shadow: var(--shadow-primary);
    transition: all 0.3s var(--ease);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(31, 122, 61, 0.4);
}

/* ---------- Sticky CTA (mobile) ---------- */
.sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1030;
    display: flex;
    gap: 10px;
}

.sticky-cta-link {
    flex: 1;
    padding: 14px 16px;
    border-radius: var(--radius-pill);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s var(--ease);
}

.sticky-cta-link:active { transform: scale(0.97); }

.sticky-cta-whatsapp {
    background: #fff;
    color: #1da851;
}

.sticky-cta-form {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-500) 100%);
    color: #fff;
}

.sticky-cta-link:hover { color: inherit; }

/* ---------- Modal ---------- */
.modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: #fff;
    padding: 26px 32px;
}

.modal-header .modal-title {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 26px;
    margin: 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.modal-header .btn-close:hover { opacity: 1; }

.modal-body { padding: 32px; }

.modal-product-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.modal-body h5 {
    color: var(--primary);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    margin-top: 22px;
    margin-bottom: 14px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 2px solid var(--primary-50);
    padding-bottom: 8px;
}

.modal-body ul { list-style: none; padding: 0; }

.modal-body ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--muted);
}

.modal-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
    font-size: 13px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: 50%;
}

.modal-footer {
    padding: 20px 32px;
    background: var(--light);
    border-top: 1px solid var(--border-soft);
}

/* ---------- Images & accessibility ---------- */
img { max-width: 100%; height: auto; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

html { scroll-behavior: smooth; }

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
    .announcement-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-grid { min-height: 0; }
    .hero-trust-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 500px; }
}

@media (max-width: 991.98px) {
    .announcement-bar { margin-top: 0; padding-top: 26px; }
    .hero-section { padding-top: 140px; }
    .stats-grid { grid-template-columns: 1fr; }
    .announcement-wrap { padding: 26px; }
    .hero-visual { min-height: 460px; }
    .hero-image-card {
        position: relative;
        top: 0;
        max-width: 100%;
    }
    .hero-image-card img { height: 440px; }
    .hero-floating-card-top,
    .hero-floating-card-bottom { position: absolute; }
    .navbar-brand img.large-logo { max-height: 50px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item-wide { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
    .hero-copy .display-2 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-section { padding: 128px 0 70px; }

    .service-card,
    .product-card,
    .contact-story-copy,
    .contact-form-card,
    .contact-side-card,
    .contact-benefits,
    .faq-card { border-radius: var(--radius-lg); }

    .contact-form-card,
    .contact-story-copy,
    .contact-side-card,
    .contact-benefits { padding: 22px; }

    .hero-visual { min-height: auto; }
    .hero-image-card img { height: 340px; }
    .hero-floating-card {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 14px;
    }
    .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item-wide { grid-column: auto; }
    .gallery-item,
    .gallery-item img { min-height: 330px; }
    .gallery-trust-note { align-items: flex-start; flex-wrap: wrap; }
    .gallery-trust-note .btn { width: 100%; }
    .modal-product-image { min-height: 250px; max-height: 330px; }
}

@media (max-width: 575.98px) {
    .hero-copy .display-2 { font-size: 1.9rem; }
    .announcement-actions,
    .announcement-actions .btn { width: 100%; }
    .hero-kicker {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .hero-trust-card { padding: 16px; }
    .mobile-lang-switcher { top: 12px; right: 12px; }
    .mobile-lang-btn { padding: 9px 14px; }
    .sticky-cta { bottom: 10px; left: 10px; right: 10px; }
    .display-5 { font-size: 1.7rem; }
}

/* ---------- Entrance animations (wow.js companions) ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.wow.fadeInUp { animation-name: fadeInUp; }

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

.hero-floating-card-top { animation: floaty 5s ease-in-out infinite; }
.hero-floating-card-bottom { animation: floaty 6s ease-in-out infinite 0.5s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
