/* ========================================================================
   ALHADBANIA — Sanitary Ware | Brand-aligned Preview
   Palette derived from the Al-Hadbania logo (navy + blue wave + white)
   Single typeface: Tajawal (weights 300 / 400 / 500 / 700 / 800 / 900)
   ======================================================================== */

:root {
    --navy: #1B3A5C;
    --navy-dark: #0F2540;
    --navy-deep: #081A2E;
    --navy-soft: #2E5680;
    --navy-700: #244A73;
    --blue-wave: #7FA6C8;
    --blue-soft: #B8CFE0;

    --white: #FFFFFF;
    --off-white: #F7F6F2;
    --cream: #F1F3F7;
    --cream-2: #E7EBF1;
    --stone: #5A6878;
    --stone-light: #8A94A3;

    --line: rgba(27, 58, 92, 0.1);
    --line-strong: rgba(27, 58, 92, 0.2);
    --line-light: rgba(255, 255, 255, 0.14);

    --font: 'Tajawal', system-ui, -apple-system, sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

    --container: 1360px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    background: var(--off-white);
    color: var(--navy-dark);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-en {
    --font: 'Poppins', system-ui, -apple-system, sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
.reveal.delay-4 { transition-delay: 0.48s; }

/* NAV */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease);
    background: transparent;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    padding: 12px 40px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 30px rgba(15, 37, 64, 0.06);
}
.nav__brand {
    display: flex;
    align-items: center;
    height: 54px;
}
.nav__brand img {
    height: 100%;
    width: auto;
}
.nav__brand-logo--dark { display: none; }
.nav.scrolled .nav__brand-logo--light { display: none; }
.nav.scrolled .nav__brand-logo--dark { display: block; }
.nav__links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav__links a {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}
.nav.scrolled .nav__links a { color: var(--navy-dark); }
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 2px;
    background: var(--blue-wave);
    transition: width 0.4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.nav__lang {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 999px;
    transition: all 0.3s;
}
.nav.scrolled .nav__lang {
    color: var(--navy);
    border-color: var(--line-strong);
}
.nav__lang:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nav__lang-item { display: none; }
.nav__cta {
    background: var(--navy);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
}
.nav__cta:hover { background: var(--blue-wave); color: var(--navy-dark); }
.nav.scrolled .nav__cta { background: var(--navy); color: var(--white); }
.nav.scrolled .nav__cta:hover { background: var(--navy-dark); }

