/* ==========================================================================
   Chiomaxx Xpress — Premium Bus Charter Services
   Master stylesheet. Edit brand colours in the :root block below.
   ========================================================================== */

:root {
  /* Brand palette */
  --cyan:        #1FA5E0;   /* primary */
  --cyan-light:  #6CCBEF;   /* gradient start */
  --cyan-mid:    #1C94CF;   /* gradient end */
  --cyan-deep:   #1C84C2;   /* outlines / borders */
  --navy:        #13294B;   /* dark sections */
  --navy-soft:   #1b3a66;
  --gold:        #C9A14C;   /* accent */
  --gold-light:  #e0c178;
  --pink:        #EE6FA6;   /* subtle accent — a hint of pink */
  --pink-light:  #F7A8CC;
  --pink-soft:   #fdeaf3;   /* very light pink wash */
  --white:       #ffffff;
  --ink:         #16222e;   /* body text on light */
  --muted:       #5a6b7a;   /* secondary text */
  --bg-soft:     #f4f9fd;   /* tinted section bg */
  --line:        #e3edf5;

  --grad-cyan:   linear-gradient(135deg, var(--cyan-light) 0%, var(--cyan-mid) 100%);
  --grad-navy:   linear-gradient(150deg, #13294B 0%, #1b3a66 100%);
  --grad-accent: linear-gradient(135deg, var(--cyan-mid) 0%, var(--pink) 100%);

  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 18px 50px -18px rgba(19, 41, 75, .28);
  --shadow-sm:   0 10px 30px -14px rgba(19, 41, 75, .25);
  --max:         1180px;
  --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--grad-navy); color: #eaf3fb; }
.center { text-align: center; }
.lead { color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.15rem); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  font-size: .72rem; color: var(--cyan-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--grad-accent); }
.center .eyebrow { display: inline-flex; }
.section--navy .eyebrow { color: var(--gold-light); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
h1 { font-weight: 900; font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-weight: 900; font-size: clamp(1.7rem, 4.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }
.section__head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 56px); }

