/* ============ TOKENS ============ */
:root {
    --dark: #0E3B22; /* primary deep forest green (from logo) */
    --dark-2: #082217; /* darker shade for gradients / footer */
    --lime: #6FB712; /* accent leaf green (from logo) */
    --lime-2: #8FD130; /* lighter lime for hovers */
    --cream: #F6FAF1; /* soft section background */
    --white: #FFFFFF;
    --text: #5B6B60; /* body copy */
    --text-dark: #16261C; /* headings */
    --line: #E4ECE1; /* hairline borders */
    --shadow: 0 20px 45px -20px rgba(14,59,34,0.25);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

    body.no-scroll {
        overflow: hidden;
    }

h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    position: relative;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--lime);
        display: inline-block;
    }

.section_title h2 {
    font-size: clamp(24px, 4vw, 34px);
    margin-bottom: 16px;
}

.section_head {
    max-width: 640px;
    margin-bottom: 56px;
}

    .section_head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section_head p {
        font-size: 16px;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .3px;
    transition: all .25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

    .btn i {
        font-size: 14px;
    }

.btn-primary {
    background: var(--lime);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--lime-2);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px -8px rgba(111,183,18,0.55);
    }

.btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.12);
        border-color: var(--white);
    }

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

    .btn-dark:hover {
        background: var(--dark-2);
        transform: translateY(-2px);
    }

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255,255,255,0.0);
    transition: all .3s ease;
    padding-top: env(safe-area-inset-top, 0px);
}

    .header.scrolled {
        background: rgba(255,255,255,0.97);
        box-shadow: 0 2px 24px rgba(14,59,34,0.08);
        backdrop-filter: blur(6px);
    }

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px -8px rgba(14,59,34,0.35);
    flex-shrink: 0;
}

    .logo img {
        height: 44px;
        width: auto;
        display: block;
    }

.main_nav ul {
    display: flex;
    align-items: center;
    gap: 38px;
}

.main_nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .2px;
    position: relative;
    padding: 4px 0;
}

.header:not(.scrolled) .main_nav a {
    color: var(--white);
}

.main_nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--lime);
    transition: width .25s ease;
}

.main_nav a:hover::after {
    width: 100%;
}

.header_cta {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header_phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    white-space: nowrap;
}

.header:not(.scrolled) .header_phone {
    color: var(--white);
}

.header.scrolled .header_phone {
    color: var(--dark);
}

.header_phone i {
    font-size: 16px;
}

.hamburger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.header.scrolled .hamburger {
    background: var(--cream);
}

.hamburger i {
    font-size: 18px;
    color: var(--white);
}

.header.scrolled .hamburger i, .menu_open .hamburger i {
    color: var(--dark);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 18% 20%, rgba(111,183,18,0.30), transparent 45%), linear-gradient(120deg, rgba(14,59,34,0.93) 0%, rgba(8,34,23,0.95) 100%), url('../images/newhero.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding-top: 110px;
}

.hero_leaves {
    position: absolute;
    inset: 0;
    opacity: 0.10;
}

.hero_glow {
    position: absolute;
    right: -120px;
    top: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    opacity: .35;
    filter: blur(10px);
}

