/* ============================================================
   GharCleaning V2 — Dark Navy · Red · Green · White Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  /* ── Brand Palette ── */
  --navy:       #0B1D3A;
  --navy-deep:  #071428;
  --navy-mid:   #142952;
  --navy-light: #1E3A6E;
  --red:        #C8102E;
  --red-dark:   #A50D24;
  --red-light:  #E8294A;
  --green:      #1A7A3C;
  --green-mid:  #21963F;  /* badge accent */
  --green-light:#27AE60;
  --white:      #FFFFFF;
  --off-white:  #F4F6FA;
  --gray-100:   #EEF1F7;
  --gray-200:   #D8DDE8;
  --gray-400:   #8896A8;
  --gray-600:   #4A5568;
  --gray-900:   #0D1B2E;

  /* ── Shadows ── */
  --sh-sm:  0 2px 10px rgba(11,29,58,.10);
  --sh-md:  0 6px 24px  rgba(11,29,58,.14);
  --sh-lg:  0 16px 48px rgba(11,29,58,.20);
  --sh-red: 0 6px 24px  rgba(200,16,46,.25);
  --sh-grn: 0 6px 24px  rgba(33,150,63,.20);

  /* ── Motion ── */
  --ease: cubic-bezier(.4,0,.2,1);
  --t: all .28s var(--ease);

  /* ── Type ── */
  --font-head: 'Playfair Display', serif;
  --font-body: 'Nunito', sans-serif;

  /* ── Radii ── */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 9999px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Utility ──────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sp          { padding: 80px 0; }
.sp-sm       { padding: 60px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  background: rgba(200,16,46,.09);
  color: var(--red);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(200,16,46,.2);
  margin-bottom: 14px;
}
.tag.green {
  background: rgba(26,122,60,.09);
  color: var(--green);
  border-color: rgba(26,122,60,.2);
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.sec-title span { color: var(--red); }
.sec-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 580px; line-height: 1.75; }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-xl);
  font-weight: 800;
  font-size: .9rem;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: var(--t);
  letter-spacing: .3px;
}
.btn-red   { background: var(--red);   color: #fff; box-shadow: var(--sh-red); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,16,46,.35); }
.btn-navy  { background: var(--navy);  color: #fff; box-shadow: var(--sh-md); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; box-shadow: var(--sh-grn); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.65); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

/* ═══════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════ */
.topbar {
  background: var(--navy-deep);
  padding: 9px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.72);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.72); transition: var(--t); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-badge {
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--r-xl);
  letter-spacing: .5px;
}

/* ═══════════════════════════════════════════════
   NAVBAR — Unique Side-stripe + Mega feel
═══════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 0 var(--gray-100), 0 4px 20px rgba(11,29,58,.06);
  transition: var(--t);
}
.navbar.scrolled { box-shadow: var(--sh-md); }

.nav-wrap {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
}

/* Logo area with red left stripe */
.nav-logo-area {
  display: flex;
  align-items: center;
  padding-right: 32px;
  border-right: 2px solid var(--gray-100);
  position: relative;
}
.nav-logo-area::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0; bottom: 0;
  width: 5px;
  background: var(--red);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; object-fit: contain; }

/* Main nav links */
.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
  padding: 0 20px;
}
.nav-menu > li {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 100%;
  font-weight: 700;
  font-size: .87rem;
  color: var(--navy);
  transition: var(--t);
  position: relative;
  white-space: nowrap;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 3px;
  background: var(--red);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--red); }
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: -10px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 14px;
  min-width: 500px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--t);
  z-index: 100;
  border-top: 3px solid var(--red);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: .86rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--t);
}
.dropdown a:hover { background: var(--off-white); color: var(--red); }
.dropdown a .d-icon {
  width: 36px; height: 36px; min-width: 36px;
  background: var(--gray-100);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--t);
}
.dropdown a:hover .d-icon { background: rgba(200,16,46,.1); }
.dropdown a .d-label small { display: block; font-weight: 500; font-size: .75rem; color: var(--gray-400); margin-top: 1px; }

