/* ============================================
   KHODAL SAFE LOCKER — Stylesheet
   Theme: Navy + Gold (matches brand logo)
   Mobile-first, fully responsive
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy-900: #0a1530;
    --navy-800: #0c1a3a;
    --navy-700: #122452;
    --navy-600: #1a3170;
    --navy-500: #24428f;
    --gold-500: #d4a23a;
    --gold-400: #e2b85a;
    --gold-300: #f0d486;
    --gold-100: #fdf6e3;
    --cream:    #faf6ec;
    --silver:   #c7cfd9;
    --ink-900:  #0c1424;
    --ink-700:  #2e3a52;
    --ink-500:  #5a6679;
    --ink-300:  #aab3c0;
    --line:     #e6e9ef;
    --bg:       #ffffff;
    --bg-soft:  #f6f7fb;
    --shadow-sm: 0 2px 8px rgba(10, 21, 48, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 21, 48, 0.10);
    --shadow-lg: 0 24px 60px rgba(10, 21, 48, 0.18);
    --shadow-gold: 0 8px 24px rgba(212, 162, 58, 0.35);
    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --container: 1200px;
    --header-h:  78px;
    --topbar-h:  36px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --t-fast: 200ms ease;
    --t-med:  350ms cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink-900);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a   { color: var(--navy-700); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-500); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); line-height: 1.2; margin: 0 0 .6em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p  { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 162, 58, .5);
    color: var(--navy-900);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.35);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); }
.btn--whatsapp {
    background: #25d366;
    color: #fff;
}
.btn--whatsapp:hover { background: #1ebe5a; color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.topbar__left, .topbar__right {
    display: flex;
    gap: 18px;
    align-items: center;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
.topbar__item:hover { color: var(--gold-400); }
.topbar__item svg { color: var(--gold-400); }
@media (max-width: 640px) {
    .topbar__item--hide-sm { display: none; }
    .topbar { font-size: 12px; }
}

/* ---------- Header ---------- */
.header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand__logo {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}
.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy-900);
    letter-spacing: .5px;
}
.brand__name-accent { color: var(--gold-500); }
.brand__tag {
    font-size: 11px;
    color: var(--ink-500);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

/* ---------- Nav ---------- */
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}
.nav__link {
    display: inline-block;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink-900);
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    transition: color var(--t-fast);
}
.nav__link::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--t-med);
}
.nav__link:hover { color: var(--navy-700); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--navy-900); font-weight: 600; }
.nav__link.active::after { transform: scaleX(1); }
.nav__close, .nav__toggle { display: none; }
.nav__backdrop { display: none; }

