/* ============================================================
   Shashank Tax Consultant — Premium Stylesheet
   Theme: Deep Navy + Gold accents
   ============================================================ */

:root {
    /* Colors */
    --navy-900: #071a34;
    --navy-800: #0b2447;
    --navy-700: #123058;
    --navy-600: #19376d;
    --navy-500: #274f8a;

    --gold-500: #c9a24b;
    --gold-400: #d9b968;
    --gold-300: #e8cf94;

    --teal-500: #0f9b8e;

    --ink: #0e1b2c;
    --slate: #55627a;
    --muted: #8590a3;
    --line: #e6eaf1;
    --bg: #ffffff;
    --bg-soft: #f5f7fb;
    --bg-navy-soft: #eef2f9;

    --white: #ffffff;

    /* Effects */
    --shadow-sm: 0 2px 8px rgba(11, 36, 71, 0.06);
    --shadow-md: 0 10px 30px rgba(11, 36, 71, 0.08);
    --shadow-lg: 0 24px 60px rgba(11, 36, 71, 0.14);
    --shadow-gold: 0 12px 30px rgba(201, 162, 75, 0.35);

    --radius: 14px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --container: 1180px;
    --gutter: clamp(20px, 5vw, 40px);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-head: 'Lato', system-ui, sans-serif;
    --font-body: 'Lato', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--ink); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.ico { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.text-gradient {
    background: linear-gradient(100deg, var(--gold-400), var(--gold-500) 60%, var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-pill);
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.2px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--primary {
    background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(11,36,71,0.28); }
.btn--gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201,162,75,0.5); }
.btn--ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }

/* ---------- Top Bar ---------- */
.topbar {
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 42px; }
.topbar__contact { display: flex; gap: 22px; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.82); transition: color 0.25s; }
.topbar__item:hover { color: var(--gold-400); }
.topbar__social { display: flex; gap: 10px; }
.topbar__social a {
    display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.08); transition: background 0.25s, transform 0.25s;
}
.topbar__social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s, background 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.95); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }

/* Brand + Logo placeholder */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo {
    display: grid; place-items: center;
    width: 48px; height: 48px; border-radius: 13px;
    background: linear-gradient(140deg, var(--navy-600), var(--navy-900));
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
}
.brand__logo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 55%, rgba(201,162,75,0.55));
}
.brand__logo-mark { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 800; color: var(--gold-300); font-size: 1rem; letter-spacing: 0.5px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__text strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); font-weight: 700; }
.brand__text small { font-size: 0.72rem; color: var(--gold-500); font-weight: 600; letter-spacing: 0.4px; }

/* Nav */
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
    padding: 9px 15px; border-radius: var(--radius-pill);
    font-weight: 500; font-size: 0.94rem; color: var(--slate);
    transition: color 0.25s, background 0.25s;
}
.nav__link:hover { color: var(--navy-800); background: var(--bg-navy-soft); }
.nav__cta { margin-left: 10px; }

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

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(60px, 9vw, 110px) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero__bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(circle at 15% 20%, rgba(25,55,109,0.08), transparent 40%),
        radial-gradient(circle at 85% 10%, rgba(201,162,75,0.12), transparent 42%),
        linear-gradient(180deg, var(--bg-soft), var(--white));
}
.hero__bg::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 60% 30%, black, transparent 70%);
    mask-image: radial-gradient(circle at 60% 30%, black, transparent 70%);
    opacity: 0.5;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

.pill {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 8px 16px; border-radius: var(--radius-pill);
    background: var(--white); border: 1px solid var(--line);
    font-size: 0.83rem; font-weight: 600; color: var(--navy-700);
    box-shadow: var(--shadow-sm);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(15,155,142,0.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(15,155,142,0); } }

.hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -1px; margin: 22px 0 20px; }
.hero__subtitle { font-size: 1.08rem; color: var(--slate); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.hero__actions .btn--ghost { background: var(--navy-800); border-color: var(--navy-800); }
.hero__actions .btn--ghost:hover { background: var(--navy-900); }

.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__avatars { display: flex; }
.hero__avatars .avatar-ph { margin-left: -12px; border: 3px solid var(--white); }
.hero__avatars .avatar-ph:first-child { margin-left: 0; }
.hero__trust p { font-size: 0.92rem; color: var(--slate); }

/* Avatar placeholder */
.avatar-ph {
    display: grid; place-items: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-500), var(--navy-700));
    color: rgba(255,255,255,0.6); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.5px;
}
.avatar-ph--sm { width: 44px; height: 44px; }