.gold { color: var(--gold); }
.text-grad {
  background: var(--grad-cyan); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 800; font-size: .95rem; letter-spacing: .01em;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary { background: var(--grad-cyan); color: #fff; box-shadow: 0 12px 26px -10px rgba(28,148,207,.7); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -12px rgba(28,148,207,.75); }
.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #2b2412; box-shadow: 0 12px 26px -12px rgba(201,161,76,.8); }
.btn--gold:hover { transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--cyan-deep); border-color: var(--cyan-deep); }
.btn--ghost:hover { background: var(--cyan-deep); color: #fff; }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 18px 36px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }

/* ===== LOGO ===== */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__img { height: 46px; width: auto; display: block; }
.footer .logo__img { background: #fff; padding: 7px 12px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.logo__mark {
  width: 46px; height: 46px; border-radius: 12px; background: var(--grad-cyan);
  display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 1.15rem;
  box-shadow: 0 8px 18px -8px rgba(28,148,207,.8); flex: none;
}
.logo__txt { display: flex; flex-direction: column; line-height: 1; }
.logo__txt b { font-weight: 900; font-size: 1.12rem; color: var(--navy); letter-spacing: -.02em; }
.logo__txt span { font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan-deep); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 700; font-size: .92rem; color: var(--navy); padding: 10px 14px; border-radius: 10px;
  transition: color .2s, background .2s; position: relative;
}
.nav__links a:hover { color: var(--cyan-deep); background: var(--bg-soft); }
.nav__links a.active { color: var(--cyan-deep); }
.nav__links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad-cyan); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav__toggle span { width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; padding: 16px 22px 26px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .35s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 12px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a.active::after { display: none; }
  .nav__links .btn { margin-top: 12px; }
  .nav__cta .btn--ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
/* ===== SWAP: replace hero background image URL in HTML inline style / here ===== */
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(11,26,48,.94) 0%, rgba(13,30,55,.82) 42%, rgba(19,41,75,.45) 72%, rgba(28,132,194,.25) 100%),
    radial-gradient(120% 90% at 85% 110%, rgba(28,132,194,.35), transparent 60%),
    radial-gradient(70% 60% at 0% 0%, rgba(238,111,166,.22), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; padding: clamp(64px, 11vw, 132px) 0 clamp(72px, 11vw, 128px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); padding: 9px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink-light); box-shadow: 0 0 0 4px rgba(247,168,204,.3); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.sub { font-size: clamp(1rem, 2.3vw, 1.18rem); color: #dbe9f6; max-width: 560px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero__stats .stat b { display: block; font-size: 1.7rem; font-weight: 900; color: var(--gold-light); }
.hero__stats .stat span { font-size: .82rem; color: #cdddee; font-weight: 600; }

/* AC guarantee card in hero */
.ac-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius);
  padding: 26px; backdrop-filter: blur(10px); box-shadow: var(--shadow);
}
.ac-card .ac-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #2b2412;
  font-weight: 800; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 16px;
}
.ac-card h3 { color: #fff; margin-bottom: 8px; }
.ac-card ul { display: grid; gap: 12px; margin-top: 16px; }
.ac-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: #e8f2fb; }
.ac-card li svg { flex: none; margin-top: 3px; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .ac-card { order: 2; }
}

/* ---------- Trust marquee bar ---------- */
.trust-bar { background: var(--navy); overflow: hidden; border-bottom: 3px solid var(--gold); }
.trust-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
.trust-bar:hover .trust-track { animation-play-state: paused; }
.trust-track .ti { display: inline-flex; align-items: center; gap: 12px; color: #dfeefb; font-weight: 700; font-size: .92rem; padding: 16px 34px; white-space: nowrap; }
.trust-track .ti b { color: var(--gold-light); }
.trust-track .ti svg { color: var(--cyan-light); flex: none; }
.trust-track .ti::after { content: "•"; color: rgba(255,255,255,.25); margin-left: 34px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .trust-track { animation: none; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--grad-cyan); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px; box-shadow: 0 12px 24px -12px rgba(28,148,207,.8);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }
.card .tag { display: inline-block; margin-top: 16px; font-weight: 800; font-size: .82rem; color: var(--cyan-deep); }
.card--service::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--grad-cyan);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card--service:hover::before { transform: scaleX(1); }

/* Service list pills */
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 620px) { .svc-list { grid-template-columns: 1fr; } }
.svc-list li {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  padding: 16px 20px; border-radius: var(--radius-sm); font-weight: 700; color: var(--navy);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.svc-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); border-color: var(--cyan-light); }
.svc-list li .tick {
  width: 30px; height: 30px; border-radius: 9px; background: var(--bg-soft); color: var(--cyan-deep);
  display: grid; place-items: center; flex: none;
}

