:root {
    --brand: #78bb1b;
    --brand-dark: #345A00;
    --brand-soft: #e9f5d8;
    --brand-muted: #d4ecc0;
    --muted: #6c757d;
    --text: #1a1a1a;
    --text-secondary: #444;

    --bg: #f8fbf6;
    --bg-elev: #ffffff;
    --bg-soft: #f3f8ef;
    --accent: #e6f7d8;

    --max-width: 1200px;
    --radius: 10px;
    --easing: cubic-bezier(.2, .9, .2, 1);
    --glass: rgba(255, 255, 255, 0.06);

    --section-pad: 48px;
    --section-gap: 32px;
    --header-height: 80px;

    --font-ui: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-head: "Poppins", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --type-scale-ratio: 1.2;

    --logo-mobile-height: 48px;
    --logo-desktop-height: 56px;
    --logo-tablet-height: 48px;
    --header-mobile-padding: 8px;
}

/* ---------------- Page-level basics ---------------- */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    padding-top: var(--header-height);
}

/* ---------------- Headings & containers ---------------- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-head), serif;
    color: var(--brand-dark);
    margin: 0 0 12px 0;
    line-height: 1.18;
}

h1 {
    font-size: 2.6rem;
    margin-top: 6px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 1.6rem;
    margin-top: 18px;
    font-weight: 700;
    line-height: 1.18;
}

h3 {
    font-size: 1.1rem;
    margin-top: 14px;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    margin-top: 12px;
}

strong {
    font-weight: 700;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: var(--section-pad) 0;
}

.lead {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

section+section,
.section+.section {
    margin-top: var(--section-gap);
}

/* ---------------- Header ---------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 9000;
    background: #fff;
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
    transition: background .22s var(--easing), box-shadow .22s var(--easing);
    -webkit-font-smoothing: antialiased;
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    box-sizing: border-box;
    height: 100%;
}

/* logo area */
.logo-with-tagline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-right: 28px;
}

.site-logo {
    height: var(--logo-desktop-height);
    display: block;
    transition: transform .18s var(--easing);
}

.site-logo:hover {
    transform: scale(1.03);
}

.tagline {
    font-family: var(--font-ui), serif;
    font-size: 0.92rem;
    color: var(--brand-dark);
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

/* Hamburger button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    padding: 0;
    z-index: 9999;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    position: absolute;
    left: 6px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger span:nth-child(1) { top: 8px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
}

/* ---------------- Navigation ---------------- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 200;
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 8px;
    border: 1.5px solid transparent;
    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
    -webkit-tap-highlight-color: transparent;
    white-space: nowrap;
}

.main-nav a:hover {
    background: rgba(120, 187, 27, 0.06);
    color: var(--brand-dark);
    border-color: rgba(120, 187, 27, 0.15);
}

.main-nav a.active {
    color: var(--brand-dark);
    background: rgba(120, 187, 27, 0.08);
    border-color: rgba(120, 187, 27, 0.35);
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(120, 187, 27, 0.08);
}

/* Remove the underline pseudo-element — use border instead */
.main-nav a::after {
    display: none;
}

.main-nav a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(120, 187, 27, 0.15);
}

@media (max-width:1080px) {
    .tagline {
        display: none;
    }
}

@media (max-width:880px) {
    .hamburger {
        display: block;
    }

    .site-logo {
        height: var(--logo-tablet-height);
    }

    .header-inner {
        padding: 0 16px;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 4px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9500;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    }

    .main-nav.nav-open {
        transform: translateX(0);
    }

    .main-nav a {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 10px;
        max-width: none;
    }

    .nav-dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-dropdown-row {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .nav-dropdown-row .nav-dropdown-toggle {
        flex: 1;
    }

    /* Hide desktop chevron pseudo-element on mobile */
    .nav-dropdown-toggle::after {
        display: none;
    }

    /* Show the expand button on mobile */
    .nav-expand-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        border-radius: 8px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-expand-btn:active {
        background: rgba(120, 187, 27, 0.08);
    }

    .nav-expand-btn i {
        font-size: 0.75rem;
        color: var(--text-secondary);
    }

    .nav-dropdown.mobile-sub-open .nav-expand-btn i {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        min-width: unset;
        border-radius: 0;
        /* Reset desktop animation styles */
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        transition: none;
    }

    .nav-dropdown-menu a {
        padding: 12px 16px 12px 32px;
        font-size: 0.95rem;
        color: var(--text-secondary);
        border-left: 2px solid var(--brand-muted);
        border-top: none;
        border-right: none;
        border-bottom: none;
        margin-left: 16px;
        border-radius: 0;
        white-space: normal;
    }

    .nav-dropdown-menu a:hover,
    .nav-dropdown-menu a:active {
        background: rgba(120, 187, 27, 0.06);
        color: var(--brand-dark);
        border-left-color: var(--brand);
    }

    .btn-nav-cta {
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    :root {
        --header-height: 64px;
    }

    body {
        padding-top: var(--header-height);
    }
}

/* ---------------- Slider  ---------------- */
.hero {
    padding: 0;
    margin-bottom: 12px;
}

.hero .slider {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(.78) contrast(1.04);
    transition: transform 12s linear, filter .4s ease;
}

.slide.active img {
    transform: scale(1.035);
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.48) 35%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 0;
}

.slide .overlay {
    position: absolute;
    left: 6%;
    top: calc(28% + 6px);
    z-index: 1;
    color: #fff;
    max-width: 600px;
    padding: 6px 0;
    transform: translateY(6px);
    opacity: 0;
    animation: fadeUp .6s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide .overlay h1,
.slide .overlay p {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.slide .overlay p {
    font-size: 1.1rem;
    line-height: 1.65;
    font-weight: 500;
    max-width: 540px;
}

/* === CTA Button === */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background: var(--brand);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(120, 187, 27, 0.2);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    opacity: 0;
    transform: translateY(6px);
    animation: ctaIn 0.55s 0.48s both cubic-bezier(0.2, 0.9, 0.25, 1);
}

@keyframes ctaIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-cta:hover,
.btn-cta:focus {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 6px 24px rgba(52, 90, 0, 0.25);
    transform: translateY(-2px);
    outline: none;
}

.btn-cta:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(52, 90, 0, 0.2);
}

.btn-cta:focus-visible {
    box-shadow: 0 0 0 4px rgba(120, 187, 27, 0.2),
        0 12px 36px rgba(52, 90, 0, 0.15);
}

.btn-cta .cta-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    fill: currentColor;
    opacity: 0.95;
    transform: translateX(0);
    transition: transform 0.18s var(--easing);
}