/* Nav right CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 2px solid var(--gray-100);
}
.nav-call {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .85rem; color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--r-xl);
  border: 2px solid var(--gray-200);
  transition: var(--t);
}
.nav-call:hover { border-color: var(--navy); }
.nav-call .icon { width: 28px; height: 28px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: .75rem; }
.nav-book {
  background: var(--red); color: #fff;
  padding: 9px 20px;
  border-radius: var(--r-xl);
  font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; gap: 7px;
  transition: var(--t);
  box-shadow: var(--sh-red);
}
.nav-book:hover { background: var(--red-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; margin-left: 10px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--t); }

/* ═══════════════════════════════════════════════
   HERO CAROUSEL — Split-panel style
═══════════════════════════════════════════════ */
.hero { position: relative; height: 88vh; min-height: 560px; max-height: 820px; overflow: hidden; background: var(--navy); }
.hero-slide { position: absolute; inset: 0; display: flex; opacity: 0; transition: opacity .9s var(--ease); }
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-slide-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
/* dark left-side panel overlay */
.hero-panel {
  position: relative; z-index: 3;
  width: 48%;
  background: linear-gradient(135deg, rgba(7,20,40,.96) 0%, rgba(11,29,58,.88) 70%, transparent 100%);
  display: flex; align-items: center;
  padding: 60px 0 60px 5%;
}
.hero-content { max-width: 460px; }
.hero-content .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--r-xl); margin-bottom: 22px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 18px;
}
.hero-content h1 em { color: var(--red-light); font-style: normal; }
.hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.82); margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero accent diagonal line */
.hero-diagonal {
  position: absolute; right: 42%; top: 0; bottom: 0; z-index: 4;
  width: 80px;
  background: #fff;
  transform: skewX(-6deg);
  transform-origin: top;
  opacity: .04;
  pointer-events: none;
}

/* Slide dots */
.hero-dots { position: absolute; bottom: 28px; left: 5%; z-index: 10; display: flex; gap: 8px; }
.hero-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.35); transition: var(--t);
}
.hero-dots button.on { background: var(--red); width: 26px; border-radius: 4px; }

/* Hero arrows */
.hero-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--t);
}
.hero-arr:hover { background: var(--red); border-color: var(--red); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

/* Hero round image — decorative circle on right */
.hero-round-wrap {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 5; display: flex; align-items: center; justify-content: center;
  width: 340px; height: 340px;
}
.hero-round-ring {
  position: absolute; inset: -18px;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.18);
  animation: spinRing 18s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.hero-round-img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255,255,255,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.hero-round-badge {
  position: absolute; bottom: -10px; right: -10px;
  background: var(--green); color: #fff;
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; text-align: center;
  border: 4px solid #fff;
  box-shadow: var(--sh-grn);
  line-height: 1.3;
}
.hero-round-badge strong { font-size: 1.4rem; }

/* ═══════════════════════════════════════════════
   STATS RIBBON
═══════════════════════════════════════════════ */
.stats-ribbon {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--red); border-radius: 0 0 4px 4px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--red); }
.stat-lbl { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════
   SERVICES SECTION — Card grid with round image
═══════════════════════════════════════════════ */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 22px; margin-top: 48px; }

.svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--navy);
  transition: var(--t);
  border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
  position: relative;
}
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }

.svc-round-wrap {
  padding: 28px 28px 16px;
  display: flex; justify-content: center;
}
.svc-round {
  width: 110px; height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gray-100);
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.svc-card:hover .svc-round { border-color: var(--red); box-shadow: 0 0 0 5px rgba(200,16,46,.1); }

