/* =============================================
   MANSI DETECTIVE AGENCY — MAIN STYLESHEET
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0d1e2c;
  --navy2:   #152333;
  --navy3:   #1c2f40;
  --gold:    #b8922a;
  --gold2:   #d4aa4e;
  --white:   #ffffff;
  --offwhite:#f7f8f9;
  --text:    #1e2d3a;
  --muted:   #5a6a78;
  --border:  #e2e6ea;
  --radius:  8px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- TOP BAR --- */
.topbar {
  background: var(--navy);
  color: #8fa8bc;
  font-size: 12.5px;
  border-bottom: 1px solid #ffffff0f;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
  gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar a {
  color: #8fa8bc;
  transition: color .2s;
}
.topbar a:hover { color: var(--gold2); }
.topbar-icon {
  color: var(--gold);
  margin-right: 4px;
  font-style: normal;
}
.tb-icon {
  width: 13px;
  height: 13px;
  color: var(--gold);
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}
.topbar-sep { color: #ffffff20; }

/* --- NAVBAR --- */
.nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,.07);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo { width: 170px; }
.nav-brand {
  text-decoration: none;
  line-height: 1.2;
}
.nav-brand-main {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #1a56db;
  letter-spacing: 0.5px;
  font-family: Georgia, serif;
}
.nav-brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #5a6a78;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 5px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--gold); background: #f5f0e8; }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 4px; }
.nav-call {
  margin-left: 10px;
  background: #1a56db;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, transform .15s;
}
.nav-call:hover {
  background: #1446b8;
  transform: translateY(-1px);
  color: var(--white) !important;
}

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

/* Mobile menu — full sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78vw;
  max-width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -6px 0 32px rgba(0,0,0,.35);
  transition: right .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: var(--navy2);
}
.mobile-menu-header span {
  font: 700 16px Georgia, serif;
  color: var(--gold2);
  letter-spacing: .5px;
}
.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #8fa8bc;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.mobile-menu-close:hover { color: var(--white); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  flex: 1;
}
.mobile-menu nav a {
  color: #c8d8e4;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--gold2); background: rgba(255,255,255,.04); }
.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.mm-call { background: #1a56db; }
.mm-wa   { background: #1a9e45; }
/* Overlay */
.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}
.mm-overlay.open { display: block; }