.hero_inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 8px 18px;
    border-radius: 100px;
    color: var(--lime-2);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(30px, 5.5vw, 52px);
    font-weight: 600;
    letter-spacing: -.5px;
    margin-bottom: 22px;
    max-width: 640px;
}

    .hero h1 em {
        color: var(--lime-2);
        font-style: normal;
    }

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: clamp(14.5px, 2vw, 17px);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero_actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero_visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.hero_badge_ring {
    width: clamp(220px, 32vw, 390px);
    height: clamp(220px, 32vw, 390px);
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero_badge_inner {
    width: 77%;
    height: 77%;
    border-radius: 50%;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .hero_badge_inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

.hero_floating_card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 250px;
}

    .hero_floating_card.fc1 {
        top: 6%;
        left: -6%;
    }

    .hero_floating_card.fc2 {
        bottom: 4%;
        right: -8%;
    }

.fc_icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .fc_icon i {
        font-size: 18px;
        color: var(--lime);
    }

.fc_title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.fc_sub {
    font-size: 11.5px;
    color: var(--text);
}

/* ============ SHLOKA BANNER ============ */
.shloka {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 56px 24px;
    text-align: center;
}

.shloka_card {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}

    .shloka_card img {
        width: 100%;
        display: block;
    }

/* ============ TRUST STRIP ============ */
.trust {
    background: var(--white);
    margin-top: -58px;
    position: relative;
    z-index: 5;
}

.trust_row {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.trust_item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 34px 32px;
    border-right: 1px solid var(--line);
    min-width: 0;
}

    .trust_item:last-child {
        border-right: none;
    }

.trust_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .trust_icon i {
        font-size: 22px;
        color: var(--lime-2);
    }

.trust_item h4 {
    font-size: 16.5px;
    margin-bottom: 6px;
}

.trust_item p {
    font-size: 13.6px;
    color: var(--text);
}

/* ============ ABOUT ============ */
.about {
    padding: 130px 0 0;
}

.about_inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about_text p {
    font-size: 16px;
    margin-bottom: 18px;
}

.about_stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 34px;
}

.stat {
    padding: 20px 6px 20px 0;
    border-top: 2px solid var(--lime);
    min-width: 0;
}

    .stat b {
        display: block;
        font-family: 'Fraunces',serif;
        font-size: clamp(22px, 3vw, 28px);
        color: var(--dark);
    }

    .stat span {
        font-size: 12.5px;
        color: var(--text);
    }

.about_visual {
    position: relative;
    max-width: 100%;
}

.about_panel {
    aspect-ratio: 3/4;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

    .about_panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about_panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(200deg, rgba(14,59,34,0) 55%, rgba(8,34,23,0.55) 100%);
    }

    .about_panel.about_panel--emblem {
        background: var(--cream);
    }

        .about_panel.about_panel--emblem img {
            object-fit: contain;
            padding: 36px;
        }

        .about_panel.about_panel--emblem::after {
            display: none;
        }

    .about_panel::before {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 1px dashed rgba(255,255,255,0.35);
        top: -40px;
        left: -40px;
        z-index: 2;
    }

.about_ring_card {
    position: absolute;
    bottom: -26px;
    left: -26px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 250px;
}

    .about_ring_card .fc_icon {
        background: var(--cream);
    }

/* ---- About: intro tagline ---- */
.about_tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--lime);
    font-size: 17px;
    margin-bottom: 14px;
}

/* ---- About: Vision / Mission cards ---- */
.vision_mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 90px 0 70px;
}

.vm_card {
    background: var(--cream);
    border-radius: 20px;
    padding: 38px 34px;
    border-top: 3px solid var(--lime);
    min-width: 0;
}

    .vm_card h3 {
        font-size: 21px;
        margin-bottom: 14px;
    }

    .vm_card p {
        font-size: 14.5px;
        color: var(--text);
        margin-bottom: 12px;
    }

    .vm_card ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .vm_card ul li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 13.8px;
            color: var(--text-dark);
        }

            .vm_card ul li i {
                color: var(--lime);
                font-size: 13px;
                margin-top: 4px;
                flex-shrink: 0;
            }

/* ---- About: Why Choose Us ---- */
.why_choose {
    padding: 20px 0 90px;
}

.why_choose_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why_choose_photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

    .why_choose_photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.why_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
    margin-top: 28px;
}