.svc-body { padding: 0 20px 24px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.svc-icon-row { font-size: 1.6rem; margin-bottom: 8px; }
.svc-body h3 { font-size: .97rem; font-weight: 800; margin-bottom: 8px; }
.svc-body p { font-size: .8rem; color: var(--gray-600); line-height: 1.55; flex: 1; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: .8rem; font-weight: 800;
  color: var(--red);
}

/* ═══════════════════════════════════════════════
   WHY US — Asymmetric layout
═══════════════════════════════════════════════ */
.why-section { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

.why-img-stack { position: relative; padding-bottom: 40px; }
.why-img-main {
  width: 80%;
  border-radius: var(--r-lg);
  object-fit: cover; height: 480px;
  box-shadow: var(--sh-lg);
}
.why-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%;
  border-radius: var(--r-lg);
  object-fit: cover; height: 220px;
  border: 5px solid #fff;
  box-shadow: var(--sh-lg);
}
.why-img-badge {
  position: absolute; top: 30px; right: 0;
  background: var(--navy);
  color: #fff;
  padding: 16px 22px;
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--sh-md);
}
.why-img-badge .bn { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--red); line-height: 1; }
.why-img-badge small { font-size: .75rem; opacity: .7; display: block; margin-top: 2px; }

.why-features { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.why-feat {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px;
  background: var(--off-white);
  border-radius: var(--r);
  border-left: 4px solid var(--red);
  transition: var(--t);
}
.why-feat:hover { background: #fff; box-shadow: var(--sh-sm); transform: translateX(4px); }
.why-feat-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--red);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.why-feat:nth-child(even) .why-feat-icon { background: var(--green); }
.why-feat h4 { font-weight: 800; font-size: .95rem; margin-bottom: 3px; }
.why-feat p { font-size: .83rem; color: var(--gray-600); }

/* ═══════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════ */
.process-section { background: var(--navy); }
.process-section .sec-title { color: #fff; }
.process-section .sec-sub { color: rgba(255,255,255,.6); }
.process-section .tag { background: rgba(200,16,46,.25); color: var(--red-light); border-color: rgba(200,16,46,.3); }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 24px; margin-top: 48px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 50px; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.08);
  z-index: 0;
}
.proc-step {
  background: var(--navy-mid);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--t);
}
.proc-step:hover { background: var(--navy-light); transform: translateY(-5px); box-shadow: var(--sh-lg); }
.proc-num {
  width: 54px; height: 54px;
  background: var(--red);
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(200,16,46,.4);
}
.proc-step h3 { color: #fff; font-weight: 800; margin-bottom: 10px; }
.proc-step p { color: rgba(255,255,255,.6); font-size: .87rem; }

/* ═══════════════════════════════════════════════
   GALLERY — round-cornered masonry feel
═══════════════════════════════════════════════ */
.gallery-section { background: var(--off-white); }
.filter-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.f-btn {
  padding: 8px 20px; border-radius: var(--r-xl);
  border: 2px solid var(--gray-200);
  background: #fff;
  font-size: .84rem; font-weight: 700; cursor: pointer;
  transition: var(--t); font-family: var(--font-body); color: var(--navy);
}
.f-btn:hover, .f-btn.on { background: var(--red); color: #fff; border-color: var(--red); }

.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 14px; }
.gal-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-sm);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); display: block; }
.gal-item:hover img { transform: scale(1.06); }
.gal-over {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,29,58,.85) 100%);
  opacity: 0; display: flex; align-items: flex-end; padding: 16px;
  transition: var(--t);
}
.gal-item:hover .gal-over { opacity: 1; }
.gal-label {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: .85rem; font-weight: 700;
}
.gal-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(7,20,40,.97); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--r-lg); object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; opacity: .8; transition: var(--t); }
.lb-close:hover { opacity: 1; color: var(--red); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-section { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 24px; margin-top: 48px; }
.testi-card {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  border: 1px solid var(--gray-200);
  transition: var(--t);
}
.testi-card:hover { background: #fff; box-shadow: var(--sh-md); transform: translateY(-4px); }
.testi-card::before {
  content: '"'; font-family: var(--font-head); font-size: 5rem; line-height: .8;
  color: var(--red); opacity: .15; position: absolute; top: 14px; left: 18px;
}
.testi-stars { color: #F5A623; font-size: .9rem; margin-bottom: 12px; }
.testi-text { font-size: .93rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 800; font-size: .9rem; }
.testi-loc { font-size: .78rem; color: var(--gray-400); }

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: var(--red);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(1.9rem,4vw,3rem); color: #fff; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════ */
.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; margin-top: 48px; }

.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.c-icon.red { background: var(--red); }
.c-icon.navy { background: var(--navy); }
.c-icon.green { background: var(--green); }
.contact-info-item h4 { font-weight: 800; font-size: .92rem; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: .88rem; color: var(--gray-600); }
.contact-info-item a:hover { color: var(--red); }

.contact-form-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .83rem; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .5px; }
.form-control {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .9rem; color: var(--navy);
  background: var(--off-white); transition: var(--t);
}
.form-control:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: 0 0 0 3px rgba(200,16,46,.1); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A5568' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

/* ═══════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════ */
.breadcrumb-bar { background: var(--gray-100); padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; align-items: center; gap: 8px; list-style: none; font-size: .82rem; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '›'; color: var(--gray-400); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--red); font-weight: 600; }
.breadcrumb .cur { color: var(--gray-600); }

