/* ===========================
   BRIGHT SMILE DENTAL
   Design System
   =========================== */

:root {
  --navy: #1B2D4F;
  --navy-light: #243d6a;
  --gold: #C9A84C;
  --gold-light: #d4b76a;
  --white: #ffffff;
  --off-white: #F8F7F4;

  /* Gradients */
  --grad-dark: linear-gradient(135deg, #1B2D4F 0%, #2E4E8A 100%);
  --grad-dark-alt: linear-gradient(135deg, #162440 0%, #1B3D6F 60%, #2A5298 100%);
  --grad-light: linear-gradient(160deg, #ffffff 0%, #EEF3FF 100%);
  --grad-soft: linear-gradient(160deg, #F8F7F4 0%, #EDF1FF 100%);
  --grad-gold: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  --gray-100: #f3f2ef;
  --gray-300: #d1cfc9;
  --gray-500: #8a8880;
  --gray-700: #4a4845;
  --text: #1a1a18;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ===========================
   CURSOR GLOW
   =========================== */

.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 40%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}

/* Only on devices with a real mouse */
@media (hover: none) {
  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Display serif for headings */
h1, h2 {
  font-family: 'DM Serif Display', Georgia, serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-gold:hover::after {
  transform: translateX(100%);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d4b76a 0%, #f0d880 50%, #d4b76a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ===========================
   TYPOGRAPHY
   =========================== */

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===========================
   NAV
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav.scrolled {
  background: linear-gradient(135deg, rgba(27,45,79,0.97) 0%, rgba(46,78,138,0.97) 100%);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--gold);
  font-size: 1.2rem;
}

.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy);
  padding: 1rem 2rem 1.5rem;
}

.nav-mobile a {
  color: rgba(255,255,255,0.8);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
}

.nav-mobile .btn { margin-top: 1rem; width: 100%; }

/* ===========================
   HERO
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 25, 45, 0.82) 0%,
    rgba(27, 45, 79, 0.65) 50%,
    rgba(27, 45, 79, 0.25) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  width: 100%;
}

.hero-content {
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rating-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.rating-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.rating-text strong { color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===========================
   TRUST BAR
   =========================== */

.trust-bar {
  background: var(--grad-soft);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(180,190,230,0.3);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4rem;
}

.trust-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}

.trust-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.trust-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-300);
  flex-shrink: 0;
}

/* ===========================
   SERVICES
   =========================== */

.services {
  padding: 7rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 8px rgba(27,45,79,0.06), 0 8px 24px rgba(27,45,79,0.04);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(27,45,79,0.12), 0 24px 48px rgba(27,45,79,0.08);
}

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.service-card--featured h3 { color: #ffffff !important; }
.service-card--featured p { color: #ffffff !important; }

.service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }

.service-card--img { padding: 0; overflow: hidden; }
.service-card--img h3 { padding: 0 2rem 0.5rem; }
.service-card--img p { padding: 0 2rem 2rem; }

.service-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card--img:hover .service-img-wrap img { transform: scale(1.05); }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===========================
   TRANSFORMATIONS
   =========================== */

.transformations {
  padding: 7rem 0;
  background: var(--grad-soft);
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 1rem auto 0;
  line-height: 1.7;
  text-align: center;
}

.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 0;
}

.transform-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(27,45,79,0.06), 0 8px 24px rgba(27,45,79,0.04);
  transition: var(--transition);
}

.transform-card:hover {
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(27,45,79,0.12), 0 24px 48px rgba(27,45,79,0.08);
}

/* Slider */
.slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--gray-100);
}

.slider-before,
.slider-after {
  position: absolute;
  inset: 0;
}

.slider-before img,
.slider-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Before = left half of the combined image */
.split-before {
  object-position: left center !important;
  filter: none !important;
}

/* After = right half of the combined image */
.split-after {
  object-position: right center !important;
}

/* After = on top, clipped to left portion by JS — starts at 50% */
.slider-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.0s; /* instant while dragging */
}