.why_item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    min-width: 0;
}

    .why_item i {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--dark);
        color: var(--lime-2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .why_item span {
        font-size: 13.8px;
        color: var(--text-dark);
        font-weight: 500;
    }

/* ---- About: Quality & Commitment ---- */
.commitment {
    background: var(--cream);
    padding: 80px 0;
}

.commitment_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.commitment_block {
    min-width: 0;
}

.commitment_block h3 {
    font-size: 19px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .commitment_block h3 i {
        color: var(--lime);
        font-size: 18px;
    }

.commitment_block p {
    font-size: 14.5px;
    color: var(--text);
}

/* ---- Pull quote banner ---- */
.pull_quote {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pull_quote_glow {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    opacity: .2;
}

.pull_quote blockquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(19px, 3.2vw, 28px);
    color: var(--white);
    max-width: 720px;
    margin: 0 auto 18px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.pull_quote p {
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============ PRODUCTS ============ */
.products {
    background: var(--cream);
    padding: 110px 0;
}

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

.product_card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px -22px rgba(14,59,34,0.22);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    min-width: 0;
}

    .product_card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 50px -20px rgba(14,59,34,0.30);
    }

.product_media {
    position: relative;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

    .product_media img {
        width: 100%;
        display: block;
    }

.product_tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--lime);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: 0 6px 14px -4px rgba(0,0,0,0.35);
}

.product_body {
    padding: 30px 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

    .product_body h3 {
        font-size: 23px;
    }

    .product_body > p {
        font-size: 14.5px;
    }

.product_benefits {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 4px 0 6px;
}

    .product_benefits li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-size: 13.6px;
        color: var(--text-dark);
    }

    .product_benefits i {
        font-size: 15px;
        color: var(--lime);
        flex-shrink: 0;
        margin-top: 3px;
    }

.product_certs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

    .product_certs span {
        font-size: 11px;
        font-weight: 600;
        color: var(--dark);
        background: var(--cream);
        border: 1px solid var(--line);
        padding: 5px 12px;
        border-radius: 100px;
    }

.product_actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.product_body .btn {
    flex: 1;
    justify-content: center;
}

.product_note {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text);
    background: var(--white);
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 14px 20px;
}

/* ============ CTA ============ */
.cta {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta_glow {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
    opacity: .22;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(24px, 3.5vw, 32px);
    max-width: 600px;
    margin: 0 auto 14px;
}

.cta p {
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 32px;
}

/* ============ CONTACT ============ */
.contact {
    padding: 110px 0;
}

.contact_inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

.contact_info_list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.contact_info_item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

    .contact_info_item .trust_icon {
        background: var(--cream);
    }

        .contact_info_item .trust_icon i {
            color: var(--dark);
        }

    .contact_info_item h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }

    .contact_info_item p {
        font-size: 14px;
        word-break: break-word;
    }

.contact_form {
    background: var(--cream);
    border-radius: 22px;
    padding: 40px;
    min-width: 0;
}

.form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

    .form_field.full {
        grid-column: 1/-1;
    }

    .form_field input, .form_field select, .form_field textarea {
        border: 1px solid var(--line);
        background: var(--white);
        border-radius: 10px;
        padding: 13px 16px;
        font-family: 'Poppins',sans-serif;
        font-size: 14px;
        color: var(--text-dark);
        outline: none;
        transition: border-color .2s ease;
        width: 100%;
    }

    .form_field label {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text-dark);
        letter-spacing: .3px;
    }

        .form_field input:focus, .form_field select:focus, .form_field textarea:focus {
            border-color: var(--lime);
        }

    .form_field textarea {
        resize: vertical;
        min-height: 110px;
    }

.form_error {
    display: block;
    color: #B3261E;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.contact_form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
}

.form_success {
    display: block;
    background: var(--dark);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-top: 14px;
}

    .form_success.form_success--success {
        background: var(--dark);
    }

    .form_success.form_success--error {
        background: #B3261E;
    }

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-2);
    color: rgba(255,255,255,0.65);
    padding: 52px 0 26px;
}

.footer_shloka {
    max-width: 320px;
    margin: 0 auto 44px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 44px -18px rgba(0,0,0,0.55);
}

    .footer_shloka img {
        width: 100%;
        display: block;
    }

.footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer_logo {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 14px 24px;
    border-radius: 14px;
}

    .footer_logo img {
        height: 38px;
    }

.footer_social {
    display: flex;
    gap: 12px;
}

    .footer_social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s ease;
    }

        .footer_social a:hover {
            background: var(--lime);
            border-color: var(--lime);
        }

        .footer_social a i {
            font-size: 15px;
        }

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 22px;
    font-size: 13px;
}

    .footer_bottom a {
        color: rgba(255,255,255,0.65);
    }

        .footer_bottom a:hover {
            color: var(--lime-2);
        }