.btn-cta:hover .cta-icon {
    transform: translateX(4px);
}

/* dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    margin: 2px;
    transition: transform .18s, background .18s;
}

.dots button.on {
    background: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* ---------------- Sections & cards ---------------- */
.section--muted {
    background: var(--bg-soft);
    padding: var(--section-pad) 0;
}

.section--white {
    background: #fff;
    padding: var(--section-pad) 0;
    box-shadow: none;
    border-radius: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.product-card {
    background: var(--bg-elev);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform .18s var(--easing), box-shadow .18s var(--easing);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.product-card img {
    border-radius: 8px;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .85rem;
}

.product-tag:hover {
    background: var(--brand-dark);
}

/* ---------------- Contact ---------------- */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
    padding: 36px 0 56px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-form h2 {
    margin-bottom: 14px;
}

#google-form {
    border: none;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
    line-height: 1.55;
}

.contact-info-list li i,
.contact-list li i {
    font-size: 14px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--brand);
    box-shadow: none;
    margin-top: 2px;
}

.contact-info-list li div {
    min-width: 0;
}

.contact-info-list li strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-info-list li p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text);
    word-break: break-word;
}

.contact-info-list li a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-list li a:hover {
    text-decoration: underline;
}

.contact-info .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.contact-info .social-icons a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--brand-dark);
    transition: all .18s var(--easing);
}

.contact-info .social-icons a:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-4px);
}

/* ---------------- Reviews ---------------- */
.reviews {
    padding-top: 36px;
    padding-bottom: 56px;
    background: var(--bg-soft);
    border-top: 1px solid rgba(16, 24, 40, 0.02);
    border-bottom: 1px solid rgba(16, 24, 40, 0.02);
}

.reviews h3 {
    font-size: 1.6rem;
    text-align: center;
    margin: 0 0 28px 0;
    color: var(--brand-dark);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.review-card {
    background: var(--bg-elev);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    padding: 32px 30px;
    transition: transform .25s var(--easing), box-shadow .25s var(--easing);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

.review-text {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 20px;
    position: relative;
    padding-top: 10px;
}

.review-text::before {
    content: open-quote;
    color: var(--brand);
    font-size: 2.4rem;
    line-height: 1;
    position: absolute;
    left: -6px;
    top: -10px;
    opacity: 0.95;
}

.review-text::after {
    content: close-quote;
    color: var(--brand);
    font-size: 2.2rem;
    vertical-align: text-top;
    opacity: 0.9;
    margin-left: 2px;
}

.review-author {
    border-top: 1px solid rgba(16, 24, 40, 0.05);
    padding-top: 12px;
}

.review-author h4 {
    margin: 0;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1rem;
}

.review-author p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ---------------- Footer ---------------- */
.site-footer {
    background: var(--brand-dark);
    color: #fff;
    padding: 56px 0 28px;
    margin-top: 48px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 180px 280px 200px;
    gap: 36px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
}

.site-footer h4 {
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
}

.contact-list li i {
    font-size: 18px;
    width: 28px;
    text-align: center;
    opacity: 0.95;
}

.footer-social .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social .social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    transition: transform .16s ease, background .16s ease;
}

.footer-social .social-icons a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

/* ---------------- Utilities & accessibility ---------------- */
img {
    display: block;
    max-width: 100%;
}

a:focus,
button:focus {
    outline: 3px solid rgba(120, 187, 27, 0.18);
    outline-offset: 3px;
}

a {
    transition: color .16s ease, opacity .16s ease;
}

button,
.btn,
.btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover,
.btn:hover,
.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
}

