﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --saffron: #E8821A;
    --saffron-light: #F5A94A;
    --saffron-dark: #C4671A;
    --cream: #FDF6EC;
    --cream-dark: #F5E8CE;
    --brown: #3D1F08;
    --brown-mid: #6B3A1F;
    --green: #2D6A4F;
    --green-light: #40916C;
    --text-dark: #1A0F00;
    --text-mid: #5C3A1E;
    --text-light: #8B6047;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ════════════════════════════════
   PAGE LOADER
════════════════════════════════ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    #page-loader.hide {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.loader-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-brand-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(232,130,26,0.4);
}

.loader-brand-text .top {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--brown);
    line-height: 1.1;
}

.loader-brand-text .sub {
    font-size: 0.65rem;
    color: var(--saffron);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Grain loader animation */
.loader-grains {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 40px;
}

    .loader-grains span {
        display: block;
        width: 8px;
        border-radius: 4px;
        background: linear-gradient(180deg, var(--saffron-light), var(--saffron-dark));
        animation: grainBounce 1s ease-in-out infinite;
        transform-origin: bottom;
    }

        .loader-grains span:nth-child(1) {
            animation-delay: 0s;
            height: 20px;
        }

        .loader-grains span:nth-child(2) {
            animation-delay: 0.1s;
            height: 30px;
        }

        .loader-grains span:nth-child(3) {
            animation-delay: 0.2s;
            height: 40px;
        }

        .loader-grains span:nth-child(4) {
            animation-delay: 0.3s;
            height: 28px;
        }

        .loader-grains span:nth-child(5) {
            animation-delay: 0.4s;
            height: 36px;
        }

        .loader-grains span:nth-child(6) {
            animation-delay: 0.5s;
            height: 22px;
        }

        .loader-grains span:nth-child(7) {
            animation-delay: 0.6s;
            height: 32px;
        }

.loader-text {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.08em;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes grainBounce {
    0%, 100% {
        transform: scaleY(0.4);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* ════════════════════════════════
   SCROLLBAR
════════════════════════════════ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 3px;
}

/* ════════════════════════════════
   NAV
════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: rgba(253,246,236,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,130,26,0.15);
    transition: box-shadow 0.3s;
}

    nav.scrolled {
        box-shadow: 0 4px 30px rgba(61,31,8,0.12);
    }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(232,130,26,0.35);
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
}

    .nav-logo-text .top {
        font-size: 1rem;
        font-weight: 700;
        color: var(--brown);
        line-height: 1.1;
    }

    .nav-logo-text .sub {
        font-size: 0.65rem;
        color: var(--saffron);
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--text-mid);
        font-size: 0.88rem;
        font-weight: 500;
        position: relative;
        transition: color 0.2s;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--saffron);
            border-radius: 1px;
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--saffron);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: var(--saffron);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 14px rgba(232,130,26,0.35);
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232,130,26,0.45) !important;
        color: var(--white) !important;
    }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 5% 4rem;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(232,130,26,0.08) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 10% 90%, rgba(45,106,79,0.06) 0%, transparent 60%);
}

.hero-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(232,130,26,0.12) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(232,130,26,0.1);
    border: 1px solid rgba(232,130,26,0.25);
    color: var(--saffron-dark);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    animation: fadeUp 0.6s ease both;
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.7s 0.1s ease both;
}

    .hero-h1 span {
        color: var(--saffron);
        position: relative;
    }

        .hero-h1 span::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--saffron), transparent);
            border-radius: 2px;
        }

.hero-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.2rem;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(232,130,26,0.4);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(232,130,26,0.5);
    }

.btn-secondary {
    background: transparent;
    color: var(--brown);
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(61,31,8,0.2);
    transition: border-color 0.2s, background 0.2s;
}

    .btn-secondary:hover {
        border-color: var(--saffron);
        background: rgba(232,130,26,0.05);
    }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--saffron);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 0.2rem;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
    animation: fadeRight 0.8s 0.3s ease both;
}

.hero-img-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(61,31,8,0.2);
    position: relative;
}

    .hero-img-card img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        display: block;
    }

.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    box-shadow: 0 10px 40px rgba(61,31,8,0.15);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

    .hero-img-float .icon {
        font-size: 2rem;
    }

    .hero-img-float .info .t {
        font-weight: 700;
        color: var(--brown);
        font-size: 0.95rem;
    }

    .hero-img-float .info .s {
        font-size: 0.75rem;
        color: var(--text-light);
    }

/* ════════════════════════════════
   SECTION COMMONS
════════════════════════════════ */
section {
    padding: 5rem 5%;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--saffron);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

    .section-label::before {
        content: '';
        width: 24px;
        height: 2px;
        background: var(--saffron);
        border-radius: 1px;
    }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--text-light);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.7;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61,31,8,0.15);
}

    .about-img-main img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
    }

.about-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    border-radius: 14px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(232,130,26,0.4);
}

    .about-accent-box .num {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1;
    }

    .about-accent-box .lbl {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        opacity: 0.9;
        margin-top: 0.2rem;
    }

.about-phone-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--white);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    box-shadow: 0 8px 30px rgba(61,31,8,0.12);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .about-phone-badge .icon {
        font-size: 1.5rem;
    }

    .about-phone-badge .t {
        font-size: 0.7rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .about-phone-badge .n {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--brown);
    }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin: 2rem 0;
}