/* Mobile toggle (hamburger) */
.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 110;
}
.nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s;
}
.nav.scrolled .nav__toggle span { background: var(--navy-dark); }
.nav__toggle.is-open span { background: var(--navy-dark); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 26, 46, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
    z-index: 99;
}
.nav__overlay.is-open { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding: 0 40px 100px;
}
.hero__bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(180deg, rgba(8, 26, 46, 0.45) 0%, rgba(8, 26, 46, 0.75) 100%),
        url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    animation: heroZoom 14s var(--ease) forwards;
    z-index: 0;
}
.hero__inner { position: relative; z-index: 2; max-width: 1360px; margin: 0 auto; width: 100%; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 22px;
    color: var(--blue-soft);
}
.hero__eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--blue-soft);
}
.hero__title {
    font-family: var(--font);
    /* font-size: clamp(48px, 6.4vw, 92px); */
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-bottom: 28px;
}
.hero__title .accent {
    color: var(--blue-wave);
    font-weight: 800;
}
.hero__sub {
    font-size: 17px;
    max-width: 540px;
    color: rgba(255,255,255,0.88);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
}
.btn-primary {
    background: var(--navy);
    color: var(--white);
    padding: 18px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: all 0.4s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(8, 26, 46, 0.35);
}
.btn-primary:hover {
    background: var(--white);
    color: var(--navy-dark);
    transform: translateY(-2px);
}
.btn-ghost {
    color: var(--white);
    padding: 18px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 999px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.hero__scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.hero__scroll-line {
    width: 1px; height: 50px;
    background: rgba(255,255,255,0.35);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -50px; left: 0;
    width: 1px; height: 50px;
    background: var(--blue-wave);
    animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine { to { top: 100%; } }

/* ABOUT */
.about {
    padding: 140px 40px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    top: -120px; left: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(127, 166, 200, 0.14) 0%, transparent 70%);
    pointer-events: none;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -140px; right: -100px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(27, 58, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.about__inner {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.about__head { margin-bottom: 72px; max-width: 820px; }
.about__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 22px;
}
.about__title {
    font-family: var(--font);
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--navy-dark);
    letter-spacing: -0.5px;
}
.about__title .accent { color: var(--navy); font-weight: 800; }
.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: start;
}
.about__narrative p {
    font-size: 16px;
    line-height: 2;
    color: var(--stone);
    font-weight: 400;
    margin-bottom: 20px;
}
.about__narrative strong { color: var(--navy-dark); font-weight: 800; }
.about__narrative em { color: var(--navy); font-style: normal; font-weight: 700; }
.about__lead {
    font-size: 20px !important;
    line-height: 1.8 !important;
    color: var(--navy-dark) !important;
    font-weight: 500 !important;
    padding-inline-start: 20px;
    border-inline-start: 3px solid var(--navy);
    margin-bottom: 28px !important;
}
.about__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.pillar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 22px;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}
.pillar:hover {
    transform: translateY(-4px);
    border-color: var(--navy);
    box-shadow: 0 20px 50px rgba(15, 37, 64, 0.10);
}
.pillar__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    display: grid; place-items: center;
    font-size: 18px;
    margin-bottom: 16px;
}
.pillar__title {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
}
.pillar__text {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--stone);
    font-weight: 400;
}

/* DIVISIONS */
.divisions {
    padding: 120px 40px;
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.divisions::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(127, 166, 200, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(127, 166, 200, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.divisions__inner {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.divisions .section-head__title { color: var(--white); }
.divisions .section-head__link { color: var(--blue-wave); }
.divisions .section-head__link:hover { color: var(--white); }
.div-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.div-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 36px 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s var(--ease), background 0.5s, border-color 0.5s;
    position: relative;
    overflow: hidden;
}
.div-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(127, 166, 200, 0.4);
}
.div-card--featured {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-color: var(--blue-wave);
}
.div-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.div-card__num {
    font-family: var(--font);
    font-size: 56px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(127, 166, 200, 0.45);
    line-height: 1;
}
.div-card--featured .div-card__num { -webkit-text-stroke-color: rgba(255, 255, 255, 0.55); }
.div-card__icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--blue-wave);
    color: var(--navy-dark);
    display: grid; place-items: center;
    font-size: 20px;
}
.div-card--featured .div-card__icon { background: var(--white); }
.div-card__title {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--white);
    letter-spacing: -0.5px;
}
.div-card__tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--blue-wave);
    margin-bottom: 20px;
    padding: 4px 10px;
    border: 1px solid rgba(127, 166, 200, 0.3);
    border-radius: 999px;
}
.div-card--featured .div-card__tag { color: var(--white); border-color: rgba(255,255,255,0.35); }
.div-card__text {
    font-size: 14.5px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 24px;
    font-weight: 400;
}
.div-card__text strong { color: var(--white); font-weight: 800; }
.div-card--featured .div-card__text { color: rgba(255, 255, 255, 0.9); }
.div-card__list { list-style: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; }
.div-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.85);
    padding: 6px 0;
    font-weight: 500;
}
.div-card__list i {
    color: var(--blue-wave);
    font-size: 12px;
}
.div-card--featured .div-card__list i { color: var(--white); }

/* Showrooms tweaks */
.show-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: rgba(27, 58, 92, 0.08);
    border-radius: 999px;
}
.show-intro {
    font-size: 15px;
    line-height: 1.9;
    color: var(--stone);
    margin-bottom: 36px;
    max-width: 420px;
}

/* Prod-card price as CTA link */
a.prod-card__price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}
a.prod-card__price:hover { border-color: var(--navy); color: var(--navy-dark); }