/* Hero visual + image placeholder */
.hero__visual { position: relative; }
.img-ph {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    background:
        repeating-linear-gradient(45deg, rgba(25,55,109,0.03) 0 12px, transparent 12px 24px),
        linear-gradient(160deg, var(--bg-navy-soft), #dfe7f4);
    border: 2px dashed rgba(25,55,109,0.22);
    border-radius: var(--radius-lg);
    color: var(--navy-600); text-align: center; font-weight: 600; font-size: 0.95rem;
    padding: 30px;
}
.img-ph small { font-weight: 500; color: var(--muted); font-size: 0.8rem; }
.img-ph__icon { width: 54px; height: 54px; fill: rgba(25,55,109,0.35); }
.img-ph--hero { aspect-ratio: 4/4.4; box-shadow: var(--shadow-lg); }
.img-ph--about { aspect-ratio: 4/4.6; box-shadow: var(--shadow-md); }
/* When a real image is dropped in, these render it cleanly (no dashed border) */
img.img-ph--hero, img.img-ph--about { width: 100%; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.brand__logo img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; position: relative; z-index: 2; }
.brand__logo:has(img)::after { display: none; }
img.avatar-ph { object-fit: cover; }

.hero__badge {
    position: absolute; display: flex; align-items: center; gap: 12px;
    background: var(--white); padding: 12px 16px; border-radius: 14px;
    box-shadow: var(--shadow-lg); animation: float 5s ease-in-out infinite;
}
.hero__badge strong { display: block; font-family: var(--font-head); font-size: 0.92rem; color: var(--ink); }
.hero__badge span { font-size: 0.76rem; color: var(--muted); }
.hero__badge-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; font-weight: 700; color: var(--white); }
.hero__badge--1 { top: 8%; left: -6%; }
.hero__badge--1 .hero__badge-icon { background: linear-gradient(135deg, var(--teal-500), #0c7a70); }
.hero__badge--2 { bottom: 10%; right: -5%; animation-delay: 1.4s; }
.hero__badge--2 .hero__badge-icon { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); }
@keyframes float { 50% { transform: translateY(-12px); } }

/* ---------- Stats ---------- */
.stats { margin-top: -46px; position: relative; z-index: 2; }
.stats__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
    border-radius: var(--radius-lg); padding: 40px clamp(20px, 4vw, 40px);
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
}
.stats__grid::before {
    content: ''; position: absolute; top: -50%; right: -10%; width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(201,162,75,0.22), transparent 70%);
}
.stat { text-align: center; position: relative; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }
.stat__num { display: block; font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: var(--gold-400); }
.stat__label { font-size: 0.88rem; color: rgba(255,255,255,0.78); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.eyebrow {
    display: inline-block; font-family: var(--font-head); font-weight: 700;
    font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-500);
    margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.5px; }
.section__lead { color: var(--slate); font-size: 1.05rem; margin-top: 16px; }
.section__lead.center { max-width: 640px; margin-inline: auto; }
.section__head { text-align: center; margin-bottom: 52px; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.about__visual { position: relative; }
.about__exp-card {
    position: absolute; bottom: -24px; right: -18px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-900); padding: 18px 22px; border-radius: 16px;
    box-shadow: var(--shadow-gold); max-width: 190px;
}
.about__exp-num { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; }
.about__exp-txt { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.about__content p { color: var(--slate); margin-bottom: 14px; }
.about__list { margin: 24px 0 30px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.tick { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(15,155,142,0.14); color: var(--teal-500); font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }

/* ---------- Services ---------- */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 26px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-500)); transition: width 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-card__icon {
    display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
    background: var(--bg-navy-soft); margin-bottom: 20px; transition: background 0.35s;
}
.service-card__icon svg { width: 28px; height: 28px; fill: var(--navy-600); transition: fill 0.35s; }
.service-card:hover .service-card__icon { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.service-card:hover .service-card__icon svg { fill: var(--gold-400); }
.service-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--slate); }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
    padding: 32px 26px; border-radius: var(--radius);
    background: linear-gradient(160deg, var(--white), var(--bg-soft));
    border: 1px solid var(--line); transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card__num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--gold-400); opacity: 0.5; margin-bottom: 10px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--slate); }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: var(--white); position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; top: 0; left: 50%; width: 700px; height: 700px; transform: translate(-50%,-55%); background: radial-gradient(circle, rgba(201,162,75,0.14), transparent 65%); }