/* --- HERO --- */
.hero {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  background: url('hero-banner.webp') center center / cover no-repeat;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

/* --- PAGE HERO (inner pages) --- */
.pagehero {
  background: linear-gradient(90deg, #0d1e2cf5, #152333dd);
  color: var(--white);
  padding: 72px 28px;
  border-bottom: 3px solid var(--gold);
}
.pagehero h1 {
  font: 700 42px Georgia, serif;
  margin-bottom: 10px;
  color: var(--white);
}
.pagehero p {
  color: #a8c0d0;
  font-size: 16px;
  max-width: 560px;
}

/* --- SECTIONS --- */
.section { padding: 72px 28px; }
.section-sm { padding: 52px 28px; }
.bg-light { background: var(--offwhite); }
.bg-navy { background: var(--navy2); }

.section-head { text-align: center; margin-bottom: 44px; }
.section-head h2 {
  font: 700 34px Georgia, serif;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-head p {
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 15px;
}
.gold { color: var(--gold); }

/* --- SERVICE CARDS --- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(13,30,44,.07);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,30,44,.13);
}
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}
.card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font: 700 16px Georgia, serif;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-body p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
  flex: 1;
}
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .3px;
  transition: color .2s;
}
.card-link:hover { color: var(--navy); }
.card-accent {
  height: 3px;
  background: var(--gold);
  width: 36px;
  margin-bottom: 12px;
  border-radius: 2px;
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow .25s;
}
.why-item:hover { box-shadow: 0 8px 24px rgba(13,30,44,.09); }
.why-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-item h3 {
  font: 700 15px Georgia, serif;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-item p { color: var(--muted); font-size: 13.5px; }

/* --- CTA BAND --- */
.cta-band {
  background: var(--navy2);
  padding: 52px 28px;
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band h2 {
  font: 700 26px Georgia, serif;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-band p { color: #8fa8bc; font-size: 15px; }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-navy {
  background: var(--navy2);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy3); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-text h2 {
  font: 700 30px Georgia, serif;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p { color: var(--muted); margin-bottom: 14px; font-size: 15px; }
.about-points { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.about-point-icon { color: var(--gold); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.notice {
  padding: 14px 18px;
  background: #fdf8ee;
  border-left: 3px solid var(--gold);
  border-radius: 0 5px 5px 0;
  font-size: 13.5px;
  color: var(--text);
  margin-top: 18px;
}

/* --- SERVICES PAGE --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-block h2 {
  font: 700 26px Georgia, serif;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-block p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service-block ul { display: flex; flex-direction: column; gap: 8px; }
.service-block li {
  font-size: 14px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.service-block li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- CONTACT PAGE --- */
.contact-simple {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(13,30,44,.08);
  overflow: hidden;
}
.contact-form-head {
  background: var(--navy);
  padding: 24px 28px;
}
.contact-form-head h2 {
  font: 700 22px Georgia, serif;
  color: var(--white);
  margin-bottom: 4px;
}
.contact-form-head p {
  color: #8fa8bc;
  font-size: 13.5px;
}
.contact-form-card form {
  padding: 24px 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.field input,
.field select,
.field textarea {
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  font-family: inherit;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 90px; resize: vertical; }
.btn-wa-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: #1a9e45;
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  margin-top: 4px;
}
.btn-wa-submit:hover { background: #158a3a; transform: translateY(-1px); }
.contact-details-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(13,30,44,.08);
  padding: 28px;
}
.contact-details-card h2 {
  font: 700 20px Georgia, serif;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.info-item-icon {
  width: 36px;
  height: 36px;
  background: #fdf8ee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-item-icon svg { width: 16px; height: 16px; color: var(--gold); }
.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-item strong {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
}
.info-item a, .info-item span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.info-item a:hover { color: var(--gold); }
.confidential-box {
  background: #fdf8ee;
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

/* --- CONTACT CTA SECTION --- */
.contact-cta-section {
  background: var(--offwhite);
  padding: 52px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-cta-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--white);
  min-width: 240px;
  transition: transform .2s, box-shadow .2s;
}
.cta-action-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}
.cta-call {
  background: var(--navy2);
  box-shadow: 0 6px 24px rgba(13,30,44,.25);
}
.cta-call:hover { box-shadow: 0 12px 32px rgba(13,30,44,.35); }
.cta-wa {
  background: #1a9e45;
  box-shadow: 0 6px 24px rgba(26,158,69,.3);
}
.cta-wa:hover { box-shadow: 0 12px 32px rgba(26,158,69,.4); }
.cta-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: iconShake 2s ease-in-out infinite;
}
.cta-wa .cta-icon-wrap { animation-delay: .4s; }
.cta-icon { width: 24px; height: 24px; }
.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.cta-label {
  font-size: 12px;
  font-weight: 600;
  opacity: .8;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cta-number {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
}

@keyframes iconShake {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}

@keyframes floatShake {
  0%, 60%, 100% { transform: translateY(0) scale(1); box-shadow: 0 4px 16px rgba(0,0,0,.22); }
  10%           { transform: translateY(-6px) scale(1.04); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
  20%           { transform: translateY(-3px) scale(1.02); }
  30%           { transform: translateY(-5px) scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,.28); }
  40%           { transform: translateY(-2px) scale(1.01); }
}

@media (max-width: 900px) {
  .contact-simple { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .cta-action-btn { min-width: 100%; justify-content: center; padding: 16px 24px; }
  .cta-number { font-size: 16px; }
}

/* --- FOOTER --- */
.footer {
  background: var(--navy);
  color: #7a9ab0;
  padding: 56px 28px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #ffffff0f;
}
.footer-logo { width: 150px; margin-bottom: 14px; }
.footer-about p { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer h4 {
  color: var(--gold2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: #7a9ab0;
  font-size: 13.5px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold2); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
}
.footer-contact-item i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fc-icon { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.info-item-icon { color: var(--gold); font-size: 16px; margin-top: 1px; flex-shrink: 0; display: flex; align-items: center; }
.info-item-icon svg { width: 16px; height: 16px; }
.why-icon svg { width: 28px; height: 28px; color: var(--gold); }
.footer-contact-item a { color: #7a9ab0; transition: color .2s; }
.footer-contact-item a:hover { color: var(--gold2); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #4e6a7a;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--gold2); font-weight: 700; }
.footer-bottom a:hover { color: var(--gold); }

/* --- FLOATING CONTACT BUTTONS --- */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  color: var(--white);
}
.float-btn-call { background: var(--navy2); animation: floatShake 2.5s ease-in-out infinite; }
.float-btn-wa   { background: #1da851; animation: floatShake 2.5s ease-in-out infinite 0.5s; }
.float-btn svg  { flex-shrink: 0; }

/* --- HERO CTA BUTTONS --- */
.hero-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero { position: relative; }
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.hero-btn:hover { transform: translateY(-2px); color: var(--white); }
.hero-btn-call {
  background: var(--navy);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.hero-btn-wa {
  background: #1da851;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29,168,81,.35);
}
.hero-btn-services {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(4px);
}

/* --- CONTACT PAGE INLINE BUTTONS --- */
.contact-btns {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.contact-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.contact-btn-call { background: var(--navy3); }
.contact-btn-wa   { background: #1da851; }

@media (max-width: 600px) {
  .float-btns { bottom: 18px; right: 14px; gap: 8px; }
  .float-btn  { padding: 9px 13px; font-size: 12.5px; }
  .hero-cta   { bottom: 16px; gap: 8px; }
  .hero-btn   { padding: 9px 16px; font-size: 12.5px; }
}

/* --- PRIVACY PAGE --- */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font: 700 22px Georgia, serif; color: var(--navy); margin: 28px 0 10px; }
.prose h3 { font: 700 16px Arial, sans-serif; color: var(--navy); margin: 20px 0 8px; }
.prose p { color: var(--muted); font-size: 15px; margin-bottom: 12px; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 280px; }
  .service-block { grid-template-columns: 1fr; gap: 28px; }
  .service-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .topbar-right { display: none; }
  .topbar-left { gap: 12px; font-size: 12px; }
  .logo { width: 145px; }
  .hero { aspect-ratio: 4 / 3; }
  .pagehero { padding: 52px 20px; }
  .pagehero h1 { font-size: 30px; }
  .section { padding: 52px 20px; }
  .section-head h2 { font-size: 26px; }
  .cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form, .contact-info { padding: 24px 20px; }
  .service-block img { height: 220px; }
  .cta-band { padding: 40px 20px; }
}

@media (max-width: 380px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero { aspect-ratio: 3 / 2.5; }
}