/* ---------------- Responsive tweaks ---------------- */
@media (max-width:980px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-list li {
        align-items: flex-start;
    }

    .contact-info-list li i {
        display: flex;
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .footer-social .social-icons a,
    .contact-info .social-icons a {
        width: 36px;
        height: 36px;
    }

    .hero .slider {
        height: 360px;
    }

    .slide img,
    .slide.active img {
        height: 360px;
    }

    .slide .overlay {
        top: 20%;
        left: 5%;
    }

    .slide .overlay h1 {
        font-size: 1.6rem;
    }

    .slide .overlay p {
        font-size: 0.95rem;
        max-width: 360px;
    }

    .product-card {
        padding: 14px;
    }

    .about-grid {
        display: flex !important;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .about-content {
        order: 0;
    }

    .about-content .lead {
        max-width: 100%;
    }

    .about-visual {
        order: 1;
        align-items: center;
    }

    .about-visual .visual-frame,
    .visual-grid {
        width: 100%;
        max-width: 100%;
    }

    .visual-grid img {
        height: 160px;
        object-fit: cover;
    }

    .why-list li {
        padding: 12px;
    }

    /* === About Hero Section === */
    .about-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-hero .lead {
        max-width: 100%;
    }

    .about-stats {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }

    .stat {
        text-align: left;
    }

    /* === Explore Page === */
    .explore-hero .intro {
        max-width: 100%;
    }

    .explore-hero-image img {
        height: 260px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-bullets {
        gap: 8px;
    }

    /* === Slider (Hero Section) === */
    .slide .overlay {
        top: 8% !important;
        left: 5% !important;
        right: 5% !important;
        max-width: calc(100% - 32px) !important;
        padding-bottom: 12px !important;
        z-index: 5 !important;
    }

    .slide .overlay h1,
    .slide .overlay .overlay-title {
        font-size: 1.35rem !important;
        line-height: 1.15 !important;
        margin-bottom: 6px !important;
    }

    .slide .overlay p,
    .slide .overlay .overlay-sub {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide .overlay .btn-cta,
    .btn-cta {
        position: relative !important;
        z-index: 6 !important;
        opacity: 1 !important;
        padding: 9px 16px !important;
        font-size: 0.88rem !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 14px rgba(52, 90, 0, 0.15) !important;
        animation: none !important;
        transform: none !important;
    }

    .dots {
        bottom: 8px !important;
    }

    .hero .slider {
        height: 340px !important;
    }

    .slide img,
    .slide.active img {
        height: 340px !important;
    }

    .site-contact-form {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 12px;
    }

    .card-info {
        order: 1;
    }

    .card-form {
        order: 0;
    }
}

@media (max-width:520px) {
    :root {
        --section-pad: 32px;
        --header-height: 58px;
    }

    .site-logo {
        height: var(--logo-mobile-height);
    }

    .header-inner {
        padding: 0 12px;
    }

    body {
        padding-top: var(--header-height);
    }

    .hero .slider {
        height: 300px !important;
    }

    .slide img,
    .slide.active img {
        height: 300px !important;
    }

    .slide .overlay {
        top: 6% !important;
        padding: 0 4px !important;
    }

    .slide .overlay h1,
    .slide .overlay .overlay-title {
        font-size: 1.15rem !important;
        margin-bottom: 4px !important;
    }

    .slide .overlay p,
    .slide .overlay .overlay-sub {
        font-size: 0.82rem !important;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        margin-bottom: 8px !important;
    }

    .site-footer {
        padding: 32px 0 20px;
    }

    .about-page {
        padding: 36px 0;
    }

    .about-grid {
        padding: 0 12px;
        gap: 18px;
    }

    .why-list li i {
        width: 36px;
        height: 36px;
    }

    .cert {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .main-nav {
        gap: 4px;
    }

    .explore-hero-image img {
        height: 220px;
    }

    h1 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .feature-bullets li {
        font-size: 0.92rem;
        padding: 8px 10px;
    }
}

.social-icons a,
.footer-social .social-icons a,
.contact-info .social-icons a {
    text-decoration: none !important;
}

.slide .overlay {
    left: 6%;
    top: 26%;
    max-width: 680px;
    padding: 6px 12px 12px 6px;
    transform: translateY(8px);
    opacity: 0;
    animation: overlayIn .7s .12s both cubic-bezier(.2, .9, .25, 1);
}

.overlay-kicker {
    display: inline-block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .85);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.overlay-title {
    font-size: 2.6rem;
    line-height: 1.03;
    margin: 0 0 12px 0;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    display: block;
}

.overlay-title .accent {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.overlay-underline {
    width: 56px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.65));
    margin: 8px 0 18px 0;
    transform-origin: left center;
    transform: scaleX(0);
    opacity: .95;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
    animation: underlineIn .6s .24s both cubic-bezier(.2, .9, .25, 1);
}

.overlay-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.02rem;
    margin: 0 0 18px 0;
    line-height: 1.45;
    max-width: 560px;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

@keyframes overlayIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.slide .overlay::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 30% 30%, rgba(120, 187, 27, 0.08), rgba(120, 187, 27, 0.02) 40%, transparent 60%);
    filter: blur(14px);
    z-index: -1;
    pointer-events: none;
    opacity: .95;
}

/* =================== Premium About Page Styles =================== */

.about-page {
    color: #222;
    background: linear-gradient(180deg, rgba(248, 251, 246, 1) 0%, rgba(245, 249, 243, 1) 100%);
}

.about-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.about-content .lead {
    font-size: 1.06rem;
    color: var(--muted);
    margin-bottom: 18px;
    max-width: 86%;
}

/* Paragraphs */
.about-content p {
    color: #2b2b2b;
    font-size: 1.03rem;
    line-height: 1.78;
    margin-bottom: 16px;
    text-wrap: balance;
}

/* Emphasize certifications inline */
.about-content strong {
    color: #111;
    font-weight: 700;
}

/* WHY list: premium card-like items with left accent */
.why-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 6px 0;
    display: grid;
    gap: 12px;
}

.why-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(252, 255, 249, 0.98));
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.03);
    transition: transform .18s var(--easing), box-shadow .18s var(--easing);
}

/* subtle lift on hover */
.why-list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
}

/* check icon style */
.why-list li i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand) 0%, color-mix(in srgb, var(--brand), black 6%) 100%);
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

/* why-list text */
.why-list li span {
    display: block;
    font-weight: 600;
    color: #222;
    font-size: 1rem;
    line-height: 1.4;
}

/* Closing paragraph / CTA line */
.about-content .closing {
    margin-top: 16px;
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1.02rem;
}

/* Certification badges — refined pill badges */
.cert-list {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-weight: 700;
    color: var(--brand-dark);
    background: rgba(120, 187, 27, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(120, 187, 27, 0.08);
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.02);
}

/* Right column: image visual */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

/* image container with subtle frame */
.about-visual .visual-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 255, 247, 0.98));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 22px 48px rgba(16, 24, 40, 0.06);
    transform-origin: center;
    transition: transform .24s var(--easing), box-shadow .24s var(--easing);
}

/* image styling */
.about-visual img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* hover interaction on image frame */
.about-visual .visual-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 32px 64px rgba(16, 24, 40, 0.08);
}

/* figure caption */
.about-visual .vis-caption {
    color: var(--muted);
    font-size: 0.92rem;
    text-align: center;
    max-width: 420px;
}

/* subtle decorative divider between content & visual on wide screens */
@media (min-width: 1300px) {
    .about-grid {
        grid-template-columns: 1fr 420px;
    }

    .about-content {
        padding-right: 8px;
    }
}

/* =================== micro-utilities (for polish) =================== */
.u-small {
    font-size: 0.92rem;
    color: var(--muted);
}

.u-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--muted);
}

@media (prefers-contrast: more) {
    .why-list li {
        box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
        border-color: rgba(16, 24, 40, 0.06);
    }
}

/* ===== About page: breadcrumb + hero + quick-links ===== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    color: rgba(0, 0, 0, 0.45);
}

/* hero inner split: intro + small stats */
.about-hero {
    padding: 24px 0 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(248, 251, 246, 0.02));
}

.about-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero .lead {
    max-width: 72%;
}

/* CTAs in hero */
.about-hero-ctas {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-dark);
    color: #fff;
}

.btn-primary:active {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(0) scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(52, 90, 0, 0.08);
    color: var(--brand-dark);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

.btn-outline:active {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
    transform: translateY(0) scale(0.98);
}

/* small stats block */
.about-stats {
    display: flex;
    gap: 18px;
    align-items: center;
}

.stat {
    text-align: right;
    min-width: 120px;
}

.stat-value {
    font-weight: 800;
    color: var(--brand-dark);
    font-size: 1.05rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Quick links grid (cards) */
.quick-links {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.ql-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
    text-decoration: none;
    color: #222;
    transition: transform .18s var(--easing), box-shadow .18s var(--easing), background .18s var(--easing);
}

.ql-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(16, 24, 40, 0.06);
}

.ql-icon {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand), black 8%));
    color: #fff;
    box-shadow: 0 8px 20px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

