/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1a2233; background: #f4f8fd; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* =====================
   VARIABLES
===================== */
:root {
  --blue: #1a8fe3;
  --blue-dark: #0d5fa0;
  --navy: #0a3d6b;
  --navy-deep: #061e35;
  --bg: #f4f8fd;
  --text: #1a2233;
  --muted: #5a6a80;
  --gold: #f59e0b;
  --gold-dark: #b45309;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 16px;
}

/* =====================
   NAV
===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,30,53,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26,143,227,0.15);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.3rem; }
.logo-text { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: #fff; }
.logo-text em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--blue); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: #8bb8d8; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 7px 18px; border-radius: 8px;
  font-weight: 600; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; display: block; }
.mobile-menu { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a { color: #c8e4ff; font-size: 0.95rem; padding: 0.4rem 0; }
.mobile-menu.open { display: flex; }

/* =====================
   HERO
===================== */
.hero {
  background: var(--navy-deep);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5% 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-spray {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--blue);
  animation: drift 8s ease-in-out infinite;
}
.spray1 { width: 600px; height: 600px; top: -200px; right: -100px; animation-delay: 0s; }
.spray2 { width: 400px; height: 400px; bottom: -100px; left: -50px; animation-delay: -3s; }
.spray3 { width: 300px; height: 300px; top: 50%; right: 30%; animation-delay: -6s; }
@keyframes drift { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.hero-content { position: relative; z-index: 1; max-width: 700px; width: 100%; }
.hero-badge {
  display: inline-block;
  background: rgba(26,143,227,0.15);
  border: 1px solid rgba(26,143,227,0.3);
  color: #7acbff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.hero-heading em { color: var(--blue); }
.hero-body { color: #8bb8d8; font-size: 1.05rem; margin-bottom: 1.8rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1.5rem; justify-content: center; }
.btn-primary {
  background: var(--blue); color: #fff;
  padding: 13px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: #c8e4ff;
  border: 1.5px solid rgba(26,143,227,0.4);
  padding: 13px 28px; border-radius: 10px;
  font-weight: 500; font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: #fff; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-trust span { color: #5a8aaa; font-size: 0.82rem; }

/* Before/After Card */
.hero-visual { position: relative; z-index: 1; }
.before-after-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(26,143,227,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 260px;
}
.ba-before, .ba-after { position: relative; }
.ba-label {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff; font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.05em; text-transform: uppercase;
  z-index: 1;
}
.ba-surface { width: 100%; height: 100%; }
.ba-surface.dirty {
  background: #2e2820;
  position: relative;
}
.ba-surface.dirty::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(80,50,20,0.8) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(60,40,15,0.7) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 20%, rgba(90,60,25,0.6) 0%, transparent 40%);
}
.ba-surface.clean {
  background: #c8ced2;
  position: relative;
}
.ba-surface.clean::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(180,190,196,0.5) 18px, rgba(180,190,196,0.5) 19px);
}
.ba-divider {
  width: 44px;
  background: var(--navy);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.ba-divider-line { width: 1px; flex: 1; background: rgba(26,143,227,0.3); }
.ba-divider-icon { font-size: 1.2rem; }

/* =====================
   SECTIONS
===================== */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy-deep); }
.section-booking { background: var(--navy); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.5rem;
}
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--text); margin-bottom: 0.5rem; }
.section-dark .section-title, .section-booking .section-title { color: #fff; }
.section-sub { color: var(--muted); font-size: 0.95rem; }
.section-sub.light { color: #8bb8d8; }
.section-header.light .section-eyebrow { color: #7acbff; }

/* =====================
   SERVICES GRID
===================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 2px solid #e2eaf4;
  border-radius: var(--radius);
  padding: 1.2rem 1rem 1rem;
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
  position: relative;
}
.svc-card:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(26,143,227,0.1); }
.svc-card.on { border-color: var(--blue); background: #eaf4fd; box-shadow: 0 0 0 3px rgba(26,143,227,0.12); }
.svc-card.featured { border-color: rgba(245,158,11,0.3); }
.svc-card.featured:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(245,158,11,0.12); }
.svc-card.featured.on { border-color: var(--gold); background: #fefbe8; box-shadow: 0 0 0 3px rgba(245,158,11,0.15); }
.svc-badge {
  position: absolute; top: -12px; left: 14px;
  background: var(--gold); color: #412402;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  letter-spacing: 0.04em;
}
.svc-tick {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: transparent;
  opacity: 0; transform: scale(0.4);
  transition: all 0.2s;
}
.svc-card.on .svc-tick { background: var(--blue); border-color: var(--blue); color: #fff; opacity: 1; transform: scale(1); }
.svc-card.featured.on .svc-tick { background: var(--gold); border-color: var(--gold); color: #412402; opacity: 1; transform: scale(1); }
.svc-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.svc-name { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 5px; padding-right: 28px; }
.svc-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.45; margin-bottom: 8px; }
.svc-price { font-size: 0.9rem; color: var(--blue); }
.svc-card.featured .svc-price { color: var(--gold-dark); }
.svc-save { font-size: 0.72rem; font-weight: 400; color: var(--gold-dark); background: rgba(245,158,11,0.12); padding: 1px 8px; border-radius: 20px; }

/* Trash stepper */
.trash-stepper { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.stp-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid #d0dcea; background: transparent;
  color: var(--blue); font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.stp-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.stp-cnt { font-size: 0.95rem; font-weight: 600; color: var(--text); min-width: 16px; text-align: center; }
.stp-sub { font-size: 0.78rem; color: var(--blue); font-weight: 600; }

/* Summary bar */
.svc-summary {
  background: #fff;
  border: 1.5px solid #e2eaf4;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.svc-summary-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.2rem;
}
.sum-label { font-size: 0.82rem; color: var(--muted); }
.sum-items { font-size: 0.88rem; color: var(--text); font-weight: 500; margin-top: 2px; }
.sum-total { font-size: 1.6rem; font-weight: 700; color: var(--blue); flex-shrink: 0; margin-left: 1rem; }
.sched-btn {
  display: block; width: 100%;
  background: var(--blue); color: #fff;
  text-align: center; padding: 14px;
  font-weight: 600; font-size: 1rem;
  transition: background 0.2s;
  opacity: 0; pointer-events: none;
  transform: scaleY(0); transform-origin: top;
  max-height: 0; overflow: hidden;
}
.sched-btn.show { opacity: 1; pointer-events: auto; transform: scaleY(1); max-height: 60px; transition: all 0.3s; }
.sched-btn:hover { background: var(--blue-dark); }

/* =====================
   HOW IT WORKS
===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(26,143,227,0.15);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  position: relative;
}
.step-num {
  font-size: 2.5rem; font-weight: 700;
  color: rgba(26,143,227,0.12);
  font-family: 'Playfair Display', serif;
  line-height: 1; margin-bottom: 0.5rem;
}
.step-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.step-card h3 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.8rem; color: #7a9bb8; line-height: 1.5; }

/* =====================
   PRICING
===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price-card {
  background: #fff;
  border: 1.5px solid #e2eaf4;
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  text-align: center;
  position: relative;
}
.price-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.price-name { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.4rem; }
.price-amount { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.price-amount small { font-size: 0.75rem; font-weight: 400; color: var(--muted); display: block; }
.featured-price {
  border-color: rgba(245,158,11,0.4);
  background: #fffbf0;
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #412402;
  font-size: 0.65rem; font-weight: 700;
  padding: 3px 14px; border-radius: 20px;
  white-space: nowrap;
}
.price-note { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }
.price-save {
  display: inline-block; margin-top: 6px;
  background: rgba(245,158,11,0.12); color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 600;
  padding: 2px 10px; border-radius: 20px;
}

/* =====================
   BOOKING FORM
===================== */
.booking-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(26,143,227,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #7acbff; margin-bottom: 0.8rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.field-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field-group:last-child { margin-bottom: 0; }
label { font-size: 0.78rem; color: #8bb8d8; font-weight: 500; }
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(26,143,227,0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  padding: 10px 12px;
  outline: none;
  width: 100%;
  transition: border 0.15s;
}
input::placeholder, textarea::placeholder { color: #3a5a7a; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); }
select option { background: var(--navy-deep); color: #fff; }
textarea { resize: vertical; }
.err { font-size: 0.73rem; color: #f87171; display: none; }
.err.show { display: block; }

/* Booked services in form */
.booking-services {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(26,143,227,0.15);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  min-height: 48px;
  display: flex; align-items: center;
}
.no-svc-msg { font-size: 0.82rem; color: #4a6a8a; }
.no-svc-msg a { color: var(--blue); text-decoration: underline; }
.booked-svc-list { display: flex; flex-wrap: wrap; gap: 6px; }
.booked-tag {
  background: rgba(26,143,227,0.15);
  border: 1px solid rgba(26,143,227,0.3);
  color: #7acbff;
  font-size: 0.75rem; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
}

/* Booking total */
.booking-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(26,143,227,0.1);
  border: 1.5px solid rgba(26,143,227,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin: 1.2rem 0 0.8rem;
}
.bt-label { font-size: 0.8rem; color: #8bb8d8; }
.bt-note { font-size: 0.75rem; color: #4a6a8a; margin-top: 2px; }
.bt-amount { font-size: 1.5rem; font-weight: 700; color: var(--blue); }
.submit-btn {
  width: 100%; background: var(--blue); color: #fff;
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  padding: 14px; cursor: pointer;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--blue-dark); }
.submit-btn:disabled { background: #1a4a70; color: #4a6a8a; cursor: not-allowed; }

/* Success */
.success-box {
  display: none;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1rem;
}
.success-box.visible { display: block; }
.success-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.success-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; color: #4ade80; margin-bottom: 0.5rem; }
.success-msg { font-size: 0.88rem; color: #86efac; line-height: 1.6; margin-bottom: 0.5rem; }
.success-sub { font-size: 0.78rem; color: #4ade80; }
.success-sub a { color: #86efac; text-decoration: underline; }

/* =====================
   FOOTER
===================== */
.footer { background: var(--navy-deep); padding: 3rem 0 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem; }
.footer-brand p { color: #5a7a9a; font-size: 0.85rem; margin: 0.4rem 0; }
.footer-brand a { color: var(--blue); font-size: 0.85rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; text-align: right; }
.footer-links a { color: #5a7a9a; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom p { color: #3a5a7a; font-size: 0.75rem; text-align: center; line-height: 1.6; }

/* =====================
   CHATBOT
===================== */
.chat-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,143,227,0.4);
  transition: transform 0.2s, background 0.2s;
  user-select: none;
}
.chat-bubble:hover { transform: scale(1.08); background: var(--blue-dark); }
.chat-widget {
  position: fixed; bottom: 92px; right: 24px; z-index: 200;
  width: 340px;
  background: var(--navy-deep);
  border: 1px solid rgba(26,143,227,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: none;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-height: 500px;
}
.chat-widget.open { display: flex; }
.chat-header {
  background: var(--navy);
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(26,143,227,0.15);
}
.chat-header-info { display: flex; align-items: center; gap: 10px; }
.chat-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: #fff;
}
.chat-name { font-size: 0.88rem; font-weight: 600; color: #fff; }
.chat-status { font-size: 0.7rem; color: #22c55e; }
.chat-close { background: none; border: none; color: #5a7a9a; font-size: 1rem; padding: 4px; transition: color 0.15s; }
.chat-close:hover { color: #fff; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.chat-msg { display: flex; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg-bubble {
  background: rgba(26,143,227,0.12);
  border: 1px solid rgba(26,143,227,0.2);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem; color: #dbeeff;
  max-width: 80%; line-height: 1.45;
}
.chat-msg.user .chat-msg-bubble { background: var(--blue); border-color: var(--blue); color: #fff; }
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
.typing-indicator span {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5a8aaa;
  animation: bounce 1.2s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }
.chat-typing { padding: 0 12px 4px; }
.chat-input-row { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid rgba(26,143,227,0.12); }
.chat-input {
  flex: 1; background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(26,143,227,0.25);
  border-radius: 8px; color: #fff;
  font-size: 0.82rem; padding: 8px 10px; outline: none;
}
.chat-input::placeholder { color: #3a5a7a; }
.chat-input:focus { border-color: var(--blue); }
.chat-send {
  background: var(--blue); border: none;
  border-radius: 8px; color: #fff;
  padding: 8px 14px; font-size: 0.9rem;
  transition: background 0.15s;
}
.chat-send:hover { background: var(--blue-dark); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 4rem 6% 3rem; text-align: center; }
  .hero-body { margin: 0 auto 1.5rem; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 700px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .booking-card { padding: 1.2rem; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .chat-widget { width: calc(100vw - 32px); right: 16px; }
  .chat-bubble { right: 16px; bottom: 16px; }
}
@media (max-width: 380px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* =====================
   ABOUT PAGE
===================== */
.svc-starting { font-size: 0.72rem; font-weight: 400; color: var(--muted); }

.about-hero {
  background: var(--navy-deep);
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero-badge {
  display: inline-block;
  background: rgba(26,143,227,0.15);
  border: 1px solid rgba(26,143,227,0.3);
  color: #7acbff;
  font-size: 0.82rem; font-weight: 500;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 1.2rem;
}
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; line-height: 1.2; margin-bottom: 1rem;
}
.about-hero h1 em { color: var(--blue); font-style: italic; }
.about-hero p {
  color: #8bb8d8; font-size: 1.05rem;
  max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.7;
}
.about-avatar-wrap { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.about-avatar-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: rgba(26,143,227,0.2);
  border: 3px solid rgba(26,143,227,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
}
.about-body-section { padding: 5rem 1.5rem; background: var(--bg); }
.about-body-inner { max-width: 760px; margin: 0 auto; }
.about-intro-card {
  background: #fff;
  border: 1.5px solid #e2eaf4;
  border-radius: 16px; padding: 2.5rem; margin-bottom: 2rem;
}
.about-intro-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--navy); margin-bottom: 1.25rem;
}
.about-intro-card h2 em { color: var(--blue); font-style: italic; }
.about-story-p {
  font-size: 0.96rem; color: var(--text);
  line-height: 1.85; margin-bottom: 1.1rem;
}
.about-story-p strong { color: var(--navy); }
.about-story-p:last-child { margin-bottom: 0; }

.about-badges-section { background: var(--navy-deep); padding: 4rem 1.5rem; }
.about-badges-inner { max-width: 760px; margin: 0 auto; }
.about-badges-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem;
}
.about-badges-sub { color: #8bb8d8; font-size: 0.88rem; margin-bottom: 2rem; }
.badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.badge-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(26,143,227,0.18);
  border-radius: 12px; padding: 1.25rem 1rem; text-align: center;
}
.badge-card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.badge-card-title { font-size: 0.9rem; font-weight: 600; color: #e8f4ff; margin-bottom: 3px; }
.badge-card-desc { font-size: 0.75rem; color: #7a9bb8; line-height: 1.4; }

.about-promise { padding: 4rem 1.5rem; background: var(--bg); }
.about-promise-inner { max-width: 760px; margin: 0 auto; }
.promise-card {
  background: var(--navy); border-radius: 16px;
  padding: 2.5rem; text-align: center;
}
.promise-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.promise-title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.5rem;
  color: #fff; margin-bottom: 1rem;
}
.promise-text {
  color: #8bb8d8; font-size: 0.95rem;
  line-height: 1.75; max-width: 520px;
  margin: 0 auto 1.5rem;
}

@media (max-width: 600px) {
  .badges-grid { grid-template-columns: 1fr 1fr; }
  .about-intro-card { padding: 1.5rem; }
  .promise-card { padding: 1.75rem 1.25rem; }
  .about-hero { padding: 5rem 1.25rem 3.5rem; }
}
@media (max-width: 380px) {
  .badges-grid { grid-template-columns: 1fr; }
}