.nav__toggle {
    background: none;
    border: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav__toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--navy-900);
    border-radius: 3px;
    transition: transform var(--t-med), opacity var(--t-fast);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 992px) {
    .nav__toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px;
        max-width: 85vw;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: -8px 0 32px rgba(0,0,0,.15);
        transition: right var(--t-med);
        z-index: 110;
    }
    .nav.open { right: 0; }
    .nav__list { flex-direction: column; width: 100%; gap: 4px; }
    .nav__link { width: 100%; padding: 14px 14px; font-size: 16px; }
    .nav__link::after { display: none; }
    .nav__link.active { background: var(--gold-100); color: var(--navy-900); }
    .nav__close {
        display: flex;
        position: absolute;
        top: 18px;
        right: 18px;
        background: none;
        border: none;
        color: var(--navy-900);
    }
    .nav__cta { margin-top: 16px; width: 100%; }
    .nav__backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(10, 21, 48, .6);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--t-med), visibility var(--t-med);
        z-index: 105;
    }
    .nav__backdrop.open { opacity: 1; visibility: visible; }
    .brand__tag { display: none; }

    /* FIX: Mobile drawer click bug.
       .header has z-index:100 and creates a stacking context, trapping .nav (z-index:110)
       inside it. .nav__backdrop sits outside at z-index:105, so it was rendering ABOVE
       the drawer and intercepting all taps. Lift the whole header above the backdrop
       while the drawer is open so the menu links become clickable. */
    body.nav-open .header { z-index: 115; }
    .nav { pointer-events: none; }
    .nav.open { pointer-events: auto; }
    .nav__link, .nav__close, .nav__cta { -webkit-tap-highlight-color: rgba(212, 162, 58, .25); }
}
@media (max-width: 480px) {
    .brand__name { font-size: 18px; }
    .brand__logo { width: 44px; height: 44px; }
    :root { --header-h: 70px; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 162, 58, .18), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(26, 49, 112, .25), transparent 50%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(212, 162, 58, .15);
    border: 1px solid rgba(212, 162, 58, .4);
    border-radius: 999px;
    color: var(--gold-300);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero__tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    box-shadow: 0 0 12px var(--gold-400);
}
.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}
.hero h1 .accent {
    color: var(--gold-400);
    font-style: italic;
}
.hero__lead {
    font-size: 17px;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 32px;
    max-width: 540px;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    max-width: 480px;
}
.hero__stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-400);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}
.hero__stat span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__visual::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,162,58,.25), transparent 70%);
    z-index: 0;
}
.hero__safe {
    position: relative;
    z-index: 2;
    max-width: 360px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    transform: rotate(-2deg);
    transition: transform var(--t-med);
}
.hero__safe:hover { transform: rotate(0deg) scale(1.02); }
.hero__badge {
    position: absolute;
    z-index: 3;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: var(--shadow-lg);
}
.hero__badge--tr {
    top: 30px;
    right: 0;
    transform: rotate(5deg);
}
.hero__badge--bl {
    bottom: 40px;
    left: 0;
    transform: rotate(-5deg);
    background: #fff;
    color: var(--navy-900);
}
.hero__badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 2px;
}
@media (max-width: 992px) {
    .hero__grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero__cta, .hero__stats { justify-content: center; margin-left: auto; margin-right: auto; }
    .hero__lead { margin-left: auto; margin-right: auto; }
    .hero__tag { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
    .hero { padding: 50px 0 70px; }
    .hero__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .hero__stat strong { font-size: 24px; }
    .hero__stat span { font-size: 10px; }
    .hero__safe { max-width: 280px; }
    .hero__badge { padding: 10px 14px; font-size: 11px; }
    .hero__badge strong { font-size: 16px; }
}

/* ---------- Sections ---------- */
.section {
    padding: 80px 0;
    position: relative;
}
.section--soft { background: var(--bg-soft); }
.section--dark {
    background: var(--navy-900);
    color: #fff;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.78); }

.section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 700;
    margin-bottom: 12px;
}
.section__head--left {
    text-align: left;
    margin: 0 0 40px;
}
@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .section__head { margin-bottom: 36px; }
}