/* CATEGORIES */
.categories {
    padding: 120px 40px;
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.categories::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 166, 200, 0.12), transparent 70%);
    pointer-events: none;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
    max-width: var(--container);
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.section-head__left { max-width: 720px; }
.section-head__kicker {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--blue-wave);
    margin-bottom: 18px;
    font-weight: 700;
}
.section-head__title {
    font-family: var(--font);
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.5px;
}
.section-head__link {
    color: var(--blue-wave);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--blue-wave);
    padding-bottom: 4px;
    white-space: nowrap;
    transition: all 0.3s;
}
.section-head__link:hover { color: var(--white); border-color: var(--white); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 260px;
    gap: 14px;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}
.cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}
.cat-card:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.cat-card:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.cat-card:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.cat-card:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.cat-card:nth-child(5) { grid-column: span 3; grid-row: span 1; }
.cat-card:nth-child(6) { grid-column: span 4; grid-row: span 1; }
.cat-card:nth-child(7) { grid-column: span 4; grid-row: span 1; }
.cat-card:nth-child(8) { grid-column: span 4; grid-row: span 1; }
.cat-card__img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s var(--ease);
}
.cat-card:hover .cat-card__img { transform: scale(1.08); }
.cat-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8, 26, 46, 0.1) 30%, rgba(8, 26, 46, 0.9) 100%);
}
.cat-card__body {
    position: absolute;
    bottom: 28px;
    right: 28px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.cat-card__title {
    font-family: var(--font);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}
.cat-card__meta {
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--blue-wave);
    margin-bottom: 6px;
    font-weight: 600;
}
.cat-card__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: grid; place-items: center;
    font-size: 14px;
    transition: all 0.4s var(--ease);
    flex-shrink: 0;
}
.cat-card:hover .cat-card__arrow {
    background: var(--blue-wave);
    border-color: var(--blue-wave);
    color: var(--navy-dark);
    transform: rotate(-45deg);
}

/* COLLECTIONS */
.collections {
    padding: 140px 0;
    background: var(--off-white);
    overflow: hidden;
}
.collections .section-head { padding: 0 40px; }
.collections .section-head__kicker { color: var(--navy); }
.collections .section-head__title { color: var(--navy-dark); }
.collections .section-head__link { color: var(--navy); border-color: var(--navy); }
.collections .section-head__link:hover { color: var(--navy-dark); border-color: var(--navy-dark); }
.coll-scroll {
    display: flex;
    gap: 28px;
    padding: 0 40px 20px;
    overflow-x: auto;
    /* scroll-snap-type: x mandatory; */
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}
.coll-scroll.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.coll-scroll.is-dragging a { pointer-events: none; }
.coll-scroll::-webkit-scrollbar { display: none; }
.coll-card {
    flex: 0 0 440px;
    scroll-snap-align: start;
    cursor: pointer;
    max-width: 85vw;
}
.coll-scroll.is-dragging .coll-card { cursor: grabbing; }
.coll-card__img {
    height: 540px;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s var(--ease);
    border-radius: 4px;
}
.coll-card:hover .coll-card__img { transform: translateY(-8px); }
.coll-card__num {
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font);
    font-size: 13px;
    color: var(--white);
    background: rgba(8, 26, 46, 0.4);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: 1px;
    font-weight: 600;
}
.coll-card__name {
    font-family: var(--font);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--navy-dark);
}
.coll-card__desc {
    color: var(--stone);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
    font-weight: 400;
}
.coll-card__tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 700;
}