.ql-body strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.ql-body small {
    color: var(--muted);
    font-size: 0.92rem;
}

/* micro CTA area on card */
.ql-cta {
    margin-left: auto;
    font-weight: 700;
    color: var(--brand-dark);
}

/* === About visual gallery (4 images + single caption) === */
.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 500px;
}

.visual-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

/* subtle hover lift effect */
.visual-grid img:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.08);
}

/* caption under all images */
.about-visual .vis-caption {
    font-size: 0.95rem;
    color: var(--muted);
    text-align: center;
    max-width: 560px;
    line-height: 1.5;
}

/* responsive behavior */
@media (max-width: 700px) {
    .visual-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .visual-grid img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 48px;
    }

    .visual-grid {
        grid-template-columns: 1fr;
    }

    .visual-grid img {
        height: 200px;
    }

    .site-header {
        height: auto;
        min-height: calc(var(--logo-mobile-height) + var(--header-mobile-padding) * 2);
        box-sizing: border-box;
    }

    /* padding top of body should be equal to site header height */
    body {
        padding-top: var(--header-height);
    }

    .header-inner {
        padding: var(--header-mobile-padding) 8px !important;
        align-items: center;
        gap: 12px;
    }

    .site-logo {
        height: var(--logo-mobile-height) !important;
        max-height: var(--logo-mobile-height) !important;
        width: auto !important;
        object-fit: contain;
        display: block;
    }

    .main-nav a {
        padding: 12px 14px !important;
        white-space: nowrap;
    }

    .dots button {
        width: 4px;
        height: auto;
    }
}

/* =========== Refactored Explore styles — sleek & compact =========== */
.explore-page {
    padding: 36px 0 64px;
    color: #222;
}

/* hero */
.explore-hero .lead {
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 1.02rem;
}

.explore-hero .intro {
    margin-bottom: 18px;
    color: #333;
    max-width: 72%;
}

/* inline hero image (single image, centered, elegant) */
.explore-hero-image {
    margin-top: 14px;
    display: block;
    max-width: 820px;
    margin-left: 0;
    /* will center via container */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.035);
}

.explore-hero-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.explore-hero-image .vis-caption {
    font-size: 0.95rem;
    color: var(--muted);
    padding: 12px 8px;
    text-align: center;
}

/* single-column content layout (no right column) */
.explore-content {
    max-width: var(--max-width);
    margin: 22px auto 0;
    padding: 0 20px;
}

/* bullets row (compact chips) */
.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-bullets li {
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.03);
    border: 1px solid rgba(16, 24, 40, 0.025);
    font-size: 0.95rem;
}

/* benefits grid — compact cards */
.subhead {
    margin-top: 8px;
    font-size: 1.08rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 6px;
}

.benefit {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, var(--bg-elev), rgba(250, 255, 247, 0.98));
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.03);
    border: 1px solid rgba(16, 24, 40, 0.03);
    transition: transform .16s var(--easing), box-shadow .16s var(--easing);
}

.benefit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.06);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brand), color-mix(in srgb, var(--brand), black 8%));
    color: #fff;
    font-size: 0.95rem;
    box-shadow: 0 8px 22px rgba(120, 187, 27, 0.12);
    flex-shrink: 0;
}

.benefit-body h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.benefit-body p {
    margin: 0;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* sourced line */
.sourced {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.95rem;
}

/* did-you-know */
.did-you-know {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(246, 251, 245, 1), rgba(250, 255, 247, 1));
    border: 1px solid rgba(16, 24, 40, 0.03);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.03);
}

.did-you-know h3 {
    margin: 0 0 6px 0;
    color: var(--brand-dark);
}

/* nutrition table */
.nutrition {
    margin-top: 18px;
}

.nutrition h3 {
    margin-bottom: 6px;
    color: var(--brand-dark);
}

.u-small {
    font-size: 0.92rem;
    color: var(--muted);
}

.nutrient-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    max-width: 560px;
    background: transparent;
}

.nutrient-table thead th {
    text-align: left;
    font-weight: 700;
    padding: 8px;
    color: #333;
}

.nutrient-table tbody tr {
    border-top: 1px solid rgba(16, 24, 40, 0.03);
    transition: background .18s var(--easing);
    outline: none;
}

.nutrient-table tbody tr:hover,
.nutrient-table tbody tr:focus,
.nutrient-table tbody tr:focus-within {
    background: rgba(120, 187, 27, 0.03);
}

.nutrient-table .nt-value {
    padding: 10px 8px;
    color: transparent;
    transition: color .22s ease, transform .18s var(--easing);
}

.nutrient-table tbody tr:hover .nt-value,
.nutrient-table tbody tr:focus .nt-value {
    color: #222;
    transform: translateX(0);
}

/* Card base */
.card {
    background: var(--bg-elev);
    border-radius: 14px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 24, 40, 0.04);
    overflow: visible;
}

/* Inner padding so we can keep consistent spacing */
.card-inner {
    padding: 28px 24px;
}

/* Layout adjustments: left form wider on desktop, stack on mobile */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 26px;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Form card specifics */
.card-form .lead {
    margin-top: 6px;
    margin-bottom: 14px;
    color: var(--muted);
}

.site-contact-form {
    max-width: 100%;
}

.site-contact-form .form-row {
    margin-bottom: 14px;
    display: block;
}

.site-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--brand-dark);
}

.site-contact-form input[type="text"],
.site-contact-form input[type="email"],
.site-contact-form input[type="tel"],
.site-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.06);
    box-sizing: border-box;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
}

/* Form actions */
.form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.form-status {
    color: var(--muted);
    font-size: 0.95rem;
}

/* success box */
.thankyou-message {
    background: linear-gradient(180deg, rgba(248, 251, 246, 1), rgba(250, 255, 247, 1));
    padding: 16px;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.04);
    margin-top: 14px;
}

/* card-inner already contains padding */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.contact-info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    line-height: 1.55;
}

.contact-info-list li i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--brand);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* contact social icons inside the card */
.contact-social {
    margin-top: 16px;
}

.contact-social .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.contact-social .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-soft);
    color: var(--brand-dark);
    text-decoration: none;
    transition: all .16s var(--easing);
}

.contact-social .social-icons a:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* === Global Typography Enhancements === */
h1,
h2,
h3,
h4 {
    letter-spacing: 0.4px;
}

