@import url('https://fonts.googleapis.com/css2?family=Arya:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
:root {
    /* Brand colours */
    --accent: #f04e23;
    --accent-hover: #d93e15;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --star: #f0a500;

    /* Neutrals */
    --white: #ffffff;
    --dark: #411f06;
    --body-bg: #411f06;
    --section-dark: #0f0f0e;
    --section-light: #f5f3ee;
    --section-cream: #faf7e6;
    --card-bg: #ffffff;
    --black: #0d0d0d;
    --border: #e5e5e5;

    /* Text */
    --text-muted: rgba(255, 255, 255, 0.65);
    --text-muted-dim: rgba(255, 255, 255, 0.45);
    --text-dark: #1a1a18;
    --text-dark-muted: #5a5a54;

    /* Borders / shadows */
    --border-light: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(201, 168, 76, 0.25);
    --card-border: rgba(0, 0, 0, 0.07);
    --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);

    /* Spacing */
    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 48px;
    --sp-xl: 80px;
    --sp-2xl: 96px;

    /* Section padding */
    --section-py: var(--sp-2xl);
    --section-px: 48px;

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 22px;
    --radius-pill: 50px;

    /* Typography */
    --font-display: "Syne", sans-serif;
    --font-body: "DM Sans", sans-serif;
    /* --hindi: "Dekko", cursive; */
    --hindi: "Laila", serif;

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-std: 0.3s ease;

    /* Composites — avoids repeating multi-property transitions inline */
    --trans-bg-transform: background var(--trans-fast), transform var(--trans-fast);
    --trans-bg-border: background var(--trans-fast), border-color var(--trans-fast);
    --trans-color: color var(--trans-fast);
    --trans-all-std: all var(--trans-std);
}


/* ═══════════════════════════════════════
   RESET
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);

    background: var(--body-bg);
    color: var(--white);
    overflow-x: hidden;
}

ul,
ol {
    padding-left: 0;
}




/* ─── shared image fill ─────────────────────────────── */
/* Apply .u-img-fill to any <img> that must cover its container */
.u-img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ═══════════════════════════════════════
   UTILITY — SECTIONS
═══════════════════════════════════════ */
.u-section {
    padding: var(--section-py) var(--section-px);
    position: relative;
    overflow: hidden;
}

.asset-1::after {
    content: "";
    width: 300px;
    height: 300px;
    background-color: var(--gold-light);

    -webkit-mask: url("/assets/images/asset1.svg") center/contain no-repeat;
    mask: url("/assets/images/asset1.svg") center/contain no-repeat;
    position: absolute;
    bottom: 50px;
    right: 50px;
}

.asset-3::after {
    content: "";
    width: 200px;
    height: 200px;
    background: url("/assets/images/asset3.svg") center/contain no-repeat;
    position: absolute;
    bottom: -5px;
    right: 50px;
}

.u-section--dark {
    background: var(--dark);
}

.customers-section {
    background:
        linear-gradient(#411f06f0,
            #411f06cd),
        url("/assets/images/banner1.png") center/cover no-repeat;
}

.u-section--body {
    background: var(--body-bg);
}

.u-section--light {
    background: var(--section-light);
}

.u-section--cream {
    background: var(--section-cream);
}

.u-section--white {
    background: var(--white);
    color: var(--dark);
}


/* ═══════════════════════════════════════
   UTILITY — LABEL / TITLE / DIVIDER
═══════════════════════════════════════ */

/* Shared "overline" label — used by u-label, menu-label-row, topbar, etc. */
.u-label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.u-label--accent {
    color: var(--accent);
}

.u-label--center {
    text-align: center;
}

.u-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.u-title--white {
    color: var(--white);
}

.u-title--dark {
    color: var(--dark);
}

.u-title--center {
    text-align: center;
}

.u-title span {
    color: var(--gold);
}

.u-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border: none;
    margin-bottom: 28px;
}


/* ═══════════════════════════════════════
   UTILITY — TEXT
═══════════════════════════════════════ */
.u-text {
    font-size: 0.9rem;
    line-height: 1.8;
}

.u-text--muted {
    color: var(--text-muted);
}

.u-text--dark-muted {
    color: var(--text-dark-muted);
}

.u-text--dark {
    color: var(--dark);
}


/* ═══════════════════════════════════════
   UTILITY — FLEX / LAYOUT HELPERS
═══════════════════════════════════════ */
.u-flex {
    display: flex;
}

.u-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.u-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ═══════════════════════════════════════
   UTILITY — BUTTONS
═══════════════════════════════════════ */
.u-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    cursor: pointer;
    text-decoration: none;
    transition: var(--trans-bg-transform), box-shadow var(--trans-fast), color var(--trans-fast);
}

/* Sizes */
.u-btn--sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.u-btn--md {
    padding: 14px 30px;
    font-size: 0.88rem;
}

.u-btn--lg {
    padding: 15px 28px;
    font-size: 0.92rem;
}

/* Variants */
.u-btn--accent {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(226, 196, 122, 0.42);
    width: fit-content;
}

.u-btn--accent:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-light);
    color: var(--white);
}

.u-btn--outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    border-radius: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.u-btn--outline-white:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.u-btn--outline-gold {
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    border-radius: var(--radius-pill);
}

