/* ==========================================================================
   R K Packers & Movers — Modern design system (clean, lightweight rebuild)
   Brand: deep navy (#17296f) + orange (#f7941d), from the R K logo. No heavy vendor CSS.
   ========================================================================== */

:root {
  /* Brand — deep navy + orange (from R K Packers & Movers logo) */
  --brand: #17296f;
  --brand-600: #101d52;
  --brand-700: #0b1540;
  --brand-050: #eef1fb;
  --accent: #f7941d;      /* orange — highlights / quote CTA */
  --accent-600: #dc7c0a;
  --whatsapp: #25d366;
  --whatsapp-600: #1da851;

  /* Neutrals */
  --ink: #0e1729;         /* dark navy sections */
  --ink-700: #17223b;
  --text: #1c2536;
  --muted: #5b6472;
  --line: #e6eaf2;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --star: #fbbf24;

  /* Type */
  --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Shape */
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(14, 23, 41, .06), 0 1px 2px rgba(14, 23, 41, .04);
  --shadow: 0 10px 30px rgba(14, 23, 41, .08);
  --shadow-lg: 0 24px 60px rgba(14, 23, 41, .14);
  --container: 1180px;

  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}

p { margin: 0 0 1rem; }
a { color: var(--brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brand-600); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }

/* Layout helpers ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section.ink { background: var(--ink); color: #cfd6e6; }
.section.ink h1, .section.ink h2, .section.ink h3 { color: #fff; }

.grid { display: grid; gap: 26px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--brand);
  background: var(--brand-050);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section.ink .eyebrow { background: rgba(255,255,255,.08); color: #9db4ff; }

.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--muted); font-size: 17px; margin: 0; }
.section.ink .section-head p { color: #aeb8cc; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-600); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #f0f3ff; color: var(--brand); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* Top bar ----------------------------------------------------------------- */
.topbar { background: var(--ink); color: #c3cbdc; font-size: 14px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar a { color: #c3cbdc; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 18px; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .tb-item svg { width: 15px; height: 15px; opacity: .8; }
.topbar .tb-social { display: flex; gap: 14px; }
.topbar .tb-social svg { width: 16px; height: 16px; }
.topbar .tb-link { color: #ffb15a; font-weight: 600; }
.topbar .tb-link:hover { color: #fff; }
.topbar .tb-link svg { color: var(--accent); }
@media (max-width: 860px) { .topbar { display: none; } }

/* Header / nav ------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 900; background: #fff;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 48px; height: 48px; flex-shrink: 0; object-fit: contain; display: block;
}
.brand .bname { font-family: var(--font-head); font-weight: 700; font-size: 19px; color: var(--ink); line-height: 1.1; }
.brand .bname span { display: block; font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav a { color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: 15px; padding: 10px 14px; border-radius: 8px; display: inline-flex; align-items: center; gap: 5px; }
.nav a:hover, .nav a.active { color: var(--brand); background: var(--brand-050); }
.nav .has-drop { position: relative; }
.nav .has-drop > a svg { width: 14px; height: 14px; transition: transform .2s; }
.nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .18s; border: 1px solid var(--line);
}
.nav .has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .dropdown a { display: block; padding: 9px 12px; font-size: 14.5px; border-radius: 7px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1040px) {
  .header-cta .btn-ghost { display: none; }
}
@media (max-width: 992px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 84vw); background: #fff;
    flex-direction: column; align-items: stretch; padding: 84px 20px 30px; gap: 4px;
    transform: translateX(100%); transition: transform .28s; box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 12px 14px; font-size: 16px; justify-content: space-between; }
  .nav .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 2px 0 6px 12px; display: none; min-width: 0;
  }
  .nav .has-drop.open .dropdown { display: block; }
  .nav .has-drop.open > a svg { transform: rotate(180deg); }
  .nav-close { position: absolute; top: 18px; right: 18px; background: none; border: 0; cursor: pointer; color: var(--ink); }
  .nav-close svg { width: 28px; height: 28px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(14,23,41,.45); opacity: 0; visibility: hidden; transition: opacity .28s; z-index: 890; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
}
.nav-close { display: none; }
.nav-mobile-cta { display: none; }
@media (max-width: 992px) {
  .nav-close { display: inline-flex; }
  .nav-mobile-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
  .nav-mobile-cta .btn { justify-content: center; }
  .nav-mobile-cta .btn-primary, .nav-mobile-cta .btn-primary:hover { color: #fff; background: var(--brand); }
  .nav-mobile-cta .btn-primary:hover { background: var(--brand-600); }
  .nav-mobile-cta .btn-ghost { color: var(--brand); background: transparent; }
  .nav-mobile-cta .btn-ghost:hover { color: #fff; background: var(--brand); }
  .nav-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .nav-contact a { display: flex; align-items: center; justify-content: flex-start; gap: 9px; color: var(--muted); font-size: 15px; font-family: var(--font-body); padding: 0; }
  .nav-contact a:hover { color: var(--brand); background: none; }
  .nav-contact svg { width: 17px; height: 17px; color: var(--brand); flex-shrink: 0; }
}

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,20,60,.92) 0%, rgba(23,41,111,.82) 55%, rgba(23,41,111,.55) 100%);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .container { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); line-height: 1.08; margin-bottom: 18px; }
.hero h1 .hl { color: #ffb15a; }
.hero-tagline { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: #ffb15a; margin: 0 0 14px; }
.hero-tagline em { font-style: italic; font-weight: 500; color: #eaf0ff; }
.hero p.lead { font-size: 18px; color: #dfe6ff; max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: #eaf0ff; }
.hero-trust svg { width: 22px; height: 22px; color: #ffb15a; flex-shrink: 0; }

/* Quote card (hero form) */
.quote-card { background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 28px; color: var(--text); }
.quote-card h3 { color: var(--ink); font-size: 22px; margin-bottom: 4px; }
.quote-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--text); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-050); }
.field textarea { min-height: 96px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero .container { padding-bottom: 64px; }
}