.process .eyebrow { color: var(--gold-400); }
.process .section__title { color: var(--white); }
.process .section__lead { color: rgba(255,255,255,0.72); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 30px 24px; backdrop-filter: blur(4px);
    transition: transform 0.35s var(--ease), background 0.35s;
}
.process-step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.09); }
.process-step__num {
    display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900);
    font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: 18px;
}
.process-step h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px 28px; box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial__stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1rem; color: var(--ink); line-height: 1.7; margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial figcaption strong { display: block; font-family: var(--font-head); font-size: 0.95rem; }
.testimonial figcaption small { color: var(--muted); font-size: 0.82rem; }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 0 0 clamp(20px, 4vw, 40px); }
.cta-banner__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
    background: linear-gradient(120deg, var(--navy-700), var(--navy-900));
    border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px);
    position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-banner__inner::before { content: ''; position: absolute; right: -6%; top: -40%; width: 380px; height: 380px; background: radial-gradient(circle, rgba(201,162,75,0.25), transparent 68%); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); max-width: 560px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-top: 12px; max-width: 520px; }
.cta-banner__note { display: block; margin-top: 14px; font-size: 0.82rem; color: var(--gold-300); font-weight: 600; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 60px); align-items: start; }
.contact__list { margin: 30px 0; display: grid; gap: 20px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--bg-navy-soft); flex-shrink: 0; }
.contact__ico svg { width: 22px; height: 22px; fill: var(--navy-600); }
.contact__list small { display: block; font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; }
.contact__list a, .contact__list span { color: var(--ink); font-weight: 500; }
.contact__list a:hover { color: var(--navy-600); }
.contact__socials { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__socials a {
    display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: var(--radius-pill);
    border: 1px solid var(--line); font-weight: 600; font-size: 0.9rem; color: var(--navy-700);
    transition: background 0.25s, color 0.25s, transform 0.25s;
}
.contact__socials a:hover { background: var(--navy-800); color: var(--white); transform: translateY(-2px); }
.contact__socials a:hover .ico { fill: var(--gold-400); }

/* Form */
.contact__form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.contact__form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--slate); margin-bottom: 7px; }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
    font-size: 0.95rem; color: var(--ink); background: var(--bg-soft); transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none; border-color: var(--navy-500); background: var(--white);
    box-shadow: 0 0 0 4px rgba(39,79,138,0.12);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 0.9rem; font-weight: 600; }