.u-btn--outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #111;
}

.u-btn__arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}


/* ═══════════════════════════════════════
   UTILITY — ICON WRAPS
   Base + modifiers. All variants share the
   circle/square base via .u-icon-wrap.
═══════════════════════════════════════ */
.u-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--border-gold);
}

.u-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Small square — reservation perks */
.u-icon-wrap--sm {
    width: 42px;
    height: 42px;
    border-radius: 12px;
}

.u-icon-wrap--sm svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.8;
}

/* Rounded-square gold — process section */
.u-icon-wrap--process {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: var(--gold);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.u-icon-wrap--process svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
    stroke: none;
}

/* Dark square — check icons */
.u-icon-wrap--check {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-sm);
    background: var(--dark);
    border: none;
}

.u-icon-wrap--check svg {
    width: 15px;
    height: 15px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}


/* ═══════════════════════════════════════
   UTILITY — STARS
═══════════════════════════════════════ */
.u-stars {
    display: flex;
    gap: 1px;
}

.u-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--star);
}


/* ═══════════════════════════════════════
   UTILITY — CARD
═══════════════════════════════════════ */
.u-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--card-border);
    overflow: hidden;
}


/* ═══════════════════════════════════════
   UTILITY — FEATURE ITEM
   (Why Choose Us, any icon+text row)
═══════════════════════════════════════ */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-text h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}


/* ═══════════════════════════════════════
   UTILITY — DOT NAV
═══════════════════════════════════════ */
.dot-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot-nav__btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--trans-fast), width var(--trans-fast);
}

.dot-nav__btn.active {
    background: var(--gold);
    width: 26px;
    border-radius: 5px;
}


/* ═══════════════════════════════════════
   UTILITY — PSEUDO GLOWS / NOISE
   FIX: ::before / ::after conflicts resolved
   by using separate pseudo elements per
   modifier — glows that share an element
   use ::before (glow-tl / glow-top) and
   ::after (glow-br). Combining glow-tl +
   glow-br on the same element is safe;
   combining glow-tl + glow-top is not —
   use only one top glow per element.
═══════════════════════════════════════ */

/* Noise texture — uses its own pseudo-element
   via a data-attribute so it never clashes.
   Alternatively apply as a standalone element. */
.u-noise::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Top-left glow — ::before */
.u-glow-tl::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Top-center glow — ::before (mutually exclusive with glow-tl on same element) */
.u-glow-top::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Bottom-right glow — ::after (compatible with both top glow variants) */
.u-glow-br::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}


/* ═══════════════════════════════════════
   UTILITY — BADGE PILL
═══════════════════════════════════════ */
.u-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.62rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}


/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ═══════════════════════════════════════
   TOP BAR
═══════════════════════════════════════ */
.topbar {
    background: var(--section-cream);
    padding: 10px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 900;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 200;
}

.topbar .hindi {
    font-size: 1rem;
}

.topbar span {
    opacity: 0.85;
}

/* ═══════════════════════════════════════
   MAIN NAV
═══════════════════════════════════════ */
.main-nav {
    position: absolute;
    /* top: 30px; */
    top: 0px;

    left: 0;
    right: 0;
    z-index: 100;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity var(--trans-fast);
}

.nav-links a:hover {
    opacity: 1;
}

.brand {
    width: 250px;
    flex-shrink: 0;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ═══════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════ */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    z-index: 101;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Animated X state */
.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════ */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--dark);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 90px 28px 32px;
    transform: translateY(-110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-drawer.is-open {
    transform: translateY(0);
}

.nav-drawer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-drawer__links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-drawer__links li:last-child {
    border-bottom: none;
}

.nav-drawer__links a {
    display: flex;
    padding: 14px 4px;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--trans-fast), padding-left var(--trans-fast);
}

.nav-drawer__links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.nav-drawer__cta {
    display: inline-flex !important;
    padding: 12px 28px !important;
}

/* ═══════════════════════════════════════
   BACKDROP
═══════════════════════════════════════ */
.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
    opacity: 1;
    pointer-events: all;
}

/* ═══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════ */

/* Tablet — shrink gaps and logo */
@media (max-width: 1024px) {
    .main-nav {
        padding: 10px 28px;
    }

    .nav-links {
        gap: 20px;
    }

    .brand {
        width: 180px;
    }
}

/* Mobile — hide links, show hamburger */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .topbar-right {
        display: none;
    }

    .asset-1::after,
    .asset-3::after {
        content: unset;
    }

    /* avoid clutter on small screens */

    .main-nav {
        padding: 12px 20px;
        top: 0;
        position: fixed;
        background: rgba(65, 31, 6, 0.85);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links {
        display: none;
    }

    /* desktop links hidden */

    .nav-hamburger {
        display: flex;
    }

    .brand {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .brand {
        width: 130px;
    }

    .nav-drawer {
        padding: 80px 20px 28px;
    }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("/assets/images/banner2.png");
    background-size: cover;
    background-position: bottom;
    filter: brightness(0.60);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 30%,
            transparent 100%),
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            transparent 40%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 60px;
    flex: 1;
    margin-top: 42px;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    padding: 6px 14px 6px 8px;
    font-size: 0.78rem;
    color: var(--white);
    margin-bottom: 20px;
    width: fit-content;
    animation: fadeUp 0.7s ease both 0.3s;
}