/* Drag hint animation on load */
.slider-after.hint-animate {
  transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.handle-line {
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.handle-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.slider-labels {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 0.85rem;
  z-index: 9;
  pointer-events: none;
}

.label-before,
.label-after {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.label-before {
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.85);
}

.label-after {
  background: rgba(201,168,76,0.85);
  color: var(--navy);
}

/* Card info */
.transform-info {
  padding: 1.5rem 1.75rem;
}

.transform-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.transform-outcome {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
  font-style: italic;
}

.transform-patient {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.6rem;
  font-weight: 500;
  font-style: normal;
}

/* CTA block */
.transformations-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-300);
  box-shadow: 0 2px 8px rgba(27,45,79,0.05);
}

.transformations-cta p {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.transformations-cta p em {
  font-style: italic;
  color: var(--gold);
}

.transform-cta-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 900px) {
  .transformations-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ===========================
   WHY US
   =========================== */

.why-us {
  padding: 7rem 0;
  background: var(--grad-light);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(27,45,79,0.06), 0 8px 24px rgba(27,45,79,0.04);
}

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(27,45,79,0.12), 0 24px 48px rgba(27,45,79,0.07);
}

.why-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.why-card--img { padding: 0; overflow: hidden; }
.why-card-img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.why-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.why-card--img:hover .why-card-img-wrap img { transform: scale(1.05); }
.why-card-body {
  padding: 1.5rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */

.testimonials {
  padding: 7rem 0;
  background: var(--grad-dark);
}

.testimonials .section-tag { color: var(--gold); }
.testimonials .section-title { color: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), inset 0 1px 0 rgba(201,168,76,0.1), 0 8px 32px rgba(0,0,0,0.2);
}

.testimonial-card--large {
  grid-column: span 2;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card--large blockquote { font-size: 1.15rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===========================
   ABOUT
   =========================== */

.about {
  padding: 7rem 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-card {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 8px 32px rgba(27,45,79,0.12);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .about-card { animation: none; }
}

.about-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-card span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.about-content p {
  color: var(--gray-700);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credential {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* ===========================
   HOW IT WORKS
   =========================== */

.how-it-works {
  padding: 7rem 0;
  background: var(--grad-soft);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.step {
  flex: 1;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
}

.step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.step-arrow {
  font-size: 1.25rem;
  color: rgba(201,168,76,0.5);
  padding: 0 1.5rem;
  flex-shrink: 0;
  margin-top: 1rem;
}

/* ===========================
   FAQ
   =========================== */

.faq {
  padding: 7rem 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: start;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-300);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  gap: 1rem;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  display: flex;
  align-items: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1),
              opacity 0.3s ease,
              padding-bottom 0.3s ease;
}

.faq-item.open .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* ===========================
   FINAL CTA
   =========================== */

.final-cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.final-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,45,0.82) 0%, rgba(27,45,79,0.70) 100%);
  z-index: 1;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   CONTACT
   =========================== */

.contact {
  padding: 7rem 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(27,45,79,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-item span, .contact-item a {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: var(--grad-dark-alt);
  padding: 5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-contact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.footer-contact a {
  font-size: 0.9rem;
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ===========================
   PAYMENT
   =========================== */

.payment {
  padding: 7rem 0;
  background: var(--grad-dark-alt);
}

.payment-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: center;
}

.payment .section-tag { color: var(--gold); }
.payment .section-title { color: var(--white); }
.payment p { color: rgba(255,255,255,0.65); margin-top: 1rem; line-height: 1.7; }

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.payment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition);
}

.payment-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.15), inset 0 1px 0 rgba(201,168,76,0.1), 0 8px 32px rgba(0,0,0,0.2);
}

.payment-icon { font-size: 2rem; }

.payment-card--img { padding: 0; overflow: hidden; }
.payment-card--img strong { padding: 0 1.5rem 0.4rem; }
.payment-card--img span { padding: 0 1.5rem 1.5rem; }

.payment-img-wrap {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.payment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.payment-card--img:hover .payment-img-wrap img { transform: scale(1.05); }

.payment-card strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.payment-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   BOOKING
   =========================== */

.booking {
  padding: 7rem 0;
  background: var(--grad-light);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}

.booking-info .section-title em {
  font-style: normal;
  color: var(--gold);
}

.booking-sub {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-top: 1rem;
  line-height: 1.7;
}

.booking-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}

.booking-widget-wrap {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,45,79,0.08);
}