.form-note.success { background: rgba(15,155,142,0.12); color: #0c7a70; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.72); padding-top: 64px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.brand--footer .brand__text strong { color: var(--white); }
.footer__brand > p { margin: 18px 0; font-size: 0.92rem; max-width: 320px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); transition: background 0.25s, transform 0.25s; }
.footer__social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer__col h4 { color: var(--white); font-size: 1rem; margin-bottom: 18px; }
.footer__col a, .footer__addr { display: block; color: rgba(255,255,255,0.68); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.25s; }
.footer__col a:hover { color: var(--gold-400); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ---------- Floating Action Buttons (speed dial) ---------- */
.fab { position: fixed; bottom: 26px; right: 26px; z-index: 95; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fab__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.fab__btn {
    position: relative; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
    color: var(--white); box-shadow: 0 10px 24px rgba(11,36,71,0.28);
    opacity: 0; transform: translateY(16px) scale(0.6); pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.25s;
}
.fab.open .fab__btn { opacity: 1; transform: none; pointer-events: auto; }
.fab.open .fab__btn:nth-child(1) { transition-delay: 0.12s; }
.fab.open .fab__btn:nth-child(2) { transition-delay: 0.06s; }
.fab.open .fab__btn:nth-child(3) { transition-delay: 0s; }
.fab__btn svg { width: 25px; height: 25px; fill: currentColor; }
.fab__btn:hover { transform: scale(1.1); }
.fab__btn--call { background: linear-gradient(135deg, #2f80ed, #1c5fc4); }
.fab__btn--wa   { background: linear-gradient(135deg, #2bd06a, #1aa851); }
.fab__btn--slot { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--navy-900); }
.fab__tip {
    position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
    background: var(--navy-900); color: var(--white); font-size: 0.8rem; font-weight: 600;
    padding: 6px 12px; border-radius: 8px; white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.2s; box-shadow: var(--shadow-sm);
}
.fab__tip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--navy-900); }
.fab__btn:hover .fab__tip { opacity: 1; }
.fab__toggle {
    display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--white);
    box-shadow: 0 12px 30px rgba(11,36,71,0.4); transition: transform 0.35s var(--ease), box-shadow 0.25s;
}
.fab__toggle:hover { box-shadow: 0 16px 36px rgba(11,36,71,0.5); }
.fab__toggle svg { width: 28px; height: 28px; fill: currentColor; position: absolute; transition: opacity 0.3s, transform 0.35s var(--ease); }
.fab__toggle .fab__icon-close { opacity: 0; transform: rotate(-90deg); }
.fab.open .fab__toggle { transform: rotate(360deg); background: linear-gradient(135deg, #1b2a44, #050f1f); }
.fab.open .fab__toggle .fab__icon-open { opacity: 0; transform: rotate(90deg); }
.fab.open .fab__toggle .fab__icon-close { opacity: 1; transform: rotate(0); }
.fab__toggle::before {
    content: ''; position: absolute; inset: -6px; border-radius: 50%;
    background: rgba(201,162,75,0.35); z-index: -1; animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse { 0% { transform: scale(0.9); opacity: 0.7; } 70% { transform: scale(1.4); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   Booking page
   ============================================================ */
.subpage-hero {
    position: relative; overflow: hidden; text-align: center;
    padding: clamp(50px, 8vw, 90px) 0 clamp(40px, 6vw, 70px);
    background:
        radial-gradient(circle at 20% 20%, rgba(201,162,75,0.14), transparent 45%),
        linear-gradient(160deg, var(--navy-800), var(--navy-900));
    color: var(--white);
}
.subpage-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 46px 46px; -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%); mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
}
.subpage-hero__inner { position: relative; }
.subpage-hero h1 { color: var(--white); font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 900; }
.subpage-hero p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 16px auto 0; font-size: 1.05rem; }
.subpage-hero .breadcrumb { font-size: 0.85rem; color: var(--gold-300); font-weight: 600; margin-bottom: 14px; }
.subpage-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.subpage-hero .breadcrumb a:hover { color: var(--gold-300); }

/* Two-choice quick actions */
.quick-actions { margin-top: -34px; position: relative; z-index: 3; }
.quick-actions__card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 38px); text-align: center;
}
.quick-actions__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.quick-actions__note { color: var(--slate); font-size: 0.95rem; margin-top: 18px; }

/* Value cards row */
.value-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 34px 26px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card__icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 16px; background: var(--bg-navy-soft); }
.value-card__icon svg { width: 30px; height: 30px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.value-card p { color: var(--slate); font-size: 0.94rem; }

/* How it works (light list) */
.steps-list { max-width: 720px; margin: 0 auto; display: grid; gap: 22px; }
.step-row { display: flex; gap: 18px; align-items: flex-start; }
.step-row__num {
    flex-shrink: 0; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-navy-soft); color: var(--navy-700); font-weight: 800; font-family: var(--font-head);
}
.step-row h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step-row p { color: var(--slate); font-size: 0.95rem; }

/* Slot booking widget */
.booking { background: var(--bg-soft); }
.booking__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.booking__panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 36px); box-shadow: var(--shadow-md); }
.booking__panel h3 { font-size: 1.25rem; margin-bottom: 6px; }
.booking__panel .muted { color: var(--muted); font-size: 0.9rem; margin-bottom: 22px; }
.booking__label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin: 22px 0 12px; }
.booking__label:first-of-type { margin-top: 0; }

.date-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 10px; }
.date-chip {
    border: 1.5px solid var(--line); border-radius: 12px; padding: 10px 6px; text-align: center;
    background: var(--white); transition: border-color 0.2s, background 0.2s, transform 0.2s; cursor: pointer;
}
.date-chip:hover { border-color: var(--navy-500); transform: translateY(-2px); }
.date-chip.selected { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); border-color: transparent; color: var(--white); }
.date-chip__dow { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.date-chip.selected .date-chip__dow { color: rgba(255,255,255,0.75); }
.date-chip__day { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; line-height: 1.1; }
.date-chip__mon { display: block; font-size: 0.72rem; color: var(--muted); }
.date-chip.selected .date-chip__mon { color: rgba(255,255,255,0.75); }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.slot-chip {
    border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 8px; text-align: center;
    font-weight: 600; font-size: 0.9rem; background: var(--white); cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
.slot-chip:hover { border-color: var(--navy-500); transform: translateY(-2px); }
.slot-chip.selected { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); border-color: transparent; color: var(--navy-900); }

.booking__summary {
    position: sticky; top: 100px;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: var(--white);
    border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 34px); box-shadow: var(--shadow-lg);
}
.booking__summary h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 18px; }
.booking__summary .field label { color: rgba(255,255,255,0.8); }
.booking__summary .field input, .booking__summary .field textarea {
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); color: var(--white);
}
.booking__summary .field input::placeholder, .booking__summary .field textarea::placeholder { color: rgba(255,255,255,0.45); }
.booking__summary .field input:focus, .booking__summary .field textarea:focus { background: rgba(255,255,255,0.1); border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(201,162,75,0.18); }
.selected-slot { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.07); border: 1px dashed rgba(255,255,255,0.25); border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; font-size: 0.92rem; }
.selected-slot svg { width: 22px; height: 22px; fill: var(--gold-400); flex-shrink: 0; }
.selected-slot strong { color: var(--gold-300); }
.booking__confirm-note { margin-top: 14px; font-size: 0.85rem; color: rgba(255,255,255,0.7); text-align: center; }
.btn--wa { background: linear-gradient(135deg, #2bd06a, #1aa851); color: var(--white); box-shadow: 0 10px 26px rgba(26,168,81,0.4); }
.btn--wa:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(26,168,81,0.5); }
.btn--wa svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 992px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { max-width: 460px; margin-inline: auto; }
    .about__grid { grid-template-columns: 1fr; }
    .about__visual { max-width: 440px; margin-inline: auto; }
    .services__grid, .why__grid, .process__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
    .contact__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .booking__grid { grid-template-columns: 1fr; }
    .booking__summary { position: static; }
}