/* ---------- Why choose / trust badges ---------- */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 940px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; transition: transform .3s var(--ease), background .3s;
}
.why:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.why__icon {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: rgba(201,161,76,.18); color: var(--gold-light); display: grid; place-items: center;
  border: 1px solid rgba(224,193,120,.4);
}
.why h3 { color: #fff; font-size: 1.02rem; margin-bottom: 6px; }
.why p { color: #c6d7e8; font-size: .86rem; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; }
.step__num {
  counter-increment: step; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-navy);
  color: #fff; font-weight: 900; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: 18px;
}
.step__num::before { content: counter(step); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; height: 100%; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.quote-card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--grad-accent); }
.quote-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.quote-card p { font-size: 1rem; color: var(--ink); margin-bottom: 20px; }
.quote-card .who { display: flex; align-items: center; gap: 12px; }
.quote-card .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; font-weight: 800; }
.quote-card .who b { display: block; color: var(--navy); font-size: .95rem; }
.quote-card .who span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-cyan); color: #fff; border-radius: clamp(20px, 4vw, 34px); padding: clamp(40px, 6vw, 70px); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #eaf6ff; max-width: 560px; margin: 0 auto 26px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
@media (max-width: 880px) { .form-wrap { grid-template-columns: 1fr; } }
.form-aside { background: var(--grad-navy); color: #eaf3fb; padding: clamp(30px, 4vw, 46px); }
.form-aside h3 { color: #fff; margin-bottom: 14px; }
.form-aside p { color: #c6d7e8; font-size: .95rem; margin-bottom: 24px; }
.form-aside ul { display: grid; gap: 16px; }
.form-aside li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.form-aside li svg { flex: none; margin-top: 2px; color: var(--gold-light); }
.form-aside .contacts { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.form-aside .contacts a { display: block; font-weight: 700; color: #fff; margin-bottom: 8px; }

form.qform { padding: clamp(28px, 4vw, 44px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .85rem; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: #e05a5a; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .95rem; color: var(--ink); background: #fff;
  border: 1.6px solid var(--line); border-radius: 12px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(31,165,224,.15);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-pill { flex: 1; min-width: 120px; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill label {
  display: block; text-align: center; border: 1.6px solid var(--line); border-radius: 12px; padding: 12px;
  cursor: pointer; font-weight: 700; color: var(--muted); transition: .2s; margin: 0;
}
.radio-pill input:checked + label { border-color: var(--cyan); background: var(--bg-soft); color: var(--cyan-deep); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* Confirmation message */
.form-success {
  display: none; text-align: center; padding: clamp(30px, 5vw, 50px);
}
.form-success.show { display: block; animation: pop .5s var(--ease); }
.form-success .check {
  width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%; background: #e7f8ef; color: #1f9d57;
  display: grid; place-items: center;
}
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--muted); margin-bottom: 24px; }
@keyframes pop { 0% { transform: scale(.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* ---------- Routes / coverage ---------- */
.coverage { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 880px) { .coverage { grid-template-columns: 1fr; } }
.zones { display: grid; gap: 14px; }
.zone { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; gap: 16px; align-items: flex-start; }
.zone .num { width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft); color: var(--cyan-deep); font-weight: 900; display: grid; place-items: center; flex: none; }
.zone h4 { color: var(--navy); margin-bottom: 4px; }
.zone p { color: var(--muted); font-size: .9rem; }
.states-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 940px) { .states-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .states-grid { grid-template-columns: repeat(2, 1fr); } }
.states-grid li { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; font-size: .85rem; font-weight: 600; color: var(--navy); text-align: center; transition: .25s; }
.states-grid li:hover { background: var(--grad-cyan); color: #fff; border-color: transparent; transform: translateY(-2px); }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 360px; border: 0; }
.note-fee { background: rgba(201,161,76,.12); border: 1px solid rgba(201,161,76,.4); color: #8a6d2a; border-radius: var(--radius-sm); padding: 16px 20px; font-weight: 600; font-size: .92rem; display: flex; gap: 12px; align-items: flex-start; }
.note-fee svg { flex: none; color: var(--gold); margin-top: 2px; }

/* ---------- Fleet ---------- */
.fleet-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* ===== SWAP: replace .fleet-photo background with your real bus photo ===== */
.fleet-photo { position: relative; aspect-ratio: 16/10; background-size: cover; background-position: center; }
.fleet-photo .swap-flag {
  position: absolute; left: 12px; top: 12px; background: rgba(19,41,75,.82); color: #fff; font-size: .68rem;
  font-weight: 700; padding: 6px 11px; border-radius: 8px; letter-spacing: .03em;
}
.fleet-photo .ac-tag { position: absolute; right: 12px; top: 12px; background: var(--gold); color: #2b2412; font-size: .72rem; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.fleet-card .body { padding: 24px; }
.fleet-card h3 { margin-bottom: 6px; }
.fleet-card .sub { color: var(--muted); font-size: .9rem; margin-bottom: 16px; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.specs li { display: flex; gap: 9px; align-items: center; font-size: .86rem; color: var(--navy); font-weight: 600; }
.specs li svg { color: var(--cyan-deep); flex: none; }

/* ---------- Interior gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
.gallery .tile { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/5; background-size: cover; background-position: center; transition: transform .4s var(--ease), box-shadow .4s; }
.gallery .tile:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow); }
.gallery .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(19,41,75,.55) 100%); }
.gallery .tile .cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 700; font-size: .85rem; }
.gallery .tile .cap span { display: inline-block; background: var(--grad-accent); padding: 3px 9px; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .04em; margin-bottom: 6px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background-size: cover; background-position: center; }
.about-media .swap-flag { position: absolute; left: 12px; top: 12px; background: rgba(19,41,75,.82); color: #fff; font-size: .68rem; font-weight: 700; padding: 6px 11px; border-radius: 8px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
@media (max-width: 520px) { .stat-row { grid-template-columns: 1fr; } }
.stat-box { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; text-align: center; }
.stat-box b { display: block; font-size: 1.9rem; font-weight: 900; color: var(--cyan-deep); }
.stat-box span { font-size: .82rem; color: var(--muted); font-weight: 600; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; transition: transform .3s var(--ease), box-shadow .3s; }
.contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .ci { width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 16px; background: var(--grad-cyan); color: #fff; display: grid; place-items: center; }
.contact-card h4 { color: var(--navy); margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--muted); font-weight: 600; font-size: .95rem; display: block; }
.contact-card a:hover { color: var(--cyan-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #c6d7e8; padding: clamp(50px, 7vw, 80px) 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .logo__txt b { color: #fff; }
.footer .logo__txt span { color: var(--cyan-light); }
.footer p { font-size: .9rem; color: #a7bdd4; margin-top: 16px; max-width: 300px; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 18px; letter-spacing: .03em; }
.footer ul { display: grid; gap: 11px; }
.footer ul a, .footer ul li { font-size: .9rem; color: #a7bdd4; transition: color .2s; }
.footer ul a:hover { color: #fff; }
.footer .fcontact a { display: flex; gap: 10px; align-items: center; color: #d8e6f4; font-weight: 600; }
.footer .fcontact svg { color: var(--cyan-light); flex: none; }
.footer__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: #8ba6c4; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 80; display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff; border-radius: 999px; padding: 14px; box-shadow: 0 14px 34px -8px rgba(37,211,102,.6);
  font-weight: 800; transition: transform .3s var(--ease), box-shadow .3s; overflow: hidden;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { flex: none; }
.wa-float .label { max-width: 0; opacity: 0; white-space: nowrap; transition: max-width .4s var(--ease), opacity .3s, margin .4s; font-size: .92rem; }
.wa-float:hover .label { max-width: 160px; opacity: 1; margin-left: 10px; margin-right: 6px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 999px; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: wapulse 2.4s infinite; }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (max-width: 520px) { .wa-float { right: 16px; bottom: 16px; padding: 14px; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background: var(--grad-navy); }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(28,132,194,.4), transparent 55%); }
.page-hero__inner { position: relative; z-index: 2; padding: clamp(56px, 9vw, 96px) 0 clamp(44px, 7vw, 72px); }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: #cfe0f1; max-width: 580px; font-size: clamp(1rem, 2.3vw, 1.12rem); }
.crumbs { font-size: .82rem; color: #9fc0dd; margin-bottom: 18px; font-weight: 600; }
.crumbs a:hover { color: #fff; }

/* ---------- Detailed service blocks ---------- */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.svc-block:nth-child(even) .svc-block__media { order: 2; }
@media (max-width: 820px) { .svc-block { grid-template-columns: 1fr; gap: 26px; } .svc-block:nth-child(even) .svc-block__media { order: 0; } }
.svc-block__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.svc-block__media .swap-flag { position: absolute; left: 12px; top: 12px; background: rgba(19,41,75,.82); color: #fff; font-size: .68rem; font-weight: 700; padding: 6px 11px; border-radius: 8px; }
.svc-block h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 12px; }
.svc-block p { color: var(--muted); margin-bottom: 16px; }
.svc-block ul { display: grid; gap: 10px; }
.svc-block ul li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--navy); font-weight: 600; }
.svc-block ul li svg { color: var(--cyan-deep); flex: none; margin-top: 3px; }

/* ---------- Scroll animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa-float::after { animation: none; }
}

/* ==========================================================================
   Chatbox, Reviews, Payment, Admin (added features)
   ========================================================================== */

/* ---------- Floating chat widget ---------- */
.chat-launch {
  position: fixed; right: 20px; bottom: 92px; z-index: 80; width: 56px; height: 56px;
  border: none; border-radius: 50%; cursor: pointer; background: var(--grad-cyan); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(28,148,207,.7);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.chat-launch:hover { transform: translateY(-3px) scale(1.05); }
.chat-launch .x { display: none; }
.chat-launch.open .chat-i { display: none; }
.chat-launch.open .x { display: block; }
@media (max-width: 520px) { .chat-launch { right: 16px; bottom: 84px; } }

.chat-panel {
  position: fixed; right: 20px; bottom: 158px; z-index: 81; width: min(360px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 200px)); background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(19,41,75,.5); display: none; flex-direction: column;
  border: 1px solid var(--line); transform: translateY(16px) scale(.98); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
}
.chat-panel.open { display: flex; transform: none; opacity: 1; }
@media (max-width: 520px) { .chat-panel { right: 16px; left: 16px; bottom: 150px; width: auto; } }
.chat-head { background: var(--grad-navy); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-cyan); display: grid; place-items: center; font-weight: 900; flex: none; }
.chat-head b { display: block; font-size: .98rem; }
.chat-head span { font-size: .76rem; color: #bcd4ec; display: flex; align-items: center; gap: 6px; }
.chat-head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #44d07b; }
.chat-body { flex: 1; overflow-y: auto; padding: 18px; background: var(--bg-soft); display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 82%; padding: 11px 14px; border-radius: 16px; font-size: .9rem; line-height: 1.5; box-shadow: var(--shadow-sm); }
.msg a { color: var(--cyan-deep); font-weight: 700; text-decoration: underline; }
.msg.bot { background: #fff; border-bottom-left-radius: 5px; align-self: flex-start; color: var(--ink); }
.msg.user { background: var(--grad-cyan); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.msg.user a { color: #fff; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 10px; background: var(--bg-soft); }
.chat-quick button { font-family: inherit; font-size: .8rem; font-weight: 700; color: var(--cyan-deep); background: #fff; border: 1px solid var(--cyan-light); border-radius: 999px; padding: 7px 13px; cursor: pointer; transition: .2s; }
.chat-quick button:hover { background: var(--grad-cyan); color: #fff; border-color: transparent; }
.chat-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.chat-input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 15px; font-family: inherit; font-size: .9rem; }
.chat-input input:focus { outline: none; border-color: var(--cyan); }
.chat-input button { width: 44px; height: 44px; flex: none; border: none; border-radius: 50%; background: var(--grad-cyan); color: #fff; cursor: pointer; display: grid; place-items: center; }
.chat-wa { display: block; text-align: center; font-size: .8rem; font-weight: 700; color: #128C3E; padding: 8px; background: #e9faf0; border-top: 1px solid #cdeed8; }

/* ---------- Reviews ---------- */
.rating { display: inline-flex; gap: 4px; }
.rating .s { color: #d7e0e8; font-size: 1.05rem; }
.rating .s.on { color: var(--gold); }
/* interactive star picker */
.star-pick { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-pick input { display: none; }
.star-pick label { font-size: 1.9rem; color: #d7e0e8; cursor: pointer; transition: color .15s; line-height: 1; }
.star-pick label:hover, .star-pick label:hover ~ label,
.star-pick input:checked ~ label { color: var(--gold); }
.review-meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.review-meta .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; font-weight: 800; flex: none; }
.review-meta b { display: block; color: var(--navy); font-size: .92rem; }
.review-meta span { font-size: .78rem; color: var(--muted); }
.pill-status { display: inline-block; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .04em; }
.pill-status.pending { background: #fff3d6; color: #9a6b00; }
.pill-status.approved { background: #e3f8ec; color: #1a8f4e; }

/* ---------- Payment & receipt ---------- */
.pay-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
@media (max-width: 880px) { .pay-grid { grid-template-columns: 1fr; } }
.pay-aside { background: var(--grad-navy); color: #eaf3fb; padding: clamp(28px,4vw,42px); }
.pay-aside h3 { color: #fff; margin-bottom: 10px; }
.pay-aside p { color: #c6d7e8; font-size: .92rem; margin-bottom: 18px; }
.bank-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: .92rem; }
.bank-row span { color: #a9c2dc; } .bank-row b { color: #fff; text-align: right; }
.ref-box { background: var(--pink-soft); border: 1.5px dashed var(--pink); border-radius: 14px; padding: 18px; text-align: center; margin: 8px 0 18px; }
.ref-box small { display: block; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.ref-box .ref-no { font-size: clamp(1.1rem,3vw,1.5rem); font-weight: 900; color: var(--navy); letter-spacing: .04em; word-break: break-all; }
.ref-box button { margin-top: 10px; font-size: .78rem; font-weight: 700; color: var(--cyan-deep); background: #fff; border: 1px solid var(--cyan-light); border-radius: 999px; padding: 6px 14px; cursor: pointer; }
.qr-box { display: grid; place-items: center; gap: 10px; }
.qr-box .qr { width: 180px; height: 180px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.qr-box .qr img, .qr-box .qr canvas { display: block; width: 100%; height: 100%; }
.qr-box small { color: var(--muted); font-size: .8rem; }

.receipt { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.receipt__head { background: var(--grad-cyan); color: #fff; padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.receipt__head h3 { color: #fff; margin: 0; }
.receipt__head .paid { background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.5); padding: 6px 12px; border-radius: 999px; font-size: .76rem; font-weight: 800; }
.receipt__body { padding: 26px; }
.receipt__row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.receipt__row span { color: var(--muted); } .receipt__row b { color: var(--navy); text-align: right; }
.receipt__total { display: flex; justify-content: space-between; padding: 16px 0 4px; font-size: 1.2rem; font-weight: 900; color: var(--navy); }
.receipt__qr { text-align: center; padding: 8px 26px 26px; }
.receipt__qr .qr { display: inline-block; padding: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.receipt__foot { text-align: center; font-size: .8rem; color: var(--muted); padding: 0 26px 24px; }

/* ---------- Admin ---------- */
.admin-gate { max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; text-align: center; }
.admin-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.admin-tabs button { font-family: inherit; font-weight: 700; font-size: .9rem; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--navy); cursor: pointer; }
.admin-tabs button.active { background: var(--grad-cyan); color: #fff; border-color: transparent; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.admin-card .top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 8px; flex-wrap: wrap; }
.admin-actions { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.btn-sm { font-family: inherit; font-size: .82rem; font-weight: 700; padding: 8px 16px; border-radius: 999px; border: none; cursor: pointer; }
.btn-approve { background: #e3f8ec; color: #1a8f4e; } .btn-approve:hover { background: #1a8f4e; color: #fff; }
.btn-reject { background: #fde7e7; color: #c0392b; } .btn-reject:hover { background: #c0392b; color: #fff; }
.btn-neutral { background: var(--bg-soft); color: var(--navy); border: 1px solid var(--line); } .btn-neutral:hover { background: var(--navy); color: #fff; }
.empty-state { text-align: center; color: var(--muted); padding: 40px 20px; background: var(--bg-soft); border-radius: var(--radius-sm); }

/* ---------- File upload zones ---------- */
.upload-zone {
  display: flex; align-items: center; gap: 14px; width: 100%; cursor: pointer;
  border: 1.6px dashed var(--cyan-light); border-radius: 14px; padding: 16px 18px;
  background: var(--bg-soft); color: var(--cyan-deep); transition: .2s; text-align: left;
}
.upload-zone:hover { border-color: var(--cyan); background: #eef7fd; }
.upload-zone svg { flex: none; }
.upload-zone span { color: var(--navy); font-size: .9rem; font-weight: 600; }
.upload-zone span small { color: var(--muted); font-weight: 500; }
.upload-done {
  display: flex; align-items: center; gap: 12px; margin-top: 10px; padding: 12px 14px;
  background: #e7f8ef; border: 1px solid #bfe8cf; border-radius: 12px; font-size: .88rem; color: #15703c; font-weight: 600;
}
.upload-done .thumb { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex: none; border: 1px solid #bfe8cf; background: #fff; }
.upload-done a { color: var(--cyan-deep); font-weight: 700; }
.upload-done .rm { margin-left: auto; background: none; border: none; color: #c0392b; font-weight: 700; cursor: pointer; font-size: .85rem; }

/* ---------- Accounts / dashboard ---------- */
.auth-card { max-width: 440px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(28px,4vw,40px); }
.auth-switch { display: flex; gap: 6px; background: var(--bg-soft); border-radius: 999px; padding: 5px; margin-bottom: 26px; }
.auth-switch button { flex: 1; font-family: inherit; font-weight: 800; font-size: .9rem; padding: 11px; border: none; border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; transition: .2s; }
.auth-switch button.active { background: #fff; color: var(--cyan-deep); box-shadow: var(--shadow-sm); }
.auth-err { display: none; background: #fde7e7; color: #c0392b; border-radius: 10px; padding: 10px 14px; font-size: .86rem; font-weight: 600; margin-bottom: 16px; }
.auth-err.show { display: block; }

.dash-head { display: flex; align-items: center; gap: 18px; background: var(--grad-navy); color: #fff; border-radius: var(--radius); padding: clamp(22px,3vw,32px); box-shadow: var(--shadow); flex-wrap: wrap; }
.dash-head .av { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-accent); display: grid; place-items: center; font-weight: 900; font-size: 1.5rem; flex: none; }
.dash-head h2 { color: #fff; margin: 0; }
.dash-head p { color: #c6d7e8; font-size: .9rem; margin: 4px 0 0; }
.dash-head .spacer { flex: 1; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 22px 0 28px; }
@media (max-width: 680px) { .dash-stats { grid-template-columns: 1fr 1fr; } }
.dash-stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.dash-stat b { display: block; font-size: 1.6rem; font-weight: 900; color: var(--cyan-deep); }
.dash-stat span { font-size: .78rem; color: var(--muted); font-weight: 600; }

.hist { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.hist .top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; flex-wrap: wrap; }
.hist .ref { font-weight: 800; color: var(--navy); }
.hist .meta { font-size: .82rem; color: var(--muted); margin-top: 3px; }
.hist .amt { font-weight: 900; color: var(--navy); }
.hist .det { margin-top: 10px; font-size: .9rem; color: var(--ink); display: grid; gap: 4px; }
.hist .det span b { color: var(--navy); }
.hist .mini-qr { margin-top: 14px; }
.hist .mini-qr .qr { display: inline-block; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }

.print-hide { } /* default */
@media print {
  .header, .footer, .wa-float, .chat-launch, .chat-panel, .print-hide, .page-hero { display: none !important; }
  body { background: #fff; }
  .receipt { box-shadow: none; border: 1px solid #999; }
}