/* Trust strip / stats ----------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 4vw, 42px); color: var(--brand); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.section.ink .stat .num { color: #ffb15a; }
.section.ink .stat .lbl { color: #aeb8cc; }

/* Cards ------------------------------------------------------------------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.service-card { padding: 30px 26px; text-align: left; height: 100%; display: flex; flex-direction: column; }
.service-card .ic { width: 60px; height: 60px; border-radius: 14px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; margin-bottom: 18px; }
.service-card .ic svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 20px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 15px; flex-grow: 1; margin-bottom: 16px; }
.service-card .more { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .2s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* Media/photo service card */
.svc-photo { overflow: hidden; }
.svc-photo img { width: 100%; height: 210px; object-fit: cover; transition: transform .4s; }
.svc-photo:hover img { transform: scale(1.06); }
.svc-photo .body { padding: 22px 24px; }
.svc-photo .body h3 { font-size: 19px; margin-bottom: 6px; }
.svc-photo .body p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Feature / why-us list */
.feature { display: flex; gap: 16px; }
.feature .ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; }
.feature .ic svg { width: 26px; height: 26px; }
.feature h4 { font-size: 17px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }
.section.ink .feature .ic { background: rgba(255,255,255,.08); color: #ffb15a; }
.section.ink .feature p { color: #aeb8cc; }

/* Split image + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.split.rev .split-text { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } .split.rev .split-text { order: 0; } }

.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: var(--text); font-size: 15.5px; }
.check-list svg { width: 22px; height: 22px; color: var(--whatsapp-600); flex-shrink: 0; margin-top: 1px; }

/* Steps / process */
.steps { counter-reset: step; }
.step { position: relative; padding: 28px 24px; }
.step .n { width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.step h4 { font-size: 18px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Page hero / breadcrumb -------------------------------------------------- */
.page-hero { position: relative; color: #fff; padding: 66px 0; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(8,20,60,.94), rgba(23,41,111,.78)); }
.page-hero .page-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 10px; }
.crumbs { display: flex; gap: 8px; justify-content: center; align-items: center; color: #cdd7ff; font-size: 14.5px; }
.crumbs a { color: #cdd7ff; }
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: .6; }

/* Testimonials / reviews -------------------------------------------------- */
.review-card { padding: 28px 26px; height: 100%; display: flex; flex-direction: column; }
.stars { display: flex; gap: 2px; color: var(--star); margin-bottom: 12px; }
.stars svg { width: 18px; height: 18px; }
.review-card p.quote { color: var(--text); font-size: 15.5px; flex-grow: 1; }
.review-card .who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review-card .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.review-card .who .nm { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 15px; }
.review-card .who .rl { color: var(--muted); font-size: 13px; }

.google-badge { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 24px; box-shadow: var(--shadow-sm); }
.google-badge .g { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.google-badge .rating { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--ink); line-height: 1; }
.google-badge .rating small { font-weight: 500; font-size: 15px; color: var(--muted); }

/* Simple slider (scroll-snap) */
.slider { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; -webkit-overflow-scrolling: touch; }
.slider::-webkit-scrollbar { height: 6px; }
.slider::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.slider > * { scroll-snap-align: start; flex: 0 0 min(360px, 85%); }

/* Gallery ----------------------------------------------------------------- */
.gallery-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.gallery-tabs button { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--muted); cursor: pointer; transition: all .18s; }
.gallery-tabs button.active, .gallery-tabs button:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .ov { position: absolute; inset: 0; background: rgba(23,41,111,.35); opacity: 0; display: grid; place-items: center; transition: opacity .25s; }
.gallery-item:hover .ov { opacity: 1; }
.gallery-item .ov svg { width: 40px; height: 40px; color: #fff; }
.gallery-item.video .ov { opacity: 1; background: rgba(14,23,41,.35); }
.gallery-item.hide { display: none; }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,12,24,.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img, .lightbox iframe { max-width: 92vw; max-height: 86vh; border-radius: 10px; width: auto; }
.lightbox iframe { width: min(900px, 92vw); aspect-ratio: 16/9; height: auto; }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; cursor: pointer; }
.lightbox .lb-close svg { width: 34px; height: 34px; }

/* FAQ / accordion --------------------------------------------------------- */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; overflow: hidden; background: #fff; }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; transition: transform .25s; }
.acc-item.open .acc-q svg { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 15px; }

/* Blog -------------------------------------------------------------------- */
.blog-card { overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.blog-card .thumb { height: 200px; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .body { padding: 22px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; display: flex; gap: 12px; }
.blog-card .tag { color: var(--brand); font-weight: 600; }
.blog-card h3 { font-size: 19px; margin-bottom: 8px; }
.blog-card p { color: var(--muted); font-size: 14.5px; flex-grow: 1; }

/* CTA band ---------------------------------------------------------------- */
.cta-band { background: linear-gradient(120deg, var(--brand), #2b3f96); color: #fff; border-radius: 20px; padding: 46px 48px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin: 0 0 6px; }
.cta-band p { color: #dbe4ff; margin: 0; font-size: 16px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Contact ----------------------------------------------------------------- */
.contact-info { display: grid; gap: 18px; }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ci .ic { width: 50px; height: 50px; border-radius: 12px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ci .ic svg { width: 24px; height: 24px; }
.contact-info .ci h4 { font-size: 16px; margin-bottom: 2px; }
.contact-info .ci p, .contact-info .ci a { color: var(--muted); font-size: 15px; margin: 0; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* Footer ------------------------------------------------------------------ */
.footer { background: var(--ink); color: #9fabc4; padding: 64px 0 0; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer a { color: #9fabc4; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; font-size: 14.5px; }
.footer .fbrand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer .fbrand .flogo { display: inline-flex; background: #fff; border-radius: 14px; padding: 8px; }
.footer .fbrand .flogo img { height: 84px; width: auto; display: block; border-radius: 8px; }
.footer .fdesc { font-size: 14.5px; max-width: 320px; }
.foot-contact { list-style: none; }
.foot-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14.5px; }
.foot-contact svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.fbadge { font-size: 12.5px; font-weight: 600; font-family: var(--font-head); color: #ffd9b0; background: rgba(247,148,29,.14); border: 1px solid rgba(247,148,29,.3); padding: 5px 11px; border-radius: 999px; }
.fsocial { display: flex; gap: 12px; margin-top: 18px; }
.fsocial a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; }
.fsocial a:hover { background: var(--brand); }
.fsocial svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 52px; padding: 22px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* Floating buttons -------------------------------------------------------- */
.floaters { position: fixed; right: 18px; bottom: 20px; z-index: 950; display: flex; flex-direction: column; gap: 12px; }
.float-btn { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg); transition: transform .2s; }
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn svg { width: 28px; height: 28px; }
.float-wa { background: var(--whatsapp); animation: pulse 2.2s infinite; }
.float-call { background: var(--brand); }
@keyframes pulse { 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); } }
.to-top { position: fixed; left: 18px; bottom: 20px; z-index: 940; width: 46px; height: 46px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .25s; border: 0; cursor: pointer; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top svg { width: 22px; height: 22px; }

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

/* Awareness / notice bar -------------------------------------------------- */
.notice { background: #fff4e5; border-bottom: 1px solid #ffe0b8; color: #8a5a12; font-size: 13.5px; }
.notice .container { display: flex; align-items: center; gap: 9px; justify-content: center; padding: 9px 20px; text-align: center; }
.notice svg { width: 17px; height: 17px; flex-shrink: 0; color: #d97706; }
.notice a { color: #b45309; font-weight: 700; text-decoration: underline; }
@media (max-width: 560px) { .notice { font-size: 12.5px; } .notice .container { padding: 8px 14px; } }

/* Client logos strip ------------------------------------------------------ */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 46px; }
.logos img { height: 56px; width: auto; max-width: 150px; object-fit: contain; }
@media (max-width: 560px) { .logos { gap: 30px; } .logos img { height: 42px; } }

/* The R K Edge cards ------------------------------------------------------ */
.edge-card { padding: 26px 24px; height: 100%; display: flex; gap: 16px; align-items: flex-start; }
.edge-card .ic { width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px; background: var(--brand-050); color: var(--brand); display: grid; place-items: center; }
.edge-card .ic svg { width: 26px; height: 26px; }
.edge-card h4 { font-size: 17px; margin-bottom: 4px; }
.edge-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Rating breakdown panel -------------------------------------------------- */
.rating-panel { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: center; max-width: 760px; margin: 0 auto 44px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 30px 34px; }
.rating-summary { text-align: center; border-right: 1px solid var(--line); padding-right: 30px; }
.rating-summary .big { font-family: var(--font-head); font-weight: 800; font-size: 58px; color: var(--ink); line-height: 1; }
.rating-summary .stars { justify-content: center; margin: 10px 0 6px; }
.rating-summary .cnt { color: var(--muted); font-size: 14px; }
.rating-summary .g { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--ink); }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 9px; font-size: 13.5px; color: var(--muted); }
.rating-row .lbl { width: 46px; white-space: nowrap; }
.rating-bar { flex: 1; height: 8px; border-radius: 999px; background: var(--bg-soft); overflow: hidden; }
.rating-bar span { display: block; height: 100%; background: var(--star); border-radius: 999px; }
.rating-row .pct { width: 38px; text-align: right; }
@media (max-width: 620px) {
  .rating-panel { grid-template-columns: 1fr; gap: 22px; padding: 26px; }
  .rating-summary { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 22px; }
}

/* Video testimonials ------------------------------------------------------ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .video-grid { grid-template-columns: 1fr; } }

/* Cities served ----------------------------------------------------------- */
.cities { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.city-pill { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--ink); transition: all .18s; }
.city-pill:hover { border-color: var(--brand); color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.city-pill svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; }
@media (max-width: 900px) { .cities { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cities { grid-template-columns: repeat(2, 1fr); } }

/* Online quote form ------------------------------------------------------- */
.qform { max-width: 900px; margin: 0 auto; }
.form-block { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); padding: 26px 28px; margin-bottom: 22px; }
.form-block > h3 { font-size: 18px; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.form-block > h3 .stepn { width: 30px; height: 30px; border-radius: 8px; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 700; font-family: var(--font-head); flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.form-grid.span-2 > .span { grid-column: 1 / -1; }
.field .req { color: #e11d48; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e11d48; box-shadow: 0 0 0 3px rgba(225,29,72,.08); }
.field .err-msg { display: none; color: #c81e1e; font-size: 12.5px; margin-top: 5px; }
.field.invalid .err-msg { display: block; }
.radio-pills { display: flex; gap: 10px; }
.radio-pills label { flex: 1; position: relative; margin: 0; }
.radio-pills input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pills span { display: block; text-align: center; padding: 11px; border: 1.5px solid var(--line); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 14px; font-family: var(--font-head); color: var(--muted); transition: all .15s; }
.radio-pills input:checked + span { border-color: var(--brand); background: var(--brand-050); color: var(--brand); }
.addons { display: flex; flex-wrap: wrap; gap: 10px; }
.addons label { position: relative; margin: 0; }
.addons input { position: absolute; opacity: 0; pointer-events: none; }
.addons span { display: inline-block; padding: 9px 18px; border: 1.5px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 14px; font-family: var(--font-head); font-weight: 500; color: var(--muted); transition: all .15s; }
.addons input:checked + span { border-color: var(--brand); background: var(--brand); color: #fff; }
.form-submit { text-align: center; }
.form-submit .btn { min-width: 280px; justify-content: center; }
@media (max-width: 640px) {
  .form-grid, .form-grid.three { grid-template-columns: 1fr; }
  .form-block { padding: 22px 18px; }
}

/* Responsive grids -------------------------------------------------------- */
@media (max-width: 900px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .edge-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .g-4, .g-3, .g-2, .field-row { grid-template-columns: 1fr; }
  .cta-band { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floaters { right: 14px; bottom: 14px; }
}

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.hidden { display: none !important; }