/* ═══════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
═══════════════════════════════════════════════ */
.page-banner {
  background: var(--navy);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: url('../images/banner/slide1.jpg') center/cover;
  opacity: .12;
}
.page-banner-inner { position: relative; z-index: 2; }
.page-banner h1 { font-family: var(--font-head); font-size: clamp(1.9rem,4vw,3rem); color: #fff; margin-bottom: 10px; }
.page-banner h1 span { color: var(--red-light); }
.page-banner p { color: rgba(255,255,255,.7); font-size: 1rem; }

/* ═══════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════ */
.svc-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 50px; margin-top: 48px; }
.svc-main-img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--r-lg); margin-bottom: 32px; box-shadow: var(--sh-md); }
.svc-content h2 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; margin: 30px 0 14px; color: var(--navy); }
.svc-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.check-list { list-style: none; margin: 16px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--gray-100); font-size: .93rem; }
.check-list li::before { content: '✓'; width: 22px; height: 22px; min-width: 22px; background: var(--green); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 900; margin-top: 1px; }

.faq-item { border: 1px solid var(--gray-200); border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 15px 18px; font-weight: 700; font-size: .92rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--t); }
.faq-q:hover { background: var(--off-white); color: var(--red); }
.faq-icon { color: var(--red); font-weight: 900; font-size: 1.1rem; }
.faq-a { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .32s ease, padding .32s ease; font-size: .88rem; color: var(--gray-600); line-height: 1.7; }
.faq-a.open { max-height: 220px; padding: 14px 18px; }