.tagline,
.overlay-kicker,
.nav a,
.btn,
.site-footer h4 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a {
    letter-spacing: 0.8px;
}

body,
p,
li {
    letter-spacing: 0.2px;
}


/* Ensure child elements don't accidentally expand or overflow */
.hero .slider *,
.hero .slide {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box;
}

/* Make sure the images fit perfectly without causing overflow */
.hero .slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* =================== Navigation Dropdown =================== */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-row {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Desktop: expand button hidden, chevron shown inline after link */
.nav-expand-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-expand-btn i {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
    color: var(--text-secondary);
}

/* Desktop dropdown — hidden by default, shown on hover with CSS */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.06);
    padding: 8px 0;
    z-index: 9500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

/* Show dropdown on hover (desktop only — CSS takes priority) */
.nav-dropdown:hover > .nav-dropdown-menu,
.nav-dropdown:hover > div > .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block !important; /* override ng-hide */
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.15s ease, color 0.15s ease;
    margin: 0;
    border-radius: 0;
    white-space: nowrap;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
}

.nav-dropdown-menu a:hover {
    background: rgba(120, 187, 27, 0.08);
    color: var(--brand-dark);
}

.nav-dropdown-menu a::after {
    display: none;
}

/* Desktop: show chevron after Products link text */
.nav-dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.55rem;
    margin-left: 5px;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Nav CTA Button */
.btn-nav-cta {
    background: var(--brand) !important;
    color: #fff !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(120, 187, 27, 0.2);
}

.btn-nav-cta:hover,
.btn-nav-cta:focus {
    background: var(--brand-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(52, 90, 0, 0.25);
}

.btn-nav-cta:active {
    background: var(--brand-dark) !important;
    color: #fff !important;
    transform: translateY(0);
}

.btn-nav-cta::after {
    display: none !important;
}

/* =================== About Brief Section =================== */
.about-brief {
    padding: 56px 0;
    background: var(--bg-soft);
    text-align: center;
}

.about-brief h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--brand-dark);
}

.about-brief p {
    max-width: 860px;
    margin: 0 auto 24px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.05rem;
}

.about-brief-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =================== Section Titles =================== */
.section-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--brand-dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 1.02rem;
}

/* =================== Product Categories Grid =================== */
.product-categories-section {
    padding: 48px 0;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(120, 187, 27, 0.15);
    margin-bottom: 12px;
}

.product-grid-large {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* =================== Trust Section =================== */
.trust-section,
.trust-section-inner {
    padding: 56px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.trust-card {
    background: var(--bg-elev);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.18s var(--easing), box-shadow 0.18s var(--easing);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 4px 12px rgba(120, 187, 27, 0.15);
    margin-bottom: 14px;
}

.trust-card h4 {
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* =================== Global Footprint =================== */
.global-footprint-section {
    padding: 48px 0;
    text-align: center;
}

.flags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    padding: 12px 8px;
    border-radius: 10px;
    background: var(--bg-elev);
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.03);
    border: 1px solid rgba(16, 24, 40, 0.03);
    transition: transform 0.18s var(--easing);
}

.flag-item:hover {
    transform: translateY(-4px);
}

.flag-emoji {
    font-size: 2rem;
    line-height: 1;
}

.flag-item span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* =================== Export & Logistics =================== */
.export-logistics-section {
    padding: 48px 0;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.export-card {
    background: var(--bg-elev);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
}

.export-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--brand-dark);
}

.export-card h4 i {
    color: var(--brand);
}

.export-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(16, 24, 40, 0.03);
}

.export-card ul li:last-child {
    border-bottom: none;
}

/* =================== Technical Spec Image =================== */
.tech-spec-image {
    margin: 24px 0 32px;
    text-align: center;
}

.tech-spec-image img {
    max-width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.06);
}

.tech-spec-caption {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
}

/* =================== CTA Section =================== */
.cta-section {
    padding: 48px 0;
    text-align: center;
}

.cta-inner {
    background: linear-gradient(135deg, var(--brand-soft) 0%, var(--brand-muted) 100%);
    padding: 56px 40px;
    border-radius: 18px;
    border: 1px solid rgba(120, 187, 27, 0.15);
}

.cta-inner h2 {
    color: var(--brand-dark) !important;
    margin-bottom: 14px;
    font-size: 1.7rem;
    font-weight: 700;
}

.cta-inner p {
    color: var(--text) !important;
    margin-bottom: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.cta-inner .btn-primary {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(120, 187, 27, 0.2);
    border: none;
}

.cta-inner .btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 90, 0, 0.25);
}

.cta-inner .btn-outline {
    border: 2px solid var(--brand-dark);
    color: var(--brand-dark);
    background: transparent;
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.cta-inner .btn-outline:hover {
    background: var(--brand-dark);
    color: #fff;
    border-color: var(--brand-dark);
}

/* =================== Product Pages =================== */
.product-page {
    padding: 36px 0 56px;
}

.product-page h1 {
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.2;
}

.product-page h2 {
    margin-top: 36px;
    margin-bottom: 14px;
}

.product-page p {
    line-height: 1.75;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

/* Prevent page-level p styles from overriding CTA text */
.cta-inner h2 { color: var(--brand-dark) !important; }
.cta-inner p { color: var(--text) !important; }

/* Feature list */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 18px 0;
}

.feature-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.03);
    line-height: 1.6;
}

.feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 0.85rem;
}

.feature-list li a {
    color: var(--brand-dark);
    text-decoration: none;
    font-weight: 600;
}

.feature-list li a:hover {
    text-decoration: underline;
}

/* Spec tables */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto 32px auto;
    max-width: 900px;
    background: var(--bg-elev);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.06), 0 1px 4px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.spec-table thead th {
    background: var(--brand-dark);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.spec-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.04);
    font-size: 0.95rem;
    color: #333;
    vertical-align: middle;
}

.spec-table tbody tr:nth-child(even) {
    background: rgba(120, 187, 27, 0.02);
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

.spec-table tbody tr:hover {
    background: rgba(120, 187, 27, 0.05);
}

.spec-table tbody td:first-child {
    font-weight: 600;
    color: var(--text);
}

/* Nutrient table (explore page) — same treatment */
.nutrient-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto 32px auto;
    max-width: 700px;
    background: var(--bg-elev);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.06), 0 1px 4px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.06);
}

.nutrient-table thead th {
    background: var(--brand-dark);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.nutrient-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.04);
    font-size: 0.95rem;
    color: #333;
}