.rating-pill .dot {
    opacity: 0.5;
    margin: 0 2px;
}

.avatar-stack {
    display: flex;
    margin-right: 4px;
}

.avatar-stack img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #222;
    margin-right: -8px;
    object-fit: cover;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 18px;
    max-width: 640px;
    animation: fadeUp 0.7s ease both 0.45s;
}

.hero-headline .highlight {
    color: var(--gold);
}

.hero-sub {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 36px;
    animation: fadeUp 0.7s ease both 0.6s;
}

.hero-cta {
    animation: fadeUp 0.7s ease both 0.75s;
}


/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee-section {
    background: var(--dark);
    padding: 22px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-label {
    font-size: 1.05rem;
    color: var(--gold);
    letter-spacing: 0.01em;
    padding: 0 28px;
}

.marquee-star {
    font-size: 1.3rem;
    color: var(--gold-light);
    line-height: 1;
}


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
    height: 520px;
}

/* Shared arch image style */
.about-img {
    position: absolute;
    object-fit: cover;
    border-radius: 47% 48% 10% 10% / 50% 52% 0% 0%;
    border: 3px solid rgba(255, 255, 255, 0.08);
}

.about-img--main {
    top: 0;
    left: 70px;
    width: 75%;
    aspect-ratio: 1/1;
    z-index: 2;
    object-position: bottom;
}

.about-img--small {
    left: 0;
    bottom: -30px;
    width: 38%;
    aspect-ratio: 1/1;
    z-index: 3;
    border-color: var(--body-bg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.about-year-badge {
    position: absolute;
    bottom: 20px;
    right: 120px;
    z-index: 4;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);
    display: none;
}


/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    color: #333;
    border-radius: var(--radius-pill);
    padding: 8px 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--trans-bg-border), color var(--trans-fast);
    letter-spacing: 0.01em;
}

.filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Product card */
.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
}

.product-card.hidden {
    display: none;
}

.product-card-img-wrap {
    padding: 10px 10px 0;
    position: relative;
}

.img-clip {
    border-radius: 14px;
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 14px;
}

/* Badge positioned inside card image — extends .u-badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.product-card-body {
    padding: 14px 16px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.93rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-meta p {
    color: var(--section-dark);
    font-size: 0.73rem;
    margin-bottom: 3px;
}

.review-count {
    font-size: 0.75rem;
    color: var(--dark);
}

.product-card-footer {
    margin: 8px 10px 10px;
    background: #f5f2ec;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    gap: 10px;
}

.footer-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5b89a;
    flex-shrink: 0;
}

.btn-know-more {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
}


/* ═══════════════════════════════════════
   PROCESS / BUSINESS OPPORTUNITIES
═══════════════════════════════════════ */

.process-section {
    background: #fff;
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.process-subtitle {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

/* Cards */
.process-col {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-col strong {
    color: var(--text-dark-muted);
    display: none;
}

.process-col::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(240, 78, 35, 0.04),
            rgba(240, 78, 35, 0));
    opacity: 0;
    transition: 0.35s ease;
}

.process-col:hover {
    transform: translateY(-8px);
    border-color: rgba(240, 78, 35, 0.25);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.process-col:hover::before {
    opacity: 1;
}

.process-col:hover .u-icon-wrap--process {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(240, 78, 35, 0.25);
}

/* Title */
.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    margin: 24px 0 0;
    letter-spacing: -0.02em;
}

/* Description */
.process-desc {
    font-size: 0.96rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Feature List */
.process-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.process-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.process-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.process-list li.hidden {
    display: none;
}

/* Optional Number Badge */
.process-col .process-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(240, 78, 35, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 991px) {
    .process-section {
        padding: 80px 30px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .process-section {
        padding: 70px 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-col {
        padding: 28px;
    }

    .process-title {
        font-size: 1.2rem;
    }

    .process-desc {
        font-size: 14px;
    }

    .process-subtitle {
        margin-bottom: 40px;
        font-size: 15px;
    }
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.wcu-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.wcu-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.wcu-center-img {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.wcu-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 999px 999px 60px 60px;
    overflow: hidden;
    border: 2px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.1),
        0 32px 80px rgba(0, 0, 0, 0.6);
    position: relative;
}

.wcu-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcu-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
}


/* ═══════════════════════════════════════
   MENU
═══════════════════════════════════════ */
.menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: flex-start;
    margin: 0 auto;
}

.menu-label-row {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-label-row span {
    color: var(--accent);
    font-size: 1rem;
}

.menu-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3.2;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.033) 0%, rgba(0, 0, 0, 0.345) 60%);
}

.menu-img-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 28px;
}

.menu-img-text .today {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.menu-img-text .tagline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--gold);
    text-transform: uppercase;
    line-height: 1.1;
}

.menu-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 125px;
    height: 125px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%,
            79% 91%, 50% 70%, 21% 91%, 32% 57%,
            2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.menu-badge span {
    font-size: 1.1rem;
    color: #111;
    line-height: 1;
    display: block;
    margin-top: 6px;
    text-align: center;
}

.menu-badge small {
    font-size: 0.65rem;
    color: #111;
    display: block;
    text-align: center;
}

.menu-right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 58px;
}

