:root {
  --navy:        #0b2244;
  --navy-deep:   #060f1e;
  --navy-mid:    #163568;
  --navy-light:  #1e4a8a;
  --gold:        #c9963a;
  --gold-light:  #e8bc6a;
  --gold-pale:   #fdf3e0;
  --white:       #ffffff;
  --grey-soft:   #f4f6fa;
  --grey-mid:    #e3e8f0;
  --text-dark:   #0e1b2e;
  --text-muted:  #5b6e88;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
}

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

/* ─── CURSOR ─────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.6;
}

/* ─── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9997; transform-origin: left; transform: scaleX(0); width: 100%;
}

/* ─── NAVBAR ── */
#mainNav {
  background: rgba(6,15,30,0.0);
  backdrop-filter: blur(0px);
  padding: 1.4rem 0;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  background: rgba(6,15,30,0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,150,58,0.25);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--white) !important; letter-spacing: 0.02em;
}
.navbar-brand .brand-accent { color: var(--gold); }
.brand-logo {
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
}
.navbar-brand {
  padding: 0;
}
.brand-icon {
  display: none;
}
.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 1rem !important;
  position: relative; transition: color 0.25s !important;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left 0.3s, right 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { left: 1rem; right: 1rem; }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), #a07020) !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important; font-size: 0.85rem !important;
  letter-spacing: 0.05em;
  transition: all 0.25s !important;
  box-shadow: 0 2px 16px rgba(201,150,58,0.35) !important;
}
.btn-nav-cta:hover {
  box-shadow: 0 6px 28px rgba(201,150,58,0.55) !important;
  transform: translateY(-1px);
   color: #fff !important;
}
.btn-nav-cta::after { display: none !important; }

/* ─── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep); border: none;
  border-radius: 5px; padding: 0.85rem 2.2rem;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(201,150,58,0.4);
  position: relative; overflow: hidden;
  justify-content: center;
}
.btn-gold::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201,150,58,0.55);
  color: var(--navy-deep);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 5px; padding: 0.85rem 2.2rem;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.03em;
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12); border-color: var(--white);
  color: var(--white); transform: translateY(-2px);
}

/* ─── LABELS & HEADINGS ── */
.label-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem;
}
.label-tag::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--gold); border-radius: 2px;
}
.label-tag-white { color: var(--gold-light); }
.label-tag-white::before { background: var(--gold-light); }
.section-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy); font-weight: 700; line-height: 1.15;
}
.section-heading em { font-style: italic; color: var(--gold); }
.section-heading-white { color: var(--white); }
.section-sub {
  color: var(--text-muted); font-size: 1rem; line-height: 1.75; font-weight: 300;
}
.section-sub-white { color: rgba(255,255,255,0.72); }

/* ─── HERO ── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
#heroTitle {
    color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('images/hero_bg.png') center 30% / cover no-repeat;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(6,15,30,0.92) 0%,
    rgba(11,34,68,0.80) 50%,
    rgba(11,34,68,0.30) 100%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute; width: 2px; height: 2px;
  background: var(--gold-light); border-radius: 50%; opacity: 0;
}
.hero-content { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,150,58,0.15);
  border: 1px solid rgba(201,150,58,0.4);
  color: var(--gold-light); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.45rem 1.2rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)}
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem); color: var(--white);
  font-weight: 700; line-height: 1.1; margin-bottom: 1.4rem;
}
.hero h1 em { color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.82);
  font-weight: 300; line-height: 1.75; max-width: 520px; margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.h-stat strong {
  display: block; font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif; color: var(--gold-light);
  font-weight: 700; line-height: 1;
}
.h-stat span {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-anim 1.8s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}

/* ─── TICKER ── */
.ticker-wrap { background: var(--gold); overflow: hidden; padding: 0.65rem 0; }
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy-deep); padding: 0 2.5rem;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SERVICES ── */
#services { padding: 7rem 0; background: var(--white); }
.service-card {
  border: 1px solid var(--grey-mid); border-radius: 14px;
  overflow: hidden; background: var(--white);
  box-shadow: 0 2px 20px rgba(11,34,68,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 60px rgba(11,34,68,0.16);
}
.service-img-wrap { overflow: hidden; position: relative; }
.service-img-wrap img {
  width: 100%; height: 230px; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-chip {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy-deep);
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 100px;
}
.service-body { padding: 1.6rem; }
.service-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.service-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.1rem; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: gap 0.25s;
}
.service-link:hover { gap: 0.8rem; color: var(--navy); }
.service-link i { transition: transform 0.25s; }
.service-link:hover i { transform: translateX(4px); }