/* ===========================
   MAP
   =========================== */

.map-section {
  filter: grayscale(20%) contrast(1.05);
  transition: filter 0.3s;
}
.map-section:hover { filter: none; }

/* Hero video */
.hero-video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

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

@media (max-width: 1024px) {
  .hero-inner { gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.active { display: flex; }

  .hero-inner { padding: 8rem 2rem 5rem; }
  .hero-headline { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { display: none; }

  .trust-grid { flex-direction: column; gap: 2rem; }
  .trust-divider { width: 60px; height: 1px; }
  .trust-item { padding: 0; }

  .services-grid { grid-template-columns: 1fr; }

  .why-cards { grid-template-columns: 1fr; }

  .about-inner,
  .booking-inner,
  .payment-inner,
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }

  .payment-options { grid-template-columns: 1fr; }

  .why-left { text-align: center; }
  .why-left .btn { display: inline-flex; }

  .about-card { right: 0; }
  .about-img-wrapper img { height: 380px; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--large { grid-column: span 1; }

  .cta-actions { flex-direction: column; align-items: center; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }

  .faq-left { text-align: center; }
}

/* ===========================
   CHAT WIDGET
   =========================== */

.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.chat-widget.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* ── Bubble trigger ── */
.chat-bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-gold);
  border: none;
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}
.chat-bubble-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-bubble-avatar svg { width: 100%; height: 100%; }
.chat-bubble-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  opacity: 1;
  transition: max-width 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, margin 0.5s ease;
}
.chat-bubble.collapsed {
  padding: 6px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  justify-content: center;
  transition: padding 0.5s cubic-bezier(0.4,0,0.2,1), border-radius 0.5s cubic-bezier(0.4,0,0.2,1), width 0.5s cubic-bezier(0.4,0,0.2,1), height 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s ease;
}
.chat-bubble.collapsed .chat-bubble-label {
  max-width: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.chat-bubble-ping {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  animation: ping 2s ease-in-out 3;
}
@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* ── Tooltip nudge ── */
.chat-tooltip {
  background: #fff;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  line-height: 1.45;
  padding: 10px 32px 10px 14px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(27,45,79,0.14);
  max-width: 220px;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chat-tooltip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.chat-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.06);
}
.chat-tooltip-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}
.chat-tooltip-close:hover { color: #475569; }

/* ── Chat window ── */
.chat-window {
  width: 340px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(27,45,79,0.18), 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 520px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* ── Header ── */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--grad-dark);
}
.chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.chat-header-avatar svg { width: 100%; height: 100%; }
.chat-header-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chat-header-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.chat-header-status {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}
.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
  line-height: 0;
}
.chat-close:hover { color: #fff; }

/* ── Messages ── */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: #e5e7eb transparent;
}
.chat-msg {
  max-width: 82%;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
  padding: 10px 13px;
  border-radius: 16px;
  animation: msgIn 0.2s ease;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: #f1f5ff;
  color: #1e293b;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--navy);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-msg a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

/* Typing indicator */
.chat-typing {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: #f1f5ff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
  animation: typingDot 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

/* ── Suggestion chips ── */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 12px;
}
.suggestion-chip {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  background: #f1f5ff;
  border: 1px solid #dde4f5;
  border-radius: 20px;
  padding: 5px 11px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.suggestion-chip:hover {
  background: #dde4f5;
  border-color: #b8c8f0;
}

/* ── Input row ── */
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid #f1f5f9;
}
.chat-input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 24px;
  padding: 9px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s;
  background: #f8fafc;
}
.chat-input:focus {
  border-color: var(--gold);
  background: #fff;
}
.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.chat-send:hover {
  background: var(--gold);
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-window { width: calc(100vw - 32px); }

  /* Collapse bubble to circle-only on mobile */
  .chat-bubble {
    padding: 6px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .chat-bubble-label { display: none; }
  .chat-bubble-avatar { width: 40px; height: 40px; }
  .chat-bubble-ping { top: 2px; right: 2px; }

  /* Full-width button in transformations CTA */
  .transformations-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}