.footer_credit {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .footer_credit a {
        color: rgba(255,255,255,0.75);
        font-weight: 600;
        text-decoration: none;
    }

        .footer_credit a:hover {
            color: var(--lime-2);
        }

/* ============ MOBILE NAV — BOTTOM SHEET ============ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,34,23,0.55);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

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

.mobile_nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 82vh;
    background: var(--white);
    z-index: 1000;
    padding: 18px 26px calc(24px + env(safe-area-inset-bottom, 0px));
    border-radius: 26px 26px 0 0;
    transition: transform .38s cubic-bezier(.32,.72,0,1), visibility .38s;
    transform: translateY(100%);
    box-shadow: 0 -18px 50px rgba(8,34,23,0.28);
    overflow-y: auto;
    visibility: hidden;
}

    @supports (height: 100dvh) {
        .mobile_nav {
            max-height: 82dvh;
        }
    }

    .mobile_nav.open {
        transform: translateY(0);
        visibility: visible;
    }

.mobile_nav_handle {
    width: 42px;
    height: 5px;
    border-radius: 100px;
    background: var(--line);
    margin: 0 auto 18px;
    flex-shrink: 0;
}

.mobile_nav_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

    .mobile_nav_head img {
        height: 30px;
        width: auto;
    }

.mobile_nav_close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
    flex-shrink: 0;
}

    .mobile_nav_close:hover {
        background: var(--line);
    }

    .mobile_nav_close i {
        font-size: 15px;
        color: var(--dark);
    }

.mobile_nav ul {
    display: flex;
    flex-direction: column;
}

.mobile_nav a {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
}

.mobile_nav li:last-child a {
    border-bottom: none;
}

.mobile_nav .btn {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
}

/* ============ RESPONSIVE ============ */

/* ---- Large desktops: tighten container a touch, nothing drastic ---- */
@media (max-width: 1300px) {
    .container {
        max-width: 1040px;
    }
}

/* ---- Small laptops / large tablets landscape ---- */
@media (max-width: 1100px) {
    .about_inner {
        gap: 44px;
    }

    .why_choose_inner {
        gap: 36px;
    }

    .commitment_inner {
        gap: 32px;
    }
}

/* ---- Tablets: nav collapses to hamburger, stacked layouts begin ---- */
@media(max-width:980px) {
    .hero_inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        margin: 0 auto 22px;
    }

    .hero p {
        margin: 0 auto 36px;
    }

    .hero_actions {
        justify-content: center;
    }

    .hero_visual {
        margin-top: 40px;
    }

    .trust_row {
        grid-template-columns: 1fr;
    }

    .trust_item {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

        .trust_item:last-child {
            border-bottom: none;
        }

    .about_inner, .contact_inner {
        grid-template-columns: 1fr;
    }

    .about_visual {
        order: -1;
        max-width: 380px;
        margin: 0 auto 60px;
    }

    .vision_mission {
        grid-template-columns: 1fr;
        margin: 60px 0 50px;
    }

    .why_choose_inner {
        grid-template-columns: 1fr;
    }

    .why_choose_photo {
        order: -1;
    }

    .commitment_inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .products_grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

    .main_nav {
        display: none;
    }

    .header_phone span {
        display: none;
    }

    .header_cta > a.btn-primary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header_inner {
        padding: 16px;
    }

    .about {
        padding-top: 100px;
    }
}

/* ---- Tablets (portrait) / small tablets ---- */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero_badge_ring {
        width: clamp(200px, 55vw, 320px);
        height: clamp(200px, 55vw, 320px);
    }

    .hero_floating_card {
        max-width: 170px;
        padding: 12px 16px;
    }

        .hero_floating_card.fc1 {
            top: 2%;
            left: 0;
        }

        .hero_floating_card.fc2 {
            bottom: 10%;
            right: 0;
        }

    .about_ring_card {
        left: 0;
        bottom: -20px;
        max-width: 210px;
        padding: 14px 16px;
    }

    .about_panel::before {
        width: 160px;
        height: 160px;
        top: -26px;
        left: -26px;
    }

    .why_list {
        gap: 14px 18px;
    }

    .contact_form {
        padding: 30px;
    }

    .section_head {
        margin-bottom: 40px;
    }

    .about_stats {
        gap: 12px;
    }

    .trust {
        margin-top: -40px;
    }
}