.menu-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.menu-dish-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--border-gold);
}

.menu-row-info {
    flex: 1;
    min-width: 0;
}

.menu-row-top {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.menu-dish-name {
    font-size: 0.95rem;
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-dots {
    flex: 1;
    border-bottom: 2px dotted rgba(0, 0, 0, 0.12);
    margin: 0 10px 2px;
}

.menu-price-tag {
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--gold);
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.menu-desc {
    font-size: 0.8rem;
    color: var(--dark);
    line-height: 1.4;
}


/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    transition: opacity 0.4s ease;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 36px 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--trans-std);
}

.testi-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
}

.testi-quote-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 3.2rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    user-select: none;
}

.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testi-stars span {
    color: var(--gold);
    font-size: 0.85rem;
}

.testi-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 85%;
}

.testi-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.testi-author-name {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.testi-author-role {
    font-size: 0.78rem;
    color: var(--text-muted-dim);
}

.testi-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 168, 76, 0.3);
    flex-shrink: 0;
    position: absolute;
    bottom: -10px;
    right: -10px;
}


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-left {
    position: sticky;
    top: 40px;
}

.faq-sub {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.75;
    margin-bottom: 36px;
}

.faq-stat-row {
    display: flex;
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid var(--border-light);
}

.faq-stat-val {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.faq-stat-lbl {
    font-size: 0.75rem;
    color: var(--dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    font-size: 0.97rem;
    text-align: left;
    cursor: pointer;
    transition: color var(--trans-fast);
}

.faq-q:hover,
.faq-q.open {
    color: var(--gold);
}

/* ── FAQ icon uses its own ::before / ::after,
      separate from all .u-glow-* utilities ── */
.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--trans-all-std);
    position: relative;
}

.faq-q.open .faq-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--trans-all-std);
}

.faq-icon::before {
    width: 12px;
    height: 1.5px;
}

.faq-icon::after {
    width: 1.5px;
    height: 12px;
}

.faq-q.open .faq-icon::before {
    background: #111;
}

.faq-q.open .faq-icon::after {
    background: #111;
    transform: rotate(90deg) scaleY(0);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--trans-std);
}

.faq-body.open {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-body p {
    font-size: 0.87rem;
    color: var(--dark);
    line-height: 1.8;
    margin: 0;
}


/* ═══════════════════════════════════════
   RESERVATION
═══════════════════════════════════════ */
.res-section {
    background: var(--body-bg);
    padding: var(--section-py) var(--section-px);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.res-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.res-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px 40px 40px;
    color: #111;
}

.res-card-title {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.res-card-title span {
    color: var(--gold);
}

.res-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
}

.res-form-full {
    grid-column: 1 / -1;
}

/* ── Shared form field ── */
.form-field label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-dark);
    margin-bottom: 7px;
}

.form-field label sup {
    color: var(--accent);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: #f5f4f1;
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.85rem;
    color: var(--text-dark);
    outline: none;
    font-family: var(--font-body);
    transition: border-color var(--trans-fast), background var(--trans-fast);
    appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #b0ad9e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: #f5f4f1;
    padding-right: 36px;
    cursor: pointer;
}

.form-field select:focus {
    background-color: var(--white);
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.55;
}

.res-submit {
    width: 100%;
    margin-top: 22px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--trans-bg-transform);
    box-shadow: 0 4px 20px rgba(240, 78, 35, 0.3);
}

.res-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.res-perks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.res-perk {
    display: flex;
    align-items: center;
    gap: 14px;
}

.res-perk-text {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.res-perk-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 1px;
}


/* ═══════════════════════════════════════
   DREAMS / FRANCHISE SECTION
═══════════════════════════════════════ */
.dreams-section {
    background: var(--section-cream);
    padding: 72px var(--section-px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    min-height: 100vh;
}

.dreams-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dreams-headline {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 28px;
}

.dreams-headline span {
    color: var(--gold);
}

.dreams-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dark-muted);
    max-width: 460px;
    margin-bottom: 40px;
}

.dreams-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dreams-check {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--black);
}

.dreams-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.dreams-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
}

.dreams-img-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dreams-img-card:hover img {
    transform: scale(1.03);
}

/* .dreams-img-card--top img {
    height: 390px;
}

.dreams-img-card--bottom img {
    height: 390px;
} */

/* Image badge — extends .u-badge with position */
.img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    letter-spacing: 0.02em;
}

.dreams-thumbs {
    display: flex;
    gap: 12px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.dreams-thumb {
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: transform var(--trans-fast);
    cursor: pointer;
}

.dreams-thumb:hover {
    transform: translateY(-4px) scale(1.06);
}

.dreams-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}


/* ═══════════════════════════════════════
   MAP
═══════════════════════════════════════ */
.mif-map {
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
}

.mif-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}


/* ═══════════════════════════════════════
   INSTAGRAM GRID
═══════════════════════════════════════ */
.mif-insta {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 220px;
}

.mif-insta-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mif-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.mif-insta-item:hover img {
    transform: scale(1.08);
}

.mif-insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background var(--trans-std);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mif-insta-item:hover .mif-insta-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.mif-insta-overlay svg {
    width: 42px;
    height: 42px;
    opacity: 0;
    transition: opacity var(--trans-std);
    fill: var(--white);
}