.nutrient-table tbody tr:nth-child(even) {
    background: rgba(120, 187, 27, 0.02);
}

.nutrient-table tbody tr:last-child td {
    border-bottom: none;
}

.nutrient-table tbody tr:hover {
    background: rgba(120, 187, 27, 0.05);
}

/* Two column grid */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 18px 0;
}

/* Variety grid */
.variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.variety-card {
    background: var(--bg-elev);
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.03);
}

.variety-card h4 {
    margin: 0;
    color: var(--brand-dark);
}

/* =================== Mission & Vision =================== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0;
}

.mv-card {
    background: var(--bg-soft);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.04);
}

.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.mv-card h3 i {
    color: var(--brand);
}

/* =================== Directors Section =================== */
.directors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 20px 0;
}

.director-card {
    background: var(--bg-elev);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.03);
}

.director-header {
    margin-bottom: 16px;
    border-bottom: 2px solid var(--brand);
    padding-bottom: 12px;
}

.director-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.2rem;
}

.director-title {
    color: var(--brand-dark);
    font-weight: 600;
    margin: 0 0 2px 0;
    font-size: 0.95rem;
}

.director-qual {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.director-points {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
    border-top: 1px solid rgba(16, 24, 40, 0.04);
    padding-top: 14px;
}

.director-points li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 0.95rem;
    color: #333;
}

.director-points li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--brand);
    font-size: 0.7rem;
    top: 10px;
}

/* =================== Certifications Page =================== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 20px 0;
}

.cert-card {
    background: var(--bg-elev);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.18s var(--easing);
}

.cert-card:hover {
    transform: translateY(-4px);
}

.cert-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--brand);
    color: #fff;
    margin-bottom: 14px;
}

/* =================== Blog Page =================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px auto;
    max-width: 900px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.18s var(--easing);
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.blog-card p {
    margin-bottom: 16px;
    flex: 1;
}

.blog-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* =================== Quote Page =================== */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
    margin-top: 24px;
}

/* =================== Footer Updates =================== */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.15s ease;
}

.footer-link-list li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* =================== Responsive for New Sections =================== */
@media (max-width: 980px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .export-grid {
        grid-template-columns: 1fr;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .quote-grid {
        grid-template-columns: 1fr;
    }

    .quote-grid .card-info {
        order: 1;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .nav-dropdown-menu {
        position: static;
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .flags-grid {
        gap: 8px;
    }

    .flag-item {
        min-width: 80px;
        padding: 8px 4px;
    }

    .flag-emoji {
        font-size: 1.5rem;
    }

    .product-page h1 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .cta-inner {
        padding: 28px 18px;
    }

    .about-brief h2 {
        font-size: 1.3rem;
    }

    .spec-table {
        font-size: 0.85rem;
        border-radius: 10px;
        margin: 16px auto 24px auto;
    }

    .spec-table thead th,
    .spec-table tbody td {
        padding: 10px 12px;
    }

    .nutrient-table {
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .nutrient-table thead th,
    .nutrient-table tbody td {
        padding: 10px 12px;
    }

    .blog-card h3 {
        font-size: 1rem;
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile nav adjustments */
    .nav-dropdown-menu {
        min-width: unset;
        right: auto;
        left: auto;
    }

    .btn-nav-cta {
        padding: 8px 12px !important;
        font-size: 0.85rem !important;
    }
}

/* ============================================================
   CREATIVE REVAMP — Ambika-Inspired Premium Design
   ============================================================ */

/* --- Section Kicker Label --- */
.section-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand);
    margin-bottom: 10px;
    text-align: center;
}

/* --- Stats Counter Bar --- */
.stats-bar {
    background: linear-gradient(135deg, var(--brand-dark) 0%, #2a4d00 100%);
    padding: 40px 0;
    margin-top: -4px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    display: block;
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item .stat-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* --- About Brief Enhanced --- */
.about-brief {
    padding: 64px 0;
    background: #fff;
    text-align: center;
}

.about-brief h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--brand-dark);
}

.about-brief-divider {
    width: 60px;
    height: 3px;
    background: var(--brand);
    margin: 16px auto 24px;
    border-radius: 2px;
}

.about-brief-lead {
    max-width: 780px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.about-brief-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* --- Mission / Vision / Values Section --- */
.mvv-section {
    padding: 72px 0;
    background: var(--bg-soft);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1060px;
    margin: 0 auto;
}

.mvv-card {
    text-align: center;
    padding: 44px 30px 38px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.25s var(--easing), box-shadow 0.25s var(--easing);
    position: relative;
    overflow: hidden;
}

.mvv-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.mvv-card:hover::after {
    transform: scaleX(1);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(16, 24, 40, 0.1);
}

.mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(120, 187, 27, 0.25);
    margin-bottom: 22px;
}

.mvv-card h3 {
    font-size: 1.2rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.mvv-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.72;
    margin: 0;
}

/* --- Enhanced Product Cards --- */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card-icon {
    transition: transform 0.3s var(--easing);
}

.product-card:hover .product-card-icon {
    transform: scale(1.1) rotate(-3deg);
}

/* --- Enhanced Trust Cards --- */
.trust-card {
    position: relative;
    overflow: hidden;
}

.trust-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.trust-card:hover::after {
    transform: scaleY(1);
}

.trust-icon {
    transition: transform 0.3s var(--easing);
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
}

/* --- Enhanced Export Cards --- */
.export-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.export-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.export-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.export-card:hover::before {
    transform: scaleX(1);
}

/* --- Enhanced Flag Items --- */
.flag-item {
    transition: transform 0.18s var(--easing), box-shadow 0.18s var(--easing);
}

.flag-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
}

/* --- Scroll Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* Stagger delays scoped to grid/list containers only */
.trust-grid .reveal:nth-child(2),
.trust-grid-2x2 .reveal:nth-child(2),
.product-grid .reveal:nth-child(2),
.cert-grid .reveal:nth-child(2),
.cert-grid-2x3 .reveal:nth-child(2),
.export-grid .reveal:nth-child(2),
.flags-grid .reveal:nth-child(2),
.variety-grid .reveal:nth-child(2),
.mvv-grid .reveal:nth-child(2),
.blog-grid .reveal:nth-child(2),
.benefits-grid .reveal:nth-child(2) { transition-delay: 0.08s; }

.trust-grid .reveal:nth-child(3),
.trust-grid-2x2 .reveal:nth-child(3),
.product-grid .reveal:nth-child(3),
.cert-grid .reveal:nth-child(3),
.cert-grid-2x3 .reveal:nth-child(3),
.export-grid .reveal:nth-child(3),
.flags-grid .reveal:nth-child(3),
.variety-grid .reveal:nth-child(3),
.mvv-grid .reveal:nth-child(3),
.blog-grid .reveal:nth-child(3),
.benefits-grid .reveal:nth-child(3) { transition-delay: 0.14s; }

.trust-grid .reveal:nth-child(4),
.trust-grid-2x2 .reveal:nth-child(4),
.product-grid .reveal:nth-child(4),
.cert-grid .reveal:nth-child(4),
.cert-grid-2x3 .reveal:nth-child(4),
.export-grid .reveal:nth-child(4),
.flags-grid .reveal:nth-child(4),
.variety-grid .reveal:nth-child(4),
.mvv-grid .reveal:nth-child(4),
.blog-grid .reveal:nth-child(4),
.benefits-grid .reveal:nth-child(4) { transition-delay: 0.20s; }

.trust-grid .reveal:nth-child(5),
.trust-grid-2x2 .reveal:nth-child(5),
.product-grid .reveal:nth-child(5),
.cert-grid .reveal:nth-child(5),
.cert-grid-2x3 .reveal:nth-child(5),
.export-grid .reveal:nth-child(5),
.flags-grid .reveal:nth-child(5),
.variety-grid .reveal:nth-child(5),
.blog-grid .reveal:nth-child(5),
.benefits-grid .reveal:nth-child(5) { transition-delay: 0.26s; }

.trust-grid .reveal:nth-child(6),
.trust-grid-2x2 .reveal:nth-child(6),
.product-grid .reveal:nth-child(6),
.cert-grid .reveal:nth-child(6),
.cert-grid-2x3 .reveal:nth-child(6),
.export-grid .reveal:nth-child(6),
.flags-grid .reveal:nth-child(6),
.blog-grid .reveal:nth-child(6),
.benefits-grid .reveal:nth-child(6) { transition-delay: 0.32s; }

/* --- Enhanced Section Titles --- */
.section-title {
    position: relative;
    padding-bottom: 18px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: var(--brand);
}

/* --- Enhanced CTA Section --- */
.cta-inner {
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(120, 187, 27, 0.1);
    pointer-events: none;
}

.cta-inner::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(52, 90, 0, 0.06);
    pointer-events: none;
}

/* --- Enhanced Blog Cards --- */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.22s var(--easing), box-shadow 0.22s var(--easing);
    position: relative;
    overflow: hidden;
}

