/* ==========================================
   DESIGN SYSTEM & CUSTOM VARIABLES
   ========================================== */
:root {
  /* Fonts */
  --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: var(--font-sans);

  /* Colors */
  --color-bg-deep: #0a0a0a;
  --color-bg-card: #121212;
  --color-bg-card-hover: #1e1e1e;
  --color-border: #2c2c2c;
  --color-white: #ffffff;
  
  /* Brand Guidelines */
  --color-brand-yellow: #ffd814;    /* Primary Brand Yellow - For main CTAs, Logo, Active states */
  --color-highlight-orange: #ffa41c; /* Highlight Orange - For highlights, secondary accents, gold stars */
  
  /* Text states */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --text-muted: rgba(255, 255, 255, 0.5);

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --header-scrolled-height: 68px;
  --border-radius: 12px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background-color: var(--color-bg-deep);
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--color-bg-deep);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-gradient {
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-brand-yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   SECTION HEADER TEMPLATE
   ========================================== */
.section-header {
  margin-bottom: 64px;
}

.section-tagline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-highlight-orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.title-divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-brand-yellow);
  margin: 20px auto 0;
}

.title-divider-left {
  width: 60px;
  height: 3px;
  background-color: var(--color-brand-yellow);
  margin: 16px 0 24px 0;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background-color: var(--color-brand-yellow);
  color: #000000;
  border-color: var(--color-brand-yellow);
}

.btn-primary:hover {
  background-color: #000000;
  color: var(--color-white);
  border-color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 216, 20, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  color: #000000;
  border-color: var(--color-white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 14px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.header-scrolled {
  height: var(--header-scrolled-height);
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(255, 216, 20, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.logo-accent {
  color: var(--color-brand-yellow);
  font-weight: 400;
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0.15em;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-brand-yellow);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand-yellow);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  padding: 10px 24px;
  font-size: 11px;
}

/* Hamburger mobile button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-smooth);
}

/* Menu toggle active animation */
.header.nav-open .mobile-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--color-brand-yellow);
}

.header.nav-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.header.nav-open .mobile-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--color-brand-yellow);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background-color: var(--color-bg-deep);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 216, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 164, 28, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 60px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-brand-yellow);
  border: 1px solid rgba(255, 216, 20, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  background-color: rgba(255, 216, 20, 0.05);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.trust-icon {
  color: var(--color-highlight-orange);
  font-weight: 700;
}

/* Hero Image Column styling */
.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(1deg);
  transition: var(--transition-bounce);
}

.hero-image-frame:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: rgba(255, 216, 20, 0.5);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background-color: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-brand-yellow);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand-yellow);
}

.badge-text {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

/* ==========================================
   PROBLEM & DREAM STATE (EMPATHY)
   ========================================== */
.empathy {
  padding: 100px 0;
  background-color: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.empathy-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.card-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.pain-card .card-border-top {
  background-color: #3e3e3e;
}

.dream-card .card-border-top {
  background-color: var(--color-brand-yellow);
}

.pain-card:hover {
  border-color: #444;
}

.dream-card:hover {
  border-color: var(--color-brand-yellow);
  box-shadow: 0 12px 40px rgba(255, 216, 20, 0.05);
}

.empathy-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}

.highlight-cross {
  color: #777;
  font-weight: 700;
  margin-right: 8px;
}

.highlight-check {
  color: var(--color-brand-yellow);
  font-weight: 700;
  margin-right: 8px;
}

.empathy-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.empathy-list li {
  font-size: 15px;
  color: var(--text-secondary);
}

.empathy-list li strong {
  display: block;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 100px 0;
  background-color: var(--color-bg-deep);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 56px;
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-brand-yellow);
  background-color: var(--color-bg-card-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-image-wrapper {
  margin: -40px -40px 30px -40px;
  border-top-left-radius: calc(var(--border-radius) - 1px);
  border-top-right-radius: calc(var(--border-radius) - 1px);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  border-bottom: 1px solid var(--color-border);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-image {
  transform: scale(1.04);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--color-brand-yellow);
}

.service-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--color-white);
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-benefit {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-highlight-orange);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: auto;
}

.services-footer {
  max-width: 600px;
  margin: 0 auto;
}

.services-footer p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ==========================================
   THE TRANSFORMATION JOURNEY (TIMELINE)
   ========================================== */
.journey {
  padding: 100px 0;
  background-color: #060606;
}

.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}

/* Vertical Line in center */
.journey-timeline::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brand-yellow) 0%, rgba(255, 216, 20, 0.1) 100%);
}

.journey-step {
  position: relative;
  margin-bottom: 64px;
}

.journey-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: -48px;
  top: -4px;
  width: 36px;
  height: 36px;
  background-color: var(--color-bg-deep);
  border: 2px solid var(--color-brand-yellow);
  color: var(--color-brand-yellow);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255, 216, 20, 0.2);
  z-index: 2;
}

.journey-step:hover .step-number {
  background-color: var(--color-brand-yellow);
  color: #000000;
  transform: scale(1.1);
  transition: var(--transition-smooth);
}

.step-content {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 32px 40px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.journey-step:hover .step-content {
  border-color: rgba(255, 216, 20, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-white);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
  padding: 100px 0;
  background-color: var(--color-bg-deep);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.about-image-col {
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.about-content {
  padding-right: 20px;
}

.about-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brand-yellow);
  margin-bottom: 20px;
}

.about-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.badge-icon {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 216, 20, 0.08);
  border-radius: 50%;
  color: var(--color-brand-yellow);
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
  padding: 100px 0;
  background-color: #060606;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(255, 216, 20, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stars {
  font-size: 18px;
  color: var(--color-highlight-orange);
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  flex-grow: 1;
}