@media(max-width:600px) {
    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }

        .hero h1 {
            font-size: 36px;
        }

    .form_row {
        grid-template-columns: 1fr;
    }

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

    .about_stats {
        grid-template-columns: 1fr 1fr;
    }

    .shloka_card {
        max-width: 100%;
    }

    .why_list {
        grid-template-columns: 1fr;
    }

    .pull_quote blockquote {
        font-size: 21px;
    }

    .vision_mission {
        gap: 18px;
    }

    .commitment_inner {
        gap: 26px;
    }
}

/* ---- Small phones ---- */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .logo {
        padding: 8px 14px;
    }

        .logo img {
            height: 34px;
        }

    .header_cta {
        gap: 10px;
    }

    .header_phone {
        gap: 6px;
    }

    .hamburger {
        width: 36px;
        height: 36px;
    }

    .hero_eyebrow {
        font-size: 11px;
        padding: 7px 14px;
    }

    .hero_actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero_actions {
        flex-direction: column;
    }

    .hero_badge_ring {
        width: 62vw;
        height: 62vw;
    }

    .hero_floating_card {
        position: static;
        max-width: none;
        margin-top: 14px;
        justify-content: center;
    }

    .hero_visual {
        flex-direction: column;
    }

    .trust {
        margin-top: -30px;
    }

    .trust_item {
        padding: 26px 22px;
    }

    .about {
        padding-top: 80px;
    }

    .about_stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 12px 0;
    }

    .vm_card, .commitment {
        padding: 28px 24px;
    }

    .vision_mission {
        margin: 44px 0 36px;
    }

    .why_choose {
        padding: 10px 0 60px;
    }

    .why_choose_inner {
        gap: 24px;
    }

    .pull_quote {
        padding: 56px 20px;
    }

    .products {
        padding: 70px 0;
    }

    .product_body {
        padding: 24px 22px 26px;
    }

    .product_actions {
        flex-direction: column;
    }

    .cta {
        padding: 60px 0;
    }

    .contact {
        padding: 70px 0;
    }

    .contact_form {
        padding: 22px;
    }

    .footer_logo {
        padding: 10px 18px;
    }

        .footer_logo img {
            height: 30px;
        }

    .footer_top {
        justify-content: center;
        text-align: center;
    }

    .footer_shloka {
        max-width: 240px;
    }

    .mobile_nav {
        padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
        max-height: 88vh;
    }

    @supports (height: 100dvh) {
        .mobile_nav {
            max-height: 88dvh;
        }
    }

    .mobile_nav a {
        font-size: 16px;
        padding: 12px 2px;
    }
}

/* ---- Very small phones ---- */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 30px;
    }

    .section_title h2 {
        font-size: 24px;
    }

    .btn {
        padding: 13px 22px;
        font-size: 13.5px;
    }

    .why_list {
        gap: 12px;
    }

    .product_certs span {
        font-size: 10px;
        padding: 4px 10px;
    }

    .logo img {
        height: 30px;
    }

    .mobile_nav_head img {
        height: 26px;
    }
}

/* ---- Extra-small / narrow devices ---- */
@media (max-width: 340px) {
    .logo {
        padding: 7px 12px;
    }

    .header_phone i {
        font-size: 14px;
    }

    .hamburger {
        width: 34px;
        height: 34px;
    }

    .about_stats {
        gap: 8px;
    }
}

/* ---- Landscape phones (short viewport height) ---- */
@media (max-height: 480px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .mobile_nav {
        max-height: 92vh;
        padding-top: 14px;
    }

    .mobile_nav_handle {
        margin-bottom: 10px;
    }

    .mobile_nav_head {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .mobile_nav a {
        padding: 10px 2px;
        font-size: 15px;
    }

    .mobile_nav .btn {
        margin-top: 12px;
        padding: 12px 24px;
    }
}