.mif-insta-item:hover .mif-insta-overlay svg {
    opacity: 1;
}

/* Center Instagram link — modifier class instead of compound selector */
.mif-insta-item--featured .mif-insta-overlay {
    background: rgba(0, 0, 0, 0.38);
}

.mif-insta-item--featured .mif-insta-overlay svg {
    opacity: 1;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.mif-footer {
    background: var(--dark);
    padding: 56px 48px 32px;
    color: var(--white);
}

.mif-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
}

.mif-footer-brand img {
    width: 250px;
}

.mif-footer-brand p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 280px;
}

.mif-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mif-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.mif-contact-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 1px;
}

.mif-footer-col h4 {
    font-size: 0.88rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mif-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mif-footer-links a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--trans-fast);
}

.mif-footer-links a:hover {
    color: var(--gold);
}

.mif-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mif-hours-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mif-hours-list .day {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.mif-hours-list .time {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.mif-newsletter h4 {
    font-size: 0.88rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mif-newsletter p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin-bottom: 18px;
}

.mif-newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--trans-fast);
}

.mif-newsletter-form:focus-within {
    border-color: rgba(201, 168, 76, 0.5);
}

.mif-newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--white);
    font-family: var(--font-body);
}

.mif-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.mif-newsletter-form button {
    background: var(--gold);
    border: none;
    cursor: pointer;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--trans-fast);
    flex-shrink: 0;
}

.mif-newsletter-form button:hover {
    background: #b89440;
}

.mif-newsletter-form button svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mif-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.mif-footer-bottom p {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.3);
}

.mif-footer-bottom p span {
    color: var(--gold);
}

.mif-social {
    display: flex;
    gap: 12px;
}

.mif-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-bg-border);
    text-decoration: none;
}

.mif-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.mif-social a svg {
    width: 15px;
    height: 15px;
    fill: rgba(255, 255, 255, 0.55);
    transition: fill var(--trans-fast);
}

.mif-social a:hover svg {
    fill: #111;
}


/* ═══════════════════════════════════════
   RESPONSIVE
   Breakpoints: 1200 → 1024 → 900 → 768 → 600 → 520 → 480
═══════════════════════════════════════ */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        /* height: 380px; */
        display: none;
    }

    .products-grid,
    .testi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* WCU: stack into single column, center the image */
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .wcu-center-img {
        width: 100%;
        justify-content: center;
    }

    .wcu-img-frame {
        width: 220px;
        margin: 0 auto;
    }

    .menu-inner {
        display: block;
    }

    .menu-dots {
        display: none;
    }

    .menu-row-top {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: right;
    }

    .menu-desc {
        text-align: right;
    }

    .menu-right {
        padding-top: 0;
    }

    .faq-inner {
        display: block;
    }

    .faq-left {
        position: static;
    }

    .res-inner {
        display: flex;
        flex-direction: column
    }

    .dreams-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 28px;
    }

    .dreams-right {
        order: -1;
    }
}

@media (max-width: 900px) {
    .process-section {
        padding: 60px 36px;
    }

    .process-grid {
        display: flex;
        flex-direction: column;
    }

    /* Reset all column horizontal padding & borders, then add vertical separator */
    .process-col,
    .process-col:nth-child(2),
    .process-col:last-child {
        padding: 0 0 48px;
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--border);
    }

    .process-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-px: 24px;
        --section-py: 64px;
    }

    .main-nav {
        padding: 16px 20px;
    }

    .hero-content {
        padding: 0 20px 40px;
    }

    .topbar {
        font-size: 0.6rem;
        padding: 8px 16px;
    }

    .nav-links {
        gap: 18px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .mif-insta {
        height: 160px;
    }

    .mif-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .mif-footer-grid {
        grid-template-columns: 1fr;
    }

    .mif-footer {
        padding: 40px 24px 24px;
    }

    .process-section {
        padding: 48px 24px;
    }

    /* 3-column grid — hide last two items via grid auto-hiding */
    .mif-insta {
        grid-template-columns: repeat(3, 1fr);
        height: 180px;
    }

    /* Cleanly hide 4th and 5th cells without nth-child specificity conflicts */
    .mif-insta-item:nth-child(n+4) {
        display: none;
    }

    .dreams-checks {
        flex-direction: column;
        gap: 14px;
    }

    .dreams-img-card--top img {
        height: 200px;
    }

    .dreams-img-card--bottom img {
        height: 240px;
    }

    .dreams-thumbs {
        gap: 8px;
    }

    .dreams-thumb {
        width: 56px !important;
        height: 56px !important;
    }
}

@media (max-width: 520px) {
    .res-form-grid {
        grid-template-columns: 1fr;
    }

    .res-card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}


/* breadcrumb */

/* ── Layout shell ───────────────────── */
.fhero {
    position: relative;
    min-height: 520px;
    padding: 135px 0 80px;
    overflow: hidden;
    display: flex;
    align-items: end;
}

/* ── Background & overlays ──────────── */
.fhero__bg {
    position: absolute;
    inset: 0;
    /* filter: brightness(0.45); */
    z-index: 0;
}

.fhero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.921) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0) 100%),
        linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.15) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

/* ── Left content ───────────────────── */
.fhero__left {
    position: relative;
    z-index: 2;
}