/* ─── WHY US ── */
#why { padding: 7rem 0; background: var(--grey-soft); overflow: hidden; }
.why-img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.why-img-wrap img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 30px 80px rgba(11,34,68,0.22); display: block;
  position: relative; z-index: 1;
}
.why-img-deco {
  position: absolute; width: 200px; height: 200px;
  border: 2px solid var(--gold); border-radius: 20px;
  bottom: -20px; right: -20px; z-index: 0; opacity: 0.5;
}
.why-badge-float {
  position: absolute; bottom: -1.5rem; left: -1.5rem; z-index: 2;
  background: linear-gradient(135deg, var(--gold), #a07020);
  border-radius: 14px; padding: 1.4rem 1.7rem;
  box-shadow: 0 12px 32px rgba(201,150,58,0.5);
  text-align: center; color: var(--navy-deep);
}
.why-badge-float strong {
  display: block; font-size: 2.4rem;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1;
}
.why-badge-float span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.why-point {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.6rem; background: var(--white);
  border-radius: 12px; border: 1px solid var(--grey-mid);
  margin-bottom: 1rem; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.why-point::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  transform: scaleY(0); transition: transform 0.35s ease; transform-origin: bottom;
}
.why-point:hover::before { transform: scaleY(1); }
.why-point:hover { box-shadow: 0 8px 32px rgba(11,34,68,0.1); transform: translateX(4px); }
.why-icon-box {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: background 0.3s, transform 0.3s;
  color: var(--navy-deep);
}
.why-point:hover .why-icon-box { background: var(--gold-light); transform: rotate(5deg) scale(1.1); }
.why-point h5 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.3rem; font-weight: 600; }
.why-point p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── COUNTER STRIP ── */
.counter-strip {
  background: var(--navy); padding: 4rem 0; position: relative; overflow: hidden;
}
.counter-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.counter-item { text-align: center; padding: 1rem; }
.counter-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
  font-weight: 700; color: var(--gold-light); line-height: 1; display: block;
}
.counter-label {
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-top: 0.4rem;
}

/* ─── HOW IT WORKS ── */
#how { padding: 7rem 0; background: var(--white); }
.step-card { text-align: center; padding: 2.5rem 1.5rem; position: relative; }
.step-connector {
  position: absolute; top: 60px; right: -30%; width: 60%; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.35;
}
.col-md-3:last-child .step-connector { display: none; }
.step-num-ring {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold); border: 2.5px solid var(--gold);
  color: var(--navy-deep); font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px rgba(201,150,58,0.1);
  transition: all 0.35s ease;
}
.step-card:hover .step-num-ring {
  background: var(--gold); color: var(--navy-deep);
  box-shadow: 0 0 0 12px rgba(201,150,58,0.2), 0 8px 24px rgba(201,150,58,0.4);
  transform: scale(1.1);
}
.step-emoji { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.step-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.step-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ─── TESTIMONIALS ── */
#testimonials {
  padding: 7rem 0; background: var(--navy-deep);
  position: relative; overflow: hidden;
}
.testi-bg-text {
  position: absolute; font-family: 'Cormorant Garamond', serif;
  font-size: 28rem; line-height: 1;
  color: rgba(255,255,255,0.02); top: -4rem; left: -2rem;
  pointer-events: none; user-select: none;
}
.testi-bg-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,0.012) 60px, rgba(255,255,255,0.012) 61px
  );
}
.tcard {
  background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 2.2rem; height: 100%;
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.tcard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,150,58,0.08), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.tcard:hover::before { opacity: 1; }
.tcard:hover {
  transform: translateY(-8px);
  border-color: rgba(201,150,58,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.tcard-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; margin-bottom: 1rem; }
.tcard-quote-mark {
  font-family: 'Cormorant Garamond', serif; font-size: 4rem;
  line-height: 0.8; color: var(--gold); margin-bottom: 0.75rem; display: block;
}
.tcard p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.75; font-style: italic; margin-bottom: 1.6rem; }
.tcard-author { display: flex; align-items: center; gap: 1rem; }
.tcard-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.tcard-name { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.tcard-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.family-cta-card {
  background: linear-gradient(135deg, rgba(201,150,58,0.18), rgba(201,150,58,0.05));
  border: 1px solid rgba(201,150,58,0.35);
  border-radius: 20px; padding: 3.5rem; text-align: center;
  margin-top: 4rem; position: relative; overflow: hidden;
}
.family-cta-card::before {
  content: '💛'; position: absolute; font-size: 10rem;
  right: -1rem; bottom: -2rem; opacity: 0.05;
}
.family-cta-card h3 { color: var(--gold-light); font-size: 1.8rem; margin-bottom: 0.75rem; }
.family-cta-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 500px; margin: 0 auto 1.75rem; }