.testimonial-client {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: auto;
}

.client-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.client-info {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================
   FAQ SECTION (ACCORDION)
   ========================================== */
.faq {
  padding: 100px 0;
  background-color: var(--color-bg-deep);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: rgba(255, 216, 20, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  padding: 24px 30px;
  color: var(--color-white);
  cursor: pointer;
  list-style: none; /* Hide default triangle */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
  display: none; /* Safari marker fix */
}

.faq-question::after {
  content: '+';
  font-family: monospace;
  font-size: 20px;
  font-weight: 400;
  color: var(--color-brand-yellow);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(90deg);
  color: var(--color-highlight-orange);
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--color-brand-yellow);
}

.faq-answer {
  padding: 0 30px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

/* ==========================================
   BOOKING/CONSULTATION FORM
   ========================================== */
.book {
  padding: 100px 0;
  background-color: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.book-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: flex-start;
}

.book-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.photo-guide {
  background-color: rgba(255, 216, 20, 0.03);
  border: 1px dashed rgba(255, 216, 20, 0.25);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 40px;
}

.guide-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-yellow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.guide-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.photo-icons {
  display: flex;
  gap: 16px;
}

.photo-icon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--color-brand-yellow);
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--color-white);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Form container */
.book-form-container {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.form-border-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-brand-yellow);
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hidden-field {
  display: none;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row.split {
  flex-direction: row;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  background-color: #0b0b0b;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-white);
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-brand-yellow);
  box-shadow: 0 0 8px rgba(255, 216, 20, 0.15);
  background-color: #0e0e0e;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffd814' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

/* File Upload drag/click styles */
.file-upload-wrapper {
  position: relative;
  border: 1px dashed var(--color-border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
  background-color: #0b0b0b;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.file-upload-wrapper:hover {
  border-color: var(--color-brand-yellow);
  background-color: #0e0e0e;
}

.file-upload-wrapper input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.sms-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 216, 20, 0.28);
  border-radius: 4px;
}

.sms-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-brand-yellow);
  cursor: pointer;
}

.sms-consent label {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  cursor: pointer;
}

.sms-required-note {
  display: block;
  margin-top: 8px;
  color: var(--color-brand-yellow);
  font-size: 12px;
  font-weight: 700;
}

.sms-consent a,
.legal-content a,
.footer-policy-links a {
  color: var(--color-brand-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sms-consent a:hover,
.legal-content a:hover,
.footer-policy-links a:hover {
  color: var(--color-white);
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
}

/* Form Success state */
.form-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 48px;
  margin-bottom: 20px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-brand-yellow);
  margin-bottom: 16px;
}

.success-msg {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 32px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .logo {
  font-size: 20px;
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-size: 12px;
}

.footer-inner h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 24px;
}

.footer-inner p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.map-link {
  display: inline-block;
  font-size: 13px;
  color: var(--color-brand-yellow);
  margin-top: 8px;
}

.map-link:hover {
  color: var(--color-white);
  text-decoration: underline;
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-main {
  padding: 140px 0 90px;
  background: radial-gradient(circle at top right, rgba(255, 216, 20, 0.08), transparent 34%), var(--color-bg-deep);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 44px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 14px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 34px;
}

.legal-content h2 {
  color: var(--color-brand-yellow);
  font-size: 20px;
  margin: 34px 0 12px;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 15px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 20px;
}

.legal-notice {
  margin-top: 30px;
  padding: 18px;
  border-left: 3px solid var(--color-brand-yellow);
  background-color: #0b0b0b;
  color: var(--text-secondary);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .nav {
    display: none; /* Hide desktop nav */
  }

  .mobile-toggle {
    display: flex; /* Show menu toggle */
  }

  /* Mobile Dropdown Menu State */
  .header.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 48px 32px;
    gap: 32px;
    align-items: flex-start;
    animation: fadeIn 0.3s ease forwards;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .header.nav-open .nav-link {
    font-size: 18px;
    font-weight: 500;
  }

  /* Grid adaptation */
  .hero-split,
  .empathy-grid,
  .about-grid,
  .book-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    gap: 24px;
  }

  .hero-image-col {
    order: -1; /* Image on top on tablet/mobile */
  }

  .hero-image-frame {
    max-width: 360px;
  }

  .about-content {
    padding-right: 0;
  }

  .book-info {
    text-align: center;
  }
  
  .title-divider-left {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-details {
    align-items: center;
  }

  .contact-item {
    text-align: left;
    max-width: 360px;
    width: 100%;
  }
}

/* Mobile Screens */
@media (max-width: 576px) {
  .btn-lg {
    width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .empathy-card {
    padding: 30px;
  }

  .service-card {
    padding: 30px;
  }

  .journey-timeline {
    padding-left: 36px;
  }

  .step-number {
    left: -36px;
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 0;
  }
  
  .journey-timeline::before {
    left: 11px;
  }

  .step-content {
    padding: 20px 24px;
  }

  .book-form-container {
    padding: 24px;
  }

  .form-row.split {
    flex-direction: column;
    gap: 20px;
  }

  .photo-icons {
    flex-direction: column;
    gap: 8px;
  }

  .photo-icon-item {
    justify-content: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