.fhero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--white);
    margin-bottom: 28px;
}

.fhero__title span {
    color: var(--gold);
}

/* ── Breadcrumb ─────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.breadcrumb__link {
    font-size: 0.82rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity var(--trans-fast);
}

.breadcrumb__link:hover {
    opacity: 0.75;
}

.breadcrumb__sep {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
}

.breadcrumb__current {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

/* ── Form card ──────────────────────── */
.fhero__card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    background: var(--dark);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

/* ── Card header ────────────────────── */
.fhero__card-head {
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px 14px;
    text-align: center;
}

.fhero__card-title {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fhero__card-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    margin-bottom: 0;
}

/* ── Form body ──────────────────────── */
.fhero__form {
    padding: 20px 24px 22px;
}

.fhero__form .form-field label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.fhero__form .form-field input,
.fhero__form .form-field select,
.fhero__form .form-field textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.09);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.82rem;
    padding: 10px 12px;
}

.fhero__form .form-field input::placeholder,
.fhero__form .form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.fhero__form .form-field input:focus,
.fhero__form .form-field select:focus,
.fhero__form .form-field textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.13);
    outline: none;
}

.fhero__form .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: rgba(255, 255, 255, 0.09);
    padding-right: 34px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.75);
    appearance: none;
}

.fhero__form .form-field select option {
    background: var(--gold);
    color: var(--white);
}



.fhero__form .form-field textarea {
    resize: none;
    line-height: 1.5;
}

/* ── Submit button ──────────────────── */
.fhero__submit {
    width: 100%;
    margin-top: 18px;
    padding: 13px 20px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--trans-fast),
        transform var(--trans-fast);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.fhero__submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.fhero__submit:active {
    transform: translateY(0);
}

/* ── Responsive ─────────────────────── */
@media (max-width: 1024px) {
    .fhero {
        padding: 72px 0;
    }

    .fhero__card {
        max-width: 440px;
    }
}

@media (max-width: 991px) {
    .fhero {
        padding: 60px 0;
        min-height: auto;
    }

    .fhero__left {
        max-width: 100%;
    }

    .fhero__card {
        max-width: 520px;
    }
}

@media (max-width: 576px) {
    .fhero {
        padding: 50px 0;
    }

    .fhero__card-head {
        padding: 14px 18px 12px;
    }

    .fhero__form {
        padding: 16px 18px 18px;
    }
}

.light-text {
    font-family: var(--hindi);
    font-size: clamp(3.5rem, 5vw, 7.5rem);
    font-weight: 400;
    line-height: 1.15;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.81),
            rgba(255, 255, 255, 0.737),
            rgba(255, 255, 255, 0.812),
            transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    user-select: none;
    animation: fadeUp 0.7s ease both;
    padding-top: 5rem;
    transform: skewX(-55deg);
}

.hindi {
    font-family: var(--hindi);
}


/* about-us page */
/* ═══════════════════════════════════════
   WORKFLOW / PROCESS STEPS
═══════════════════════════════════════ */
.workflow-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
}

.workflow-step {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.workflow-step:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.workflow-step-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.041);
    line-height: 1;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.workflow-step-body {
    padding-left: 24px;
}

.workflow-step-title {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .workflow-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 600px) {
    .workflow-step {
        grid-template-columns: 80px 1fr;
    }

    .workflow-step-num {
        font-size: 3.5rem;
        justify-content: flex-start;
    }
}

/* ═══════════════════════════════════════
   PROCESS HEAT SECTION
═══════════════════════════════════════ */
.process-heat-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.process-heat-col {
    background: #eee9df;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.process-heat-item {
    padding: 28px;
}

.process-heat-item+.process-heat-item {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.process-heat-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.process-heat-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--section-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    flex-shrink: 0;
}

.process-heat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.process-heat-desc {
    padding-left: 48px;
}

.process-heat-img-wrap {
    width: 320px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .process-heat-grid {
        grid-template-columns: 1fr;
    }

    .process-heat-img-wrap {
        width: 100%;
        aspect-ratio: 4/3;
        order: -1;
    }
}


/* opportunity page */
.franchise-section {
    background: var(--section-light);
}

.franchise-image {
    height: 100%;
    min-height: 700px;
    background: url("/assets/images/img4.webp") center bottom/cover no-repeat;
    background-attachment: fixed;
    position: relative;
}

.franchise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.889),
            rgba(0, 0, 0, 0.55));
    display: flex;
    align-items: center;
}

.franchise-image-content {
    padding: 80px;
    max-width: 600px;
}

.franchise-image-content .u-title {
    margin-bottom: 20px;
}

.franchise-content {
    padding: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--dark);
}

.model-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
}

.model-header h3 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--dark);
    font-size: 1.6rem;
}

