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

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --gold: #c9a84c;
  --gold-light: #e0c76e;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --text: #2d2d2d;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

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

a:hover {
  color: var(--gold-light);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
}

.btn-nav:hover {
  background: var(--gold-light);
  color: var(--navy);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 35, 50, 0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.logo:hover {
  color: var(--white);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

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

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

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

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

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="rgba(201,168,76,0.08)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero h1 {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-weight: 400;
}

/* Hero Logo */
.hero-logo {
  margin-bottom: 28px;
}

.hero-logo-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 12px;
  background: rgba(201, 168, 76, 0.08);
}

.hero-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  transition: background var(--transition);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-badge span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 32px;
}

.hero-phone-btn {
  margin-left: 12px;
  border-color: var(--gold);
  color: var(--gold);
}

.hero-phone-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.hero-trust {
  margin-top: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--cream);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* ===== How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--gold);
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.steps-note {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-style: italic;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 56px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--gold);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
}

.price-note {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Plans Table */
.plans-table-wrapper {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.plans-table-title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.plans-table-subtitle {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.plans-table th,
.plans-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.plans-table thead {
  background: var(--navy);
  color: var(--white);
}

.plans-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plans-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}

.plans-table tbody tr:last-child {
  border-bottom: none;
}

.plans-table tbody tr.highlight {
  background: rgba(201, 168, 76, 0.08);
}

.star {
  font-size: 0.85rem;
}

.star-value {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-left: 6px;
  vertical-align: middle;
}

.service-card-badge.best-value {
  background: var(--navy);
  color: var(--gold);
}

/* Add-Ons */
.addons {
  max-width: 700px;
  margin: 0 auto;
}

.addons-title {
  text-align: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 24px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.addon-name {
  color: var(--gray-800);
  font-size: 0.95rem;
}

.addon-price {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
  margin-left: 12px;
}

.addons-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 8px;
}

.addons-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

/* ===== Schedule Table ===== */
.schedule-table-wrapper {
  max-width: 850px;
  margin: 0 auto;
  overflow-x: auto;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.schedule-table th,
.schedule-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
}

.schedule-table thead {
  background: var(--navy);
  color: var(--white);
}

.schedule-table th {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.schedule-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.schedule-table tbody tr:hover {
  background: rgba(201, 168, 76, 0.05);
}

.schedule-table tbody tr:last-child {
  border-bottom: none;
}

.schedule-table tbody tr.closed {
  color: var(--gray-600);
  font-style: italic;
}

/* ===== About ===== */
.about-intro {
  text-align: center;
  font-size: 1.15rem;
  color: var(--gray-800);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.75;
}

.satisfaction-badge {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.satisfaction-badge::before {
  content: '\2764\uFE0F ';
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  color: #16a34a;
  font-weight: 600;
  margin-top: 16px;
}

.form-success.visible {
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

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

.contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.contact-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--gray-800);
}

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

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.footer-brand p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

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

.footer-phone {
  margin-top: 4px;
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p:first-child {
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-category {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 16px;
  margin-top: 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.faq-category:first-child {
  margin-top: 0;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 32px 16px 0;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.faq-answer p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Quick FAQ ===== */
.quick-faq {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.quick-faq-item {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}

.quick-faq-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.quick-faq-item span {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== Service Selection / Booking ===== */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.service-select-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.service-select-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-select-card.featured {
  border-color: var(--gold);
}

.service-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.service-select-header h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-select-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-select-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-600);
}

.service-select-note {
  color: var(--gray-600);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.service-select-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
  flex: 1;
}

.service-select-features li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  color: var(--gray-800);
  font-size: 0.8rem;
}

.service-select-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.booking-selected-service {
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-back-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: color var(--transition);
}

.booking-back-btn:hover {
  color: var(--gold-light);
}

.payment-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
}

.payment-note svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.payment-note p {
  font-size: 0.85rem;
  color: var(--gray-800);
  line-height: 1.6;
}

/* Booking Contact Bar */
.booking-contact-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.booking-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.booking-contact-item a {
  color: var(--gray-800);
  font-size: 0.9rem;
  font-weight: 500;
}

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

/* Embedded Checkout */
#checkout-embed {
  min-height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ===== Policy Modals ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: var(--navy);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 16px 0 0;
  z-index: 1;
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--gold);
  color: var(--navy);
}

.modal-body {
  padding: 32px 40px 40px;
}

.modal-body h2 {
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.modal-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-top: 24px;
  margin-bottom: 10px;
}

.modal-body p {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-body ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.modal-body li {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* Footer Policies */
.footer-policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 400;
  transition: color var(--transition);
}

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

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-select-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-faq {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-contact-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 20px;
    transition: right var(--transition);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.05rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 24px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .section {
    padding: 64px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .quick-faq {
    grid-template-columns: 1fr;
  }

  .modal-body {
    padding: 24px;
  }

  .hero-badges {
    gap: 12px;
  }

  .hero-badge {
    padding: 10px 14px;
  }

  .hero-phone-btn {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero-content .btn-lg {
    display: block;
    margin: 0 auto 12px;
    max-width: 280px;
  }
}