.about-feature {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.2rem;
    border: 1px solid rgba(232,130,26,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .about-feature:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(232,130,26,0.12);
    }

    .about-feature .feat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about-feature .feat-title {
        font-weight: 700;
        color: var(--brown);
        font-size: 0.88rem;
        margin-bottom: 0.3rem;
    }

    .about-feature .feat-desc {
        font-size: 0.78rem;
        color: var(--text-light);
        line-height: 1.5;
    }

/* ════════════════════════════════
   STATS BAND
════════════════════════════════ */
.stats-band {
    background: linear-gradient(135deg, var(--brown), var(--brown-mid));
    padding: 3.5rem 5%;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

    .stat-item .num {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--saffron-light);
        line-height: 1;
    }

    .stat-item .unit {
        font-size: 1.2rem;
        vertical-align: super;
    }

    .stat-item .label {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
        font-weight: 500;
        margin-top: 0.4rem;
    }

/* ════════════════════════════════
   PRODUCTS
════════════════════════════════ */
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.product-tabs {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tab {
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: rgba(61,31,8,0.06);
    color: var(--text-mid);
    transition: all 0.2s;
}

    .tab.active, .tab:hover {
        background: var(--saffron);
        color: var(--white);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.product-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61,31,8,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(232,130,26,0.08);
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 50px rgba(61,31,8,0.14);
    }

.product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.2rem 1.4rem;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.4rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
}

.product-tag {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.25rem 0.7rem;
    background: rgba(45,106,79,0.1);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
}

/* ════════════════════════════════
   WHY US
════════════════════════════════ */
#why {
    background: var(--cream-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(61,31,8,0.06);
    transition: transform 0.3s;
    border: 1px solid rgba(232,130,26,0.1);
}

    .why-card:hover {
        transform: translateY(-5px);
    }

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, rgba(232,130,26,0.12), rgba(232,130,26,0.06));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 0.6rem;
}

.why-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
#testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
    margin-top: 3rem;
}

.testi-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 1.8rem;
    border: 1px solid rgba(232,130,26,0.12);
    transition: transform 0.2s;
}

    .testi-card:hover {
        transform: translateY(-3px);
    }

.testi-stars {
    color: var(--saffron);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testi-text {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.testi-name {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.9rem;
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ════════════════════════════════
   TEAM
════════════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 320px);
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61,31,8,0.1);
    text-align: center;
    transition: transform 0.3s;
}

    .team-card:hover {
        transform: translateY(-5px);
    }

.team-avatar-wrap {
    padding: 2rem 2rem 0;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232,130,26,0.4);
}

.team-info {
    padding: 1.2rem;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
}

.team-role {
    font-size: 0.8rem;
    color: var(--saffron);
    font-weight: 600;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-divider {
    width: 40px;
    height: 2px;
    background: var(--saffron);
    margin: 0.8rem auto;
    border-radius: 1px;
}

/* ════════════════════════════════
   GALLERY
════════════════════════════════ */
#gallery {
    background: var(--cream-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
#contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(232,130,26,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-info-item .label {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.contact-info-item .value {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-hours {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--white);
    margin-top: 2rem;
}

    .contact-hours h4 {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .contact-hours .row {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

        .contact-hours .row:last-child {
            border: none;
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--brown);
        margin-bottom: 0.5rem;
    }

    .form-group input, .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1.5px solid rgba(61,31,8,0.12);
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.9rem;
        color: var(--text-dark);
        background: var(--cream);
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 3px rgba(232,130,26,0.1);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* Send Button */
.form-submit {
    width: 100%;
    padding: 0.9rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 6px 20px rgba(232,130,26,0.35);
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

    .form-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(232,130,26,0.45);
    }

    .form-submit:disabled {
        opacity: 0.75;
        cursor: not-allowed;
        transform: none;
    }

    .form-submit .btn-spinner {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255,255,255,0.4);
        border-top-color: #fff;
        border-radius: 50%;
        animation: spin 0.7s linear infinite;
        display: none;
    }

    .form-submit.loading .btn-spinner {
        display: block;
    }

    .form-submit.loading .btn-label {
        opacity: 0.8;
    }

/* ════════════════════════════════
   TOAST ALERT
════════════════════════════════ */
#toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99998;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 16px 50px rgba(61,31,8,0.18);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
    border-left: 4px solid var(--saffron);
}

    #toast.show {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    #toast.toast-error {
        border-left-color: #e74c3c;
    }

    #toast.toast-success {
        border-left-color: var(--green);
    }

.toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    color: var(--brown);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.toast-msg {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    padding: 2px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s;
}

    .toast-close:hover {
        color: var(--brown);
    }

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--saffron);
    border-radius: 0 0 0 14px;
    animation: toastProgress 4s linear forwards;
}

#toast.toast-error .toast-progress {
    background: #e74c3c;
}

#toast.toast-success .toast-progress {
    background: var(--green);
}

@keyframes toastProgress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
    background: var(--brown);
    padding: 3rem 5% 1.5rem;
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 0.5rem;
    }

        .footer-col ul li a {
            color: rgba(255,255,255,0.65);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--saffron-light);
            }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

    .footer-bottom span {
        color: var(--saffron-light);
        font-weight: 600;
    }

/* ════════════════════════════════
   ANIMATIONS
════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ════════════════════════════════
   HAMBURGER
════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--brown);
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
    #hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
    }

    .hero-image-wrap {
        display: none;
    }

    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-wrap {
        max-width: 500px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .products-grid, .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #toast {
        right: 1rem;
        left: 1rem;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .products-grid, .why-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* ════════════════════════════════
   BACK TO TOP BUTTON
════════════════════════════════ */
#backToTop {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 130, 26, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.85);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
}

    #backToTop.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    #backToTop:hover {
        box-shadow: 0 10px 28px rgba(232, 130, 26, 0.6);
        transform: translateY(-3px) scale(1.08);
    }

    #backToTop:active {
        transform: scale(0.95);
    }