.model-header span {
    background: rgba(240, 78, 35, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: var(--radius-pimd);
}

.model-subtitle {
    color: var(--text-dark-muted);
    margin-bottom: 15px;
}

.model-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.model-tags span {
    background: var(--section-cream);
    color: var(--dark);
    padding: 10px 16px;
    border-radius: var(--radius-pimd);
    font-size: 14px;
}

.revenue-card {
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-top: 10px;
}

.revenue-card small {
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.revenue-card h2 {
    font-size: 4rem;
    line-height: 1;
    margin: 10px 0;
    color: var(--gold);
    font-family: var(--font-display);
}

.revenue-card strong {
    display: block;
    margin-bottom: 12px;
}

.revenue-card p {
    margin: 0;
    color: var(--text-muted);
}

.franchise-btn {
    margin-top: 30px;
}

@media (max-width: 991px) {

    .franchise-content,
    .franchise-image-content {
        padding: 50px 30px;
    }

    .franchise-image {
        min-height: 450px;
    }

    .model-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .revenue-card h2 {
        font-size: 3rem;
    }
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 24px 0;
}

.promise-item {
    background: transparent;
    border: 1px solid var(--dark);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.promise-item span {
    display: block;
    font-size: 1.4rem;

    color: var(--gold, #c58b45);
    margin-bottom: 4px;
}

.promise-item small {
    font-size: 0.85rem;
    color: var(--dark);
}

.franchise-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 24px;
}

.stat-card {
    background: transparent;
    border: 1px solid var(--dark);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-card h3 {
    margin: 0 0 8px;
    font-size: 1.8rem;

    color: var(--gold, #c58b45);
}

.stat-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--dark);
}

@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .franchise-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.093);
}

.comparison-table th {
    background: var(--gold);
    color: var(--dark);
    padding: 18px;
    text-align: left;
}

.comparison-table td {
    padding: 16px 18px;
    border-top: 1px solid var(--gold);
    color: var(--white);
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 768px) {
    .comparison-table {
        min-width: 700px;
    }
}

/* Legal Framework Lists */
#legal-framework ul {
    margin: 0 0 28px;
    padding-left: 0;
    list-style: none;
}

#legal-framework ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

#legal-framework ul li:last-child {
    margin-bottom: 0;
}

#legal-framework ul li::before {
    content: "\F26A";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 3px;
    color: #c88a3d;
    font-size: 16px;
}

#legal-framework h3 {
    font-size: 22px;

    /* margin: 32px 0 18px; */
    color: #111827;
}

#legal-framework .workflow-left {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    #legal-framework .workflow-left {
        padding: 28px;
        margin-bottom: 40px;
    }

    #legal-framework h3 {
        font-size: 20px;
    }

    #legal-framework ul li {
        font-size: 14px;
        padding-left: 26px;
    }
}

.track-record-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.track-record-item {
    text-align: center;
    padding: 40px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.track-record-item:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 138, 61, 0.5);
}

.track-record-item h3 {
    font-size: 56px;

    color: #c88a3d;
    margin-bottom: 12px;
    line-height: 1;
}

.track-record-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;

    line-height: 1.6;
}

@media (max-width: 991px) {
    .track-record-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .track-record-item h3 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .track-record-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .track-record-item {
        padding: 30px 20px;
    }

    .track-record-item h3 {
        font-size: 36px;
    }

    .track-record-item p {
        font-size: 16px;
    }
}



/* slider company */

.corp-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    cursor: grab;
}

.corp-slider::before,
.corp-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.corp-slider::before {
    left: 0;
    background: linear-gradient(to right,
            var(--white),
            transparent);
}

.corp-slider::after {
    right: 0;
    background: linear-gradient(to left,
            var(--white),
            transparent);
}


.corp-track {
    display: flex;
    gap: 24px;
    width: max-content;
    will-change: transform;
    user-select: none;
}


.corp-slider:hover .corp-track {
    animation-play-state: paused;
}

.corp-card {
    flex: 0 0 auto;
    width: 220px;
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--trans-all-std);
}

.corp-card:hover {
    transform: translateY(-6px);
}

.corp-card img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
}

.corp-card h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.corp-track.dragging {
    cursor: grabbing;
}

@keyframes corpScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width:768px) {

    .corp-card {
        width: 170px;
        padding: 18px;
    }

    .corp-card img {
        height: 55px;
    }

    .corp-slider::before,
    .corp-slider::after {
        width: 40px;
    }
}

/* chai-atm */
/* ── ROI / summary card ──────────────────────────── */
.margin-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--sp-md);
    margin-top: 30px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.margin-summary-card h4 {
    font-size: 22px;

    margin-bottom: 20px;
    color: var(--text-dark);
}

.roi-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.roi-item:last-child {
    border-bottom: none;
}

.roi-item span {
    color: var(--text-dark-muted);
    font-size: 14px;
}

.roi-item strong {
    color: var(--text-dark);

}

/* ── Workflow step icon variant ──────────────────── */
.workflow-step-num i {
    font-size: 28px;
    color: var(--dark);
}

/* ── Hero stat bubbles ───────────────────────────── */
.atm-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.atm-hero-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    text-align: center;
    flex: 1;
    min-width: 110px;
}

.atm-hero-stat strong {
    display: block;

    font-size: 26px;

    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 4px;
}

.atm-hero-stat span {
    font-size: 12px;
    color: var(--text-muted-dim);
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* ── How-it-works cards ──────────────────────────── */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
    margin-top: 52px;
}

.hiw-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--trans-all-std);
}

.hiw-card:hover {
    background: rgba(255, 255, 255, .07);
    transform: translateY(-4px);
    border-color: var(--border-gold);
}