/* Sidebar */
.svc-sidebar { position: sticky; top: 90px; }
.sb-box { background: #fff; border-radius: var(--r-lg); padding: 26px; margin-bottom: 22px; border: 1px solid var(--gray-200); box-shadow: var(--sh-sm); }
.sb-box.dark { background: var(--navy); border-color: var(--navy); }
.sb-box.dark h3 { color: #fff; }
.sb-box h3 { font-family: var(--font-head); font-weight: 800; margin-bottom: 16px; font-size: 1.1rem; }
.sb-svc-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: var(--r-sm); text-decoration: none; color: var(--navy); font-size: .86rem; font-weight: 700; transition: var(--t); margin-bottom: 3px; }
.sb-svc-link:hover, .sb-svc-link.cur { background: rgba(200,16,46,.07); color: var(--red); }
.sb-svc-link i { color: var(--gray-400); width: 16px; text-align: center; }
.sb-svc-link.cur i { color: var(--red); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { background: var(--navy-deep); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 40px; }
.footer-logo img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 18px; }
.footer-about p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 22px; }
.socials { display: flex; gap: 9px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none; transition: var(--t);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-weight: 800; font-size: .95rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--red); border-radius: 2px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .86rem; transition: var(--t); display: flex; align-items: center; gap: 7px; }
.footer-col ul a:hover { color: var(--red-light); padding-left: 3px; }
.footer-col ul a i { font-size: .7rem; color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ═══════════════════════════════════════════════
   FLOAT BUTTONS + SCROLL TOP
═══════════════════════════════════════════════ */
.floaters { position: fixed; bottom: 28px; right: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 998; }
.float-wa, .float-call {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; text-decoration: none;
  box-shadow: var(--sh-lg);
  transition: var(--t);
}
.float-wa { background: #25D366; color: #fff; }
.float-call { background: var(--navy); color: #fff; }
.float-wa:hover, .float-call:hover { transform: scale(1.12); }

.scroll-up {
  position: fixed; bottom: 28px; left: 20px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red); color: #fff;
  border: none; cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--t);
  box-shadow: var(--sh-red); z-index: 997;
}
.scroll-up.show { opacity: 1; visibility: visible; }
.scroll-up:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════════════ */
.vid-modal { position: fixed; inset: 0; background: rgba(7,20,40,.96); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.vid-modal.open { display: flex; }
.vid-modal iframe { width: min(860px,90vw); height: min(485px,52vh); border-radius: var(--r); border: none; }
.vid-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2rem; cursor: pointer; background: none; border: none; opacity: .8; transition: var(--t); }
.vid-close:hover { color: var(--red); opacity: 1; }

/* ═══════════════════════════════════════════════
   VIDEO GALLERY
═══════════════════════════════════════════════ */
.vid-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.vid-card { border-radius: var(--r-lg); overflow: hidden; background: var(--navy-mid); cursor: pointer; transition: var(--t); }
.vid-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.vid-thumb { position: relative; aspect-ratio: 16/9; }
.vid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-wrap { position: absolute; inset: 0; background: rgba(11,29,58,.45); display: flex; align-items: center; justify-content: center; }
.play-circle { width: 58px; height: 58px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; padding-left: 4px; transition: var(--t); }
.vid-card:hover .play-circle { background: #fff; color: var(--red); transform: scale(1.1); }
.vid-info { padding: 16px; }
.vid-info h3 { color: #fff; font-size: .93rem; font-weight: 800; margin-bottom: 5px; }
.vid-info p { color: rgba(255,255,255,.5); font-size: .8rem; }

/* ═══════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 24px; }
.team-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200); transition: var(--t); text-align: center; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-img-wrap { padding: 28px 28px 16px; }
.team-img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 4px solid var(--gray-100); box-shadow: var(--sh-sm); }
.team-card:hover .team-img { border-color: var(--red); }
.team-info { padding: 0 20px 24px; }
.team-info h3 { font-weight: 800; margin-bottom: 4px; }
.team-info p { font-size: .83rem; color: var(--red); font-weight: 700; }

.value-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 20px; }
.value-card { padding: 28px; background: var(--off-white); border-radius: var(--r-lg); text-align: center; border: 1px solid var(--gray-200); transition: var(--t); }
.value-card:hover { background: #fff; box-shadow: var(--sh-sm); }
.val-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.val-icon.r { background: rgba(200,16,46,.1); }
.val-icon.g { background: rgba(26,122,60,.1); }
.val-icon.n { background: rgba(11,29,58,.08); }
.value-card h3 { font-weight: 800; margin-bottom: 8px; }
.value-card p { font-size: .84rem; color: var(--gray-600); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-round-wrap { width: 270px; height: 270px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .why-grid, .contact-grid, .svc-detail-grid { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .hero-round-wrap { display: none; }
  .hero-panel { width: 100%; background: linear-gradient(135deg, rgba(7,20,40,.9), rgba(11,29,58,.75)); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; box-shadow: var(--sh-lg); border-top: 1px solid var(--gray-200); }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 11px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-menu > li > a::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: auto; display: none; }
  .has-dropdown.open .dropdown { display: grid; }
  .hamburger { display: flex; }
  .nav-call { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero { height: 75vh; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .sp { padding: 56px 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .hero-content h1 { font-size: 2rem; }
  .footer-top { grid-template-columns: 1fr; }
}