.blog-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(16, 24, 40, 0.08);
}

.blog-card:hover::after {
    transform: scaleX(1);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 24px auto;
    max-width: 900px;
}

.blog-card h3 {
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* --- Enhanced Footer --- */
.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-dark), var(--brand));
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 8px;
}

.footer-link-list li a {
    position: relative;
    display: inline-block;
    padding: 2px 0;
}

.footer-link-list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.25s ease;
}

.footer-link-list li a:hover::after {
    width: 100%;
}

/* --- Directors Grid Enhanced --- */
.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 16px;
}

.director-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
    position: relative;
    overflow: hidden;
}

.director-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
}

.director-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.director-header {
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.director-header h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.director-title {
    color: var(--brand);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0 2px;
}

.director-qual {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0;
}

.director-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.director-points {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.director-points li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.93rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.director-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

/* --- Mission Vision Grid Enhanced --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.mv-card {
    background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(16, 24, 40, 0.04);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.22s var(--easing), box-shadow 0.22s var(--easing);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
}

.mv-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.mv-card h3 i {
    color: var(--brand);
    font-size: 1.2rem;
}

.mv-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.72;
    margin: 0;
}

/* --- Cert Grid --- */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* ============================================================
   OWNER-REQUESTED FIXES & IMPROVEMENTS
   ============================================================ */

/* --- Issue 5: Right-side text overflow fix --- */
.product-page p,
.product-page li,
.about-page p,
.about-page li {
    max-width: 900px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-page .container,
.about-page .container,
.contact-page .container {
    padding-left: 28px;
    padding-right: 28px;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* --- Issue 7: Makhana 2-column variants grid --- */
.variants-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.variant-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.variant-list li {
    position: relative;
    padding: 10px 12px 10px 28px;
    border-bottom: 1px solid rgba(16, 24, 40, 0.04);
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.55;
}

.variant-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 4px;
    color: var(--brand);
    font-size: 0.8rem;
    top: 13px;
}

.variant-list li:last-child {
    border-bottom: none;
}

@media (max-width: 600px) {
    .variants-2col-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* --- Issue 8: Improved bullet/list styling globally --- */
.feature-list li {
    padding: 10px 0 10px 28px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.feature-list li::before {
    top: 13px;
}

/* --- Issue 9: Certifications 2x3 vertical layout --- */
.cert-grid-2x3 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.cert-grid-2x3 .cert-card {
    text-align: center;
}

.cert-grid-2x3 .cert-card-icon {
    margin-left: auto;
    margin-right: auto;
}

/* --- Issue 10: Mission/Vision vertical alignment --- */
.mission-vision-vertical {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.mission-vision-vertical .mv-card {
    text-align: center;
}

.mission-vision-vertical .mv-card h3 {
    justify-content: center;
}

/* --- Issue 11: Directors Pen vertical alignment --- */
.directors-vertical {
    grid-template-columns: 1fr !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Issue 12/16: 2x2 centered trust grid --- */
.trust-grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.trust-grid-2x2 .trust-card {
    text-align: center;
}

.trust-grid-2x2 .trust-icon {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 600px) {
    .trust-grid-2x2 {
        grid-template-columns: 1fr !important;
    }
    .cert-grid-2x3 {
        grid-template-columns: 1fr !important;
    }
}

/* --- Issue 14: Hover on Vision/Mission/Values (home page MVV cards) --- */
.mvv-card {
    cursor: default;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(16, 24, 40, 0.1);
    border-color: rgba(120, 187, 27, 0.2);
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(120, 187, 27, 0.35);
}

.mvv-icon {
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

/* --- Issue 15: Floating CTA button (bottom-right) --- */
.floating-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(120, 187, 27, 0.35);
    z-index: 8000;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(52, 90, 0, 0.4);
    color: #fff;
}

.floating-cta:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 520px) {
    .floating-cta {
        width: 46px;
        height: 46px;
        bottom: 20px;
        right: 16px;
        font-size: 1rem;
    }
}

/* --- Improved product page tables --- */
/* (Table styling now consolidated in base .spec-table rules above) */

/* --- Custom Language Selector --- */
.lang-selector-wrapper {
    position: relative;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 12px;
    z-index: 9100;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    background: var(--bg-soft);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-ui);
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.lang-btn:hover {
    background: var(--brand-soft);
    border-color: rgba(120, 187, 27, 0.25);
    box-shadow: 0 2px 8px rgba(120, 187, 27, 0.08);
}

.lang-btn .fa-globe {
    color: var(--brand);
    font-size: 0.95rem;
}

.lang-arrow {
    font-size: 0.55rem;
    color: var(--muted);
    transition: transform 0.2s ease;
}

.lang-dropdown.open ~ .lang-btn .lang-arrow,
.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(16, 24, 40, 0.06);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    scrollbar-width: thin;
    scrollbar-color: rgba(120, 187, 27, 0.3) transparent;
}

.lang-dropdown::-webkit-scrollbar {
    width: 5px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(120, 187, 27, 0.3);
    border-radius: 10px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Language group headers */
.lang-group {
    padding: 0;
}

.lang-group + .lang-group {
    border-top: 1px solid rgba(16, 24, 40, 0.06);
    margin-top: 2px;
    padding-top: 2px;
}

.lang-group-label {
    display: block;
    padding: 8px 16px 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--muted);
    pointer-events: none;
    user-select: none;
}

.lang-option {
    display: block;
    padding: 7px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.12s ease, color 0.12s ease;
    border-radius: 0;
    line-height: 1.4;
}

.lang-option:hover {
    background: rgba(120, 187, 27, 0.08);
    color: var(--brand-dark);
}

.lang-option.selected {
    background: rgba(120, 187, 27, 0.12);
    color: var(--brand-dark);
    font-weight: 600;
}

/* Hide Google Translate default UI completely */
#google_translate_element {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
}

/* --- Header protection after translation --- */
/* These rules ONLY apply when Google Translate is active */

/* Google Translate injects inline font elements — normalize them */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

font[style] > font[style],
.main-nav font,
.site-header font {
    font-size: inherit !important;
    font-family: inherit !important;
}

/* When Google Translate is active, tighten nav spacing */
html.translated-ltr .main-nav a,
html.translated-rtl .main-nav a {
    padding: 6px 8px;
    font-size: 0.84rem;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
}

html.translated-ltr .main-nav,
html.translated-rtl .main-nav {
    gap: 2px;
}

html.translated-ltr .nav-dropdown-menu a,
html.translated-rtl .nav-dropdown-menu a {
    white-space: normal;
    word-break: break-word;
    max-width: none;
}

html.translated-ltr .main-nav .btn-nav-cta,
html.translated-rtl .main-nav .btn-nav-cta {
    max-width: none;
    flex-shrink: 0;
}

/* Prevent Google Translate from shifting body position */
html.translated-ltr,
html.translated-rtl {
    top: 0 !important;
}

html.translated-ltr body,
html.translated-rtl body {
    top: 0 !important;
    position: relative !important;
}

@media (max-width: 880px) {
    .lang-selector-wrapper {
        margin-right: 8px;
    }
    .lang-label {
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
    .lang-dropdown {
        width: 240px;
        max-height: 360px;
        right: -10px;
    }

    /* Nav text protection on tablet after translation */
    html.translated-ltr .main-nav a,
    html.translated-rtl .main-nav a {
        font-size: 0.82rem;
        padding: 6px 8px;
    }
}

@media (max-width: 520px) {
    .lang-selector-wrapper {
        margin-right: 4px;
    }
    .lang-label {
        display: none;
    }
    .lang-btn {
        padding: 6px 8px;
    }
    .lang-dropdown {
        width: calc(100vw - 32px);
        max-height: 55vh;
        right: -8px;
        left: auto;
    }

    /* In mobile drawer, translated nav items should wrap */
    html.translated-ltr .main-nav a,
    html.translated-rtl .main-nav a {
        max-width: none;
        white-space: normal;
        word-break: break-word;
    }
}

/* --- Country flags with CDN images --- */
.flag-img {
    width: 36px;
    height: 27px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Legacy emoji fallback - hidden when images used */
.flag-emoji {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
    font-size: 2rem;
    line-height: 1.2;
    display: inline-block;
    vertical-align: middle;
}

/* Ensure flags are always visible */
.flag-item .flag-emoji,
.flag-item .flag-img {
    min-width: 32px;
    min-height: 24px;
    text-align: center;
}

/* --- Logo + tagline unified vertical presentation --- */
.logo-with-tagline {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    margin-right: 16px;
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
}

.tagline {
    font-family: var(--font-ui), serif;
    font-size: 0.7rem;
    color: var(--brand-dark);
    font-weight: 700;
    letter-spacing: 1.2px;
    white-space: nowrap;
    text-transform: uppercase;
    border-left: none;
    padding-left: 0;
    line-height: 1;
}

@media (max-width: 1080px) {
    .tagline {
        display: none;
    }
}

/* --- Global responsive overflow protection --- */
html, body {
    overflow-x: hidden;
}

.container {
    box-sizing: border-box;
}

/* --- Responsive table wrappers --- */
@media (max-width: 600px) {
    .spec-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mission-vision-vertical,
    .directors-vertical {
        max-width: 100%;
    }

    .variants-2col-grid {
        max-width: 100%;
    }
}

/* --- MVV section responsive --- */
@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cert-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(16, 24, 40, 0.05);
    border: 1px solid rgba(16, 24, 40, 0.04);
    transition: transform 0.2s var(--easing), box-shadow 0.2s var(--easing);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(16, 24, 40, 0.08);
}

.cert-card h4 {
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.cert-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* --- Spec Table Enhanced --- */
/* (Consolidated into base .spec-table rules) */

/* --- Responsive: Stats Bar --- */
@media (max-width: 880px) {
    .stats-bar-inner {
        gap: 0;
    }

    .stat-item {
        padding: 12px 20px;
        min-width: 120px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mvv-card {
        padding: 32px 24px 28px;
    }

    .directors-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .stats-bar {
        padding: 28px 0;
    }

    .stats-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        justify-items: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-item .stat-text {
        font-size: 0.72rem;
    }

    .mvv-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .section-kicker {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}