/* ---------- Products grid ---------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-300);
}
.product-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-med);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}
.product-card__body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-card__cat {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 700;
    margin-bottom: 6px;
}
.product-card__title {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--navy-900);
}
.product-card__specs {
    list-style: none;
    margin: 0 0 18px;
    padding: 14px 0;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    font-size: 13px;
}
.product-card__specs li {
    display: flex;
    flex-direction: column;
    color: var(--ink-700);
}
.product-card__specs strong {
    color: var(--navy-900);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 2px;
    color: var(--ink-500);
}
.product-card__specs span { color: var(--navy-900); font-weight: 600; }
.product-card__desc {
    font-size: 14px;
    color: var(--ink-700);
    margin-bottom: 18px;
    flex: 1;
}
.product-card__cta {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.product-card__cta .btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
}

/* ---------- Industries ---------- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.industry-card {
    padding: 32px 26px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-500);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--t-med);
}
.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-300);
    box-shadow: var(--shadow-md);
}
.industry-card:hover::before { transform: scaleY(1); }
.industry-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gold-100);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}
.industry-card h3 { font-size: 18px; margin-bottom: 8px; }
.industry-card p  { font-size: 14px; margin: 0; }

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    counter-reset: why;
}
.why-card {
    position: relative;
    padding: 32px 28px 28px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    counter-increment: why;
    transition: transform var(--t-fast), border-color var(--t-fast);
}
.why-card:hover { transform: translateY(-4px); border-color: var(--gold-400); }
.why-card::before {
    content: counter(why, decimal-leading-zero);
    position: absolute;
    top: -16px;
    left: 26px;
    background: var(--gold-500);
    color: var(--navy-900);
    width: 44px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p  { font-size: 14px; margin: 0; }

/* ---------- About sections ---------- */
.about-hero {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.about-hero h1 { color: #fff; }
.about-hero p  { color: rgba(255,255,255,.8); max-width: 700px; margin: 0 auto; font-size: 17px; }
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.breadcrumbs a { color: var(--gold-400); }
.breadcrumbs span { color: rgba(255,255,255,.4); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-grid__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-grid__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,21,48,.25), transparent 60%);
}
.about-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}
.about-features li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.about-features svg {
    flex-shrink: 0;
    color: var(--gold-500);
    margin-top: 2px;
}
.about-features strong { display: block; color: var(--navy-900); margin-bottom: 2px; }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}
.contact-info {
    background: var(--navy-900);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.contact-info::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,162,58,.15), transparent 70%);
    top: -80px;
    right: -80px;
    border-radius: 50%;
}
.contact-info h2 { color: #fff; }
.contact-info__list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 22px; }
.contact-info__list li { display: flex; gap: 14px; align-items: flex-start; position: relative; z-index: 1; }
.contact-info__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212,162,58,.15);
    color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info__label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-300); font-weight: 600; margin-bottom: 4px; display: block; }
.contact-info__value { color: rgba(255,255,255,.92); font-size: 15px; line-height: 1.5; }
.contact-info__value a { color: rgba(255,255,255,.92); }
.contact-info__value a:hover { color: var(--gold-400); }
.contact-info__socials { display: flex; gap: 10px; margin-top: 24px; position: relative; z-index: 1; }
.contact-info__socials a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t-fast);
}
.contact-info__socials a:hover { background: var(--gold-500); color: var(--navy-900); }

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form h2 { margin-bottom: 8px; }
.contact-form > p { color: var(--ink-500); margin-bottom: 24px; }
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--navy-900);
    background: #fff;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 162, 58, .15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 28px 22px; }
    .form-grid { grid-template-columns: 1fr; }
}

/* Generic alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
}
.alert--success { background: #e6f7ec; color: #156c2f; border: 1px solid #b7e3c4; }
.alert--error   { background: #fdecec; color: #a31515; border: 1px solid #f5b6b6; }

/* ---------- Privacy / Article ---------- */
.article {
    max-width: 820px;
    margin: 0 auto;
}
.article h2 { margin-top: 36px; font-size: 1.6rem; }
.article h3 { margin-top: 24px; font-size: 1.2rem; }
.article p, .article li { font-size: 15.5px; }
.article ul { padding-left: 22px; }
.article ul li { margin-bottom: 8px; }

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-900);
    color: rgba(255,255,255,.75);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}
.footer__decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(212,162,58,.12), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(26,49,112,.4), transparent 50%);
    pointer-events: none;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
}
.footer__col h4 { color: #fff; }
.footer__title {
    font-size: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold-400);
}
.footer__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    text-decoration: none;
    color: #fff;
}
.footer__brand img { width: 56px; height: 56px; border-radius: 10px; }
.footer__brand strong { display: block; font-family: var(--font-display); font-size: 22px; color: #fff; }
.footer__brand em { font-style: normal; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-400); }
.footer__about { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 22px; max-width: 380px; }

.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__list a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer__list a:hover { color: var(--gold-400); padding-left: 4px; }

.footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.footer__contact li { display: flex; gap: 12px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer__contact svg { color: var(--gold-400); flex-shrink: 0; margin-top: 3px; }
.footer__contact a { color: rgba(255,255,255,.85); }
.footer__contact a:hover { color: var(--gold-400); }

.footer__bottom {
    background: rgba(0,0,0,.25);
    padding: 18px 0;
    margin-top: 50px;
    position: relative;
}
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.footer__bottom-inner p { margin: 0; }
.footer__bottom-inner strong { color: var(--gold-400); }
@media (max-width: 992px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
    z-index: 90;
    transition: transform var(--t-fast);
    animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }
.wa-float__tip {
    position: absolute;
    left: calc(100% + 12px);
    background: var(--navy-900);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-fast);
}
.wa-float__tip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--navy-900);
}
.wa-float:hover .wa-float__tip { opacity: 1; }
@keyframes wa-pulse {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .6); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 640px) {
    .wa-float { bottom: 18px; left: 18px; width: 52px; height: 52px; }
    .wa-float svg { width: 24px; height: 24px; }
    .wa-float__tip { display: none; }
}

/* ---------- Have a Query popup ---------- */
.query-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(10, 21, 48, .35);
    z-index: 95;
    transform: translateY(20px) scale(.95);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-med), opacity var(--t-med), visibility var(--t-med);
    overflow: hidden;
    border: 1px solid var(--line);
}
.query-popup.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}
.query-popup__inner { padding: 22px 22px 24px; max-height: calc(100vh - 80px); overflow-y: auto; }
.query-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-500);
    transition: background var(--t-fast), color var(--t-fast);
}
.query-popup__close:hover { background: var(--gold-100); color: var(--navy-900); }

.query-popup__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0 0 8px;
    padding-right: 30px;
    line-height: 1.2;
}
.query-popup__text {
    font-size: 14.5px;
    color: var(--ink-700);
    margin: 0 0 18px;
    line-height: 1.5;
}

.query-popup__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    margin-bottom: 10px;
    -webkit-tap-highlight-color: transparent;
}
.query-popup__btn:last-child { margin-bottom: 0; }
.query-popup__btn svg { flex-shrink: 0; }

.query-popup__btn--wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, .35);
}
.query-popup__btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, .45);
}

.query-popup__btn--call {
    background: #fff;
    color: #128C7E;
    border: 2px solid #128C7E;
}
.query-popup__btn--call:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .query-popup { width: calc(100vw - 24px); right: 12px; bottom: 80px; }
    .query-popup__title { font-size: 20px; }
    .query-popup__text { font-size: 14px; }
    .query-popup__btn { padding: 13px 16px; font-size: 14.5px; }
}
/* Query FAB (visible after popup closed) */
.query-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    border: none;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    display: none;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
    z-index: 90;
    cursor: pointer;
    transition: transform var(--t-fast);
}
.query-fab.show { display: inline-flex; animation: bounce-in .5s; }
.query-fab:hover { transform: translateY(-3px); }
@keyframes bounce-in {
    0% { transform: scale(.5); opacity: 0; }
    60% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}
@media (max-width: 640px) {
    .query-fab { bottom: 18px; right: 18px; padding: 10px 16px; font-size: 13px; }
}

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Gallery strip ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}
.gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform var(--t-med);
    box-shadow: var(--shadow-sm);
}
.gallery img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ---------- CTA banner ---------- */
.cta-banner {
    background:
        radial-gradient(circle at 80% 50%, rgba(212,162,58,.25), transparent 50%),
        linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(212,162,58,.18);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}
.cta-banner__content h2 { color: #fff; margin-bottom: 8px; }
.cta-banner__content p  { color: rgba(255,255,255,.8); margin: 0; max-width: 540px; }
.cta-banner__btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
@media (max-width: 640px) {
    .cta-banner { padding: 30px 24px; }
    .cta-banner__btns { width: 100%; }
    .cta-banner__btns .btn { flex: 1; }
}