@media (max-width: 768px) {
    .topbar { font-size: 0.8rem; }
    .topbar__contact .topbar__item:last-child { display: none; }
    .topbar__inner { height: 40px; }
    .header__inner { height: 66px; }
    .brand__logo { width: 42px; height: 42px; }
    .brand__text strong { font-size: 0.98rem; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(82%, 320px);
        background: var(--white); flex-direction: column; align-items: stretch; justify-content: flex-start;
        padding: 96px 26px 40px; gap: 6px; box-shadow: -20px 0 60px rgba(11,36,71,0.18);
        transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 99;
    }
    .nav.open { transform: translateX(0); }
    .nav__link { padding: 13px 16px; font-size: 1rem; }
    .nav__cta { margin: 12px 0 0; text-align: center; }
    .nav__toggle { display: flex; z-index: 100; }

    /* Hero: tighter layout, badges pinned to real corners so they don't cover the image */
    .hero { padding: 40px 0 56px; }
    .hero__title { margin: 18px 0 16px; }
    .hero__subtitle { font-size: 1rem; }
    .hero__actions { margin: 26px 0 24px; gap: 12px; }
    .hero__visual { max-width: 380px; }
    .img-ph--hero { aspect-ratio: 3 / 2.5; padding: 20px; }
    .img-ph__icon { width: 42px; height: 42px; }
    .hero__badge { padding: 9px 12px; gap: 9px; border-radius: 12px; }
    .hero__badge strong { font-size: 0.8rem; }
    .hero__badge span { font-size: 0.68rem; }
    .hero__badge-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .hero__badge--1 { top: 10px; left: 10px; }
    .hero__badge--2 { bottom: 10px; right: 10px; }

    /* Stats: 2x2 with breathing room, labels never clipped */
    .stats { margin-top: -36px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; padding: 32px 20px; }
    .stat:nth-child(odd) { border-left: none; }
    .stat__label { font-size: 0.82rem; line-height: 1.3; }

    /* Value cards / grids stack to 2 then 1 */
    .value-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .services__grid, .why__grid, .process__grid, .value-cards { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .field-row { grid-template-columns: 1fr; }
    .cta-banner__inner { flex-direction: column; align-items: flex-start; }
    .cta-banner__inner .btn { width: 100%; }

    /* Full-width, easy-tap buttons */
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .quick-actions__btns { flex-direction: column; }
    .quick-actions__btns .btn { width: 100%; }

    /* Section spacing a touch tighter on phones */
    .section { padding: 52px 0; }
    .section__head { margin-bottom: 36px; }

    /* Contact list & socials */
    .contact__socials a { flex: 1 1 auto; justify-content: center; }
    .footer__bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

    /* Booking chips fit small screens */
    .date-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); }
    .slot-grid { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); }

    /* Smaller floating buttons so they don't crowd content */
    .fab { bottom: 18px; right: 16px; gap: 12px; }
    .fab__btn { width: 46px; height: 46px; }
    .fab__btn svg { width: 22px; height: 22px; }
    .fab__toggle { width: 54px; height: 54px; }
    .fab__toggle svg { width: 24px; height: 24px; }
}

@media (max-width: 380px) {
    .hero__title { font-size: 1.95rem; }
    .stats__grid { gap: 26px 6px; }
    .stat__num { font-size: 1.75rem; }
    .hero__badge span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