.hiw-card__num {

    font-size: 52px;

    line-height: 1;
    color: var(--gold);
    opacity: .2;
    margin-bottom: 14px;
}

.hiw-card__icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.hiw-card__icon i {
    font-size: 20px;
    color: var(--dark);
}

.hiw-card__title {

    font-size: 17px;

    color: var(--white);
    margin-bottom: 10px;
}

.hiw-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Transparency pillars ────────────────────────── */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    transition: var(--trans-all-std);
}

.pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
}

.pillar-card__badge {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.pillar-card__badge i {
    font-size: 20px;
    color: var(--dark);
}

.pillar-card__num {
    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.pillar-card__title {

    font-size: 17px;

    color: var(--text-dark);
    margin-bottom: 10px;
}

.pillar-card__desc {
    font-size: 14px;
    color: var(--text-dark-muted);
    line-height: 1.7;
}


/* ── Contact / Apply ──────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(201, 168, 76, .12);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__icon i {
    font-size: 18px;
    color: var(--gold);
}

.contact-info__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted-dim);
    margin-bottom: 4px;
}

.contact-info__value {
    font-size: 15px;

    color: var(--white);
}

.apply-form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
}

.apply-form h3 {

    font-size: 22px;

    color: var(--white);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;

    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: .03em;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 15px;
    color: var(--white);

    transition: var(--trans-fast);
    outline: none;
}


#investment option {
    background: var(--dark) !important;
    color: var(--gold) !important;
    border: none !important;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, .3);
}

.form-control-custom:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .05);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 110px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {

    .form-row-2,
    .atm-hero-stats,
    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .apply-form {
        padding: 28px 20px;
    }

    .stats-band-inner {
        flex-direction: column
    }

    .stats-band-item {
        border-bottom: 1px solid rgba(65, 31, 6, .2);
    }
}

/* ── Stats band ───────────────────────────────────── */
.stats-band {
    background: var(--gold);
    padding: 32px 0;
}

.stats-band-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stats-band-item {
    text-align: center;
    padding: 12px 40px;
    border-right: 1px solid rgba(65, 31, 6, .2);
}

.stats-band-item:last-child {
    border-right: none;
}

.stats-band-item strong {
    display: block;

    font-size: 28px;

    color: var(--dark);
    line-height: 1.1;
}

.stats-band-item span {
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(65, 31, 6, .65);
    margin-top: 4px;
    display: block;
}

.wrap {
    padding: 1.5rem 0;
    font-family: var(--font-body);
    color: var(--text-dark)
}

.calc-title {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    margin: 0 0 2rem;
}

.layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start
}

@media(max-width:520px) {
    .layout {
        grid-template-columns: 1fr
    }
}

.panel-left {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--card-shadow)
}

.panel-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-dark-muted);
    margin: 0 0 1.25rem;
}

.field {
    margin-bottom: 1.4rem
}

.field:last-child {
    margin-bottom: 0
}

.field-label {
    font-size: 13px;
    color: var(--text-dark-muted);
    margin-bottom: 7px;
    display: block
}

.machine-ctrl {
    display: flex;
    align-items: center;
    gap: 10px
}

.machine-ctrl button {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-dark);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s ease
}

.machine-ctrl button:hover {
    background: var(--section-light);
    border-color: var(--gold)
}

.machine-count {
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    color: var(--text-dark);
}

input[type=range] {
    width: 100%;
    margin: 0;
    accent-color: var(--gold)
}

.slider-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-top: 4px;
}

.expense-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    font-family: var(--font-body);
    transition: .15s ease
}

.expense-input:focus {
    outline: none;
    border-color: var(--gold)
}

.panel-right {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 3.6rem 1.5rem;
    color: var(--white)
}

.proj-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.25rem;
}

.proj-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.proj-row:last-child {
    border-bottom: none
}

.proj-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6)
}

.proj-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: right;
}

.proj-value.big {
    font-size: 20px;
    color: var(--gold-light)
}

.proj-value.green {
    color: #6ee7b7
}

.proj-value.red {
    color: #fca5a5
}

.divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 4px 0
}

.guarantee-banner {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-top: 1.25rem
}

.guarantee-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--gold)
}

.guarantee-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55
}

.section-gap {
    margin-top: 2rem
}

.section-head {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-dark-muted);
    margin: 0 0 .9rem;
}

.table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 340px;
    overflow-y: auto
}

.calc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    table-layout: fixed
}

.calc-table th {
    background: var(--section-light);
    color: var(--text-dark-muted);
    font-weight: 600;
    padding: 9px 10px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 1;
    ;
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase
}

.calc-table td {
    padding: 9px 10px;
    border-top: 1px solid var(--border);
    color: var(--text-dark);
    font-family: var(--font-body)
}

.calc-table tr.payback-row td {
    background: rgba(201, 168, 76, 0.1);
    font-weight: 600
}

.calc-table tr.profit-row td {
    color: #2a7a44
}

.badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body)
}

.badge.paid {
    background: rgba(201, 168, 76, 0.18);
    color: #7a5e1a
}

.badge.profit {
    background: rgba(42, 122, 68, 0.12);
    color: #2a7a44
}

.note {
    font-size: 12px;
    color: var(--text-dark-muted);
    margin-top: .75rem;
    line-height: 1.6
}