/* ─── CONTACT ── */
#contact { padding: 7rem 0; background: var(--grey-soft); }
.contact-info-box { padding-right: 3rem; }
.contact-detail-row { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0; background: var(--gold);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--navy-deep); font-size: 1.1rem; transition: background 0.3s, transform 0.3s;
}
.contact-detail-row:hover .contact-icon { background: var(--gold-light); transform: rotate(-5deg) scale(1.1); }
.contact-text strong {
  display: block; color: var(--navy); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem;
}
.contact-text a, .contact-text span { color: var(--text-muted); font-size: 0.95rem; text-decoration: none; transition: color 0.2s; }
.contact-text a:hover { color: var(--gold); }
.form-card {
  background: var(--white); border-radius: 20px; padding: 3rem;
  box-shadow: 0 8px 50px rgba(11,34,68,0.1);
}
.form-card h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 0.4rem; }
.form-card > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-label {
  font-size: 0.75rem; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.4rem;
}
.form-control, .form-select {
  border: 1.5px solid var(--grey-mid); border-radius: 8px;
  padding: 0.75rem 1rem; font-family: 'Outfit', sans-serif;
  font-size: 0.93rem; color: var(--text-dark); background: var(--grey-soft);
  transition: all 0.25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--navy-mid); box-shadow: 0 0 0 4px rgba(22,53,104,0.1);
  background: var(--white); outline: none;
}
textarea.form-control { min-height: 110px; resize: vertical; }

/* ─── FOOTER ── */
footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.6);
  padding: 5rem 0 2rem; border-top: 2px solid var(--gold);
}
.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}
.footer-brand-logo { display: none; }
.footer-desc { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-top: 0.85rem; }
.footer-col-title { font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.1rem; }
.footer-link { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; margin-bottom: 0.5rem; transition: color 0.2s, transform 0.2s; }
.footer-link:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 3rem; padding-top: 1.75rem; }
.footer-bottom-text { font-size: 0.82rem; }

/* ─── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 46px; height: 46px; background: var(--gold); color: var(--navy-deep);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,150,58,0.5);
  opacity: 0; pointer-events: none;
  transition: all 0.35s;
  transform: translateY(10px);
}
.back-top.show { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); color: var(--navy-deep); transform: translateY(-3px); }

@media (max-width: 991px) {
  .contact-info-box { padding-right: 0; margin-bottom: 3rem; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
}

/* ─── SERVICES PAGE REDESIGN ─── */
.svc-hero {
  min-height: 70vh !important;
}
.svc-hero .hero-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

.svc-detail-row {
  position: relative;
  padding: 8rem 0;
  border-bottom: 1px solid var(--grey-mid);
}
.svc-detail-row:last-child { border-bottom: none; }

.svc-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.8;
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: 0;
}
.flex-lg-row-reverse .svc-number {
  left: auto;
  right: 0;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 45px rgba(11, 34, 68, 0.08);
  position: relative;
  z-index: 2;
  margin-top: -3rem;
  margin-left: 2rem;
}
.flex-lg-row-reverse .glass-panel {
  margin-left: 0;
  margin-right: 2rem;
}

.svc-img-hero {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(11, 34, 68, 0.15);
  transition: transform 0.5s ease;
}
.svc-detail-row:hover .svc-img-hero {
  transform: scale(1.02);
}

.feature-icon-box {
  width: 60px; height: 60px;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(201, 150, 58, 0.3);
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.check-list li::before {
  content: '\F272'; /* bi-check2-circle */
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

@media (max-width: 991px) {
  .svc-number { font-size: 5rem; top: 0; }
  .glass-panel { margin: 1.5rem 0 0 0 !important; padding: 1.5rem; }
  .svc-detail-row { padding: 4rem 0; }
}

/* ─── ABOUT PAGE REDESIGN ─── */
.about-story-img-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(11, 34, 68, 0.2);
}
.about-story-img {
  width: 100%;
  height: auto;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.about-story-img-wrap:hover .about-story-img {
  transform: scale(1.05);
}

.value-card-premium {
  background: var(--grey-soft);
  border: 1px solid var(--grey-mid);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: all 0.4s ease;
  height: 100%;
}
.value-card-premium:hover {
  background: var(--white);
  border-color: var(--gold-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(11, 34, 68, 0.1);
}

.team-card-premium {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.5s ease;
  height: 100%;
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.team-card-premium:hover .team-img-wrap img {
  transform: scale(1.1);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,15,30,0.9), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.team-card-premium:hover .team-overlay {
  opacity: 1;
}
.team-info-box {
  padding: 1.5rem;
  text-align: center;
}
.team-info-box h5 {
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.team-info-box p {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.stat-box-large {
  padding: 3rem;
  background: var(--navy);
  border-radius: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stat-box-large::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,150,58,0.1), transparent 70%);
  pointer-events: none;
}