/* EXPLORER */
.explorer {
    padding: 140px 40px;
    background: var(--cream);
}
.explorer__inner { max-width: var(--container); margin: 0 auto; }
.explorer .section-head__kicker { color: var(--navy); }
.explorer .section-head__title { color: var(--navy-dark); }
.explorer .section-head__link { color: var(--navy); border-color: var(--navy); }
.explorer__filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}
.chip {
    padding: 10px 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: var(--white);
    color: var(--navy-dark);
    transition: all 0.3s;
    cursor: pointer;
}
.chip:hover { border-color: var(--navy); }
.chip.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.prod-card { cursor: pointer; }
.prod-card__img {
    aspect-ratio: 3/4;
    background: var(--white);
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.prod-card__badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--navy);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 13px;
    border-radius: 999px;
}
.prod-card__quick {
    position: absolute;
    bottom: 0; right: 0; left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 14px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}
.prod-card:hover .prod-card__quick { transform: translateY(0); }
.prod-card__cat {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 6px;
}
.prod-card__name {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--navy-dark);
    line-height: 1.3;
}
.prod-card__price {
    font-size: 14px;
    color: var(--stone);
    font-weight: 600;
}

/* PROJECTS */
.projects {
    padding: 140px 40px;
    background: var(--off-white);
}
.projects__inner { max-width: var(--container); margin: 0 auto; }
.projects .section-head__kicker { color: var(--navy); }
.projects .section-head__title { color: var(--navy-dark); }
.projects .section-head__link { color: var(--navy); border-color: var(--navy); }
.proj-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}
.proj-grid + .proj-grid { grid-template-columns: 1fr 1.3fr; }
.proj-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    border-radius: 6px;
}
.proj-card__img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1s var(--ease);
}
.proj-card:hover .proj-card__img { transform: scale(1.05); }
.proj-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 26, 46, 0.85));
}
.proj-card__body {
    position: absolute;
    bottom: 30px; right: 30px; left: 30px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.proj-card__tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--blue-wave);
    margin-bottom: 10px;
    font-weight: 700;
}
.proj-card__name {
    font-family: var(--font);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
}
.proj-card__loc {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
    font-weight: 400;
}

/* B2B */
.b2b {
    padding: 140px 40px;
    background: var(--navy-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.b2b::before {
    content: '';
    position: absolute;
    bottom: -150px; left: -150px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 166, 200, 0.1), transparent 70%);
    pointer-events: none;
}
.b2b__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}
/* .b2b__content { max-width: 540px; } */
.b2b__kicker {
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--blue-wave);
    margin-bottom: 24px;
    font-weight: 700;
}
.b2b__title {
    font-family: var(--font);
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}
.b2b__text {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 36px;
    font-weight: 300;
}
.b2b__features {
    list-style: none;
    margin-bottom: 40px;
}
.b2b__features li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
}
.b2b__features i {
    color: var(--blue-wave);
    background: rgba(127, 166, 200, 0.15);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px;
}
.b2b__img {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

/* BRANDS */
.brands {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.brands__label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--stone);
    margin-bottom: 40px;
    font-weight: 700;
}
.marquee {
    display: flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee__item {
    font-family: var(--font);
    font-size: 28px;
    color: var(--stone);
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0.55;
    transition: opacity 0.3s;
    display: inline-flex;
    align-items: center;
    height: 60px;
}
.marquee__item:hover { opacity: 1; }
.marquee__logo {
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    transition: filter 0.3s;
}
.marquee__item:hover .marquee__logo { filter: grayscale(0); }
.marquee__name { display: none; }
.marquee__item:has(.marquee__logo[style*="display: none"]) .marquee__name { display: inline; }
@keyframes marquee { to { transform: translateX(50%); } }

/* SHOWROOMS */
.showrooms {
    padding: 140px 40px;
    background: var(--off-white);
}
.show-wrap {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.showrooms .section-head__kicker { color: var(--navy); }
.showrooms .section-head__title { color: var(--navy-dark); }
.show-list { list-style: none; }
.show-list li {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: padding 0.3s;
    cursor: pointer;
}
.show-list li:hover { padding-right: 12px; }
.show-list li:hover .show-list__arrow {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.show-list__city {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-dark);
}
.show-list__addr {
    font-size: 13px;
    color: var(--stone);
    line-height: 1.8;
    font-weight: 400;
}
.show-list__arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    display: grid; place-items: center;
    transition: all 0.4s;
    color: var(--navy);
    text-decoration: none;
    flex-shrink: 0;
}
.show-map {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--cream-2) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
}
.show-map__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.show-map__label {
    position: absolute;
    top: 20px; right: 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(15, 37, 64, 0.08);
    font-family: var(--font);
    font-size: 14px;
    color: var(--navy-dark);
    font-weight: 700;
    z-index: 2;
    pointer-events: none;
}
.show-map__pin-dot {
    width: 16px; height: 16px;
    background: var(--navy);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(27, 58, 92, 0.18), 0 4px 10px rgba(15, 37, 64, 0.25);
    animation: pinPulse 2.2s infinite;
}
@keyframes pinPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(27, 58, 92, 0.18), 0 4px 10px rgba(15, 37, 64, 0.25); }
    50% { box-shadow: 0 0 0 14px rgba(27, 58, 92, 0.05), 0 4px 10px rgba(15, 37, 64, 0.25); }
}
.show-map__popup .leaflet-popup-content-wrapper {
    background: var(--navy-dark);
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 37, 64, 0.25);
}
.show-map__popup .leaflet-popup-content {
    margin: 10px 14px;
    font-family: var(--font);
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}
.show-map__popup .leaflet-popup-content strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 2px;
}
.show-map__popup .leaflet-popup-tip { background: var(--navy-dark); }
.show-map__popup a.leaflet-popup-close-button { color: rgba(255,255,255,0.7); }
.leaflet-container { font-family: var(--font); background: var(--cream); }

/* TRUST */
.trust {
    padding: 100px 40px;
    background: var(--navy);
    color: var(--white);
}
.trust__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.trust__item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.trust__item:last-child { 
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
 }
.trust__num {
    font-family: var(--font);
    font-size: 64px;
    font-weight: 900;
    color: var(--blue-wave);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}
.trust__label {
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* CONTACT */
.contact {
    padding: 140px 40px;
    background: var(--off-white);
}
.contact__wrap {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__info { position: sticky; top: 120px; }
.contact .section-head__kicker { color: var(--navy); }
.contact__title {
    font-family: var(--font);
    font-size: clamp(38px, 4.6vw, 68px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--navy-dark);
    letter-spacing: -0.5px;
}
.contact__lead {
    color: var(--stone);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 48px;
    font-weight: 400;
}
.contact__items { list-style: none; }
.contact__items li {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 20px;
    align-items: center;
}
.contact__items li:last-child { border-bottom: 1px solid var(--line); }
.contact__icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 16px;
    flex-shrink: 0;
}
.contact__label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--stone);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact__value {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    direction: ltr;
    text-decoration: none;
    display: inline-block;
    transition: color 0.25s var(--ease);
}
a.contact__value:hover { color: var(--blue-wave); }
.form {
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(15, 37, 64, 0.06);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form__group { margin-bottom: 20px; }
.form__label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--stone);
    margin-bottom: 10px;
    font-weight: 700;
}
.form__input, .form__select, .form__textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--line-strong);
    background: var(--off-white);
    font-family: inherit;
    font-size: 15px;
    color: var(--navy-dark);
    transition: all 0.3s;
    border-radius: 4px;
    font-weight: 500;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: 0;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 58, 92, 0.08);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__submit {
    width: 100%;
    padding: 18px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form__submit:hover { background: var(--navy-dark); }
.form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form__input.is-invalid, .form__textarea.is-invalid, .form__select.is-invalid {
    border-color: #d93025;
    background: #fdecea;
}
.form__error-text {
    display: none;
    color: #d93025;
    font-size: 12.5px;
    margin-top: 6px;
    font-weight: 600;
}
.form__error-text.show { display: block; }
.form__status { display: none; padding: 14px 18px; border-radius: 4px; margin: 18px 0 6px; font-size: 14px; font-weight: 600; }
.form__status.is-loading, .form__status.is-success, .form__status.is-fail { display: block; }
.form__status .form__loading, .form__status .form__success, .form__status .form__fail { display: none; }
.form__status.is-loading { background: #eef3f9; color: var(--navy); }
.form__status.is-loading .form__loading { display: block; }
.form__status.is-success { background: #e6f4ea; color: #137333; }
.form__status.is-success .form__success { display: block; }
.form__status.is-fail { background: #fdecea; color: #c5221f; }
.form__status.is-fail .form__fail { display: block; }

/* FOOTER */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 100px 40px 40px;
    text-align: center;
}
.footer__grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line-light);
    justify-items: center;
}
.footer__brand-img {
    height: 56px;
    width: auto;
    margin-bottom: 24px;
    /* filter: brightness(0) invert(1); */
}
.footer__about {
    color: var(--white);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 380px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}
.footer__social {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.footer__social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line-light);
    display: grid; place-items: center;
    transition: all 0.3s;
    color: var(--white);
}
.footer__social a:hover {
    background: var(--blue-wave);
    border-color: var(--blue-wave);
    color: var(--navy-dark);
}
.footer__title {
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 800;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 12px; }
.footer__links a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
}
.footer__links a:hover { color: var(--blue-wave); }
.footer__bottom {
    max-width: var(--container);
    margin: 0 auto;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.5px;
    font-weight: 400;
}
.footer__copyright strong { font-weight: 800; }
.footer__legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__legal-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.footer__legal-links a:hover { color: var(--blue-wave); }
.footer__legal-links span { opacity: 0.6; }
.footer__powered { font-size: 12px; letter-spacing: 0.5px; direction: ltr; }
.footer__powered a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}
.footer__powered a:hover { color: var(--blue-wave); }
@media (min-width: 992px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: grid; place-items: center;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 50;
    transition: transform 0.3s;
    animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.75); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .nav { padding: 14px 24px; }
    .nav.scrolled { padding: 10px 24px; }
    .nav__toggle { display: flex; }
    .nav__actions { display: none; }
    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        /* bottom: 0; */
        width: min(78vw, 340px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        padding: 96px 28px 32px;
        box-shadow: -20px 0 60px rgba(15, 37, 64, 0.18);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 105;
        overflow-y: auto;
    }
    .nav__links.is-open { transform: translateX(0); }
    .nav__links li { width: 100%; border-bottom: 1px solid var(--line); }
    .nav__links a {
        color: var(--navy-dark);
        display: block;
        padding: 16px 4px;
        font-size: 17px;
        width: 100%;
    }
    .nav__links a::after { display: none; }
    .nav__lang-item { display: block; margin-top: 12px; border-bottom: 0 !important; }
    .nav__lang-item a {
        background: var(--navy);
        color: var(--white) !important;
        border-radius: 999px;
        text-align: center;
        font-weight: 700;
        padding: 14px 4px !important;
    }
    .nav__lang-item a i { margin-inline-end: 8px; }
    .cat-grid { grid-auto-rows: 220px; }
    .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .b2b__inner, .show-wrap, .contact__wrap { grid-template-columns: 1fr; gap: 40px; }
    .about__grid { grid-template-columns: 1fr; gap: 48px; }
    .div-grid { grid-template-columns: 1fr; gap: 20px; }
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .trust__item:nth-child(2) { border-right: 0; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact__info { position: static; }
}
@media (max-width: 640px) {
    .nav, .hero, .about, .divisions, .categories, .collections .section-head, .explorer,
    .projects, .b2b, .showrooms, .trust, .contact, .footer { padding-left: 20px; padding-right: 20px; }
    .about { padding-top: 90px; padding-bottom: 90px; }
    .about__head { margin-bottom: 44px; }
    .about__pillars { grid-template-columns: 1fr; }
    .divisions { padding-top: 80px; padding-bottom: 80px; }
    .div-card { padding: 28px 22px; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .cat-card:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .prod-grid { grid-template-columns: 1fr; }
    .proj-grid, .proj-grid + .proj-grid { grid-template-columns: 1fr; }
    .form { padding: 28px; }
    .form__row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .nav__brand { height: 42px; }
}
