@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --primary-color: #7928CA;
  --secondary-color: #4C1D95;
  --accent-color: #B264FE;
  --light-color: #F3EBFF;
  --dark-color: #2D0A58;
  --gradient-primary: linear-gradient(135deg, #9F7AEA 0%, #7928CA 100%);
  --hover-color: #6923AD;
  --background-color: #FDFAFF;
  --text-color: #4B5563;
  --border-color: rgba(178, 100, 254, 0.2);
  --divider-color: rgba(76, 29, 149, 0.1);
  --shadow-color: rgba(76, 29, 149, 0.1);
  --highlight-color: #FFD700;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Playfair Display', serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--alt-font);
  color: var(--dark-color);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { font-size: 1rem; color: var(--text-color); }

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 250, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px var(--shadow-color);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.logo svg {
  flex-shrink: 0;
}

.logo span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.desktop-nav a {
  font-family: var(--main-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-color);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary-color);
  background: var(--light-color);
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(121, 40, 202, 0.35);
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(121, 40, 202, 0.45) !important;
  background: var(--gradient-primary) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark-color);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark-color);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--alt-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}

.mobile-nav a:hover { color: var(--accent-color); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 10, 88, 0.82) 0%, rgba(76, 29, 149, 0.65) 60%, rgba(121, 40, 202, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(178, 100, 254, 0.2);
  border: 1px solid rgba(178, 100, 254, 0.4);
  color: #e8d5ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  font-family: var(--alt-font);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-color);
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 6px 25px rgba(121, 40, 202, 0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(121, 40, 202, 0.55);
  opacity: 0.92;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--alt-font);
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-color);
  font-size: 1.05rem;
  max-width: 620px;
}

.text-center { text-align: center; }
.section-subtitle.center { margin: 0 auto 3rem; }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== CONTENT + IMAGE SECTION ===== */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-split.reverse { direction: rtl; }
.content-split.reverse > * { direction: ltr; }

.content-text h2 {
  margin-bottom: 1.25rem;
}

.content-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--shadow-color);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-image:hover img { transform: scale(1.03); }

.content-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ===== INFO CARDS ===== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.info-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
}

/* ===== EXPERT PAGE ===== */
.expert-bio {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.expert-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-color);
  position: relative;
}

.expert-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.expert-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.expert-details h2 {
  margin-bottom: 1rem;
}

.expert-details p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.expert-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.expert-stat {
  background: var(--light-color);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
}

.expert-stat .num {
  display: block;
  font-family: var(--alt-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.expert-stat .label {
  font-size: 0.8rem;
  color: var(--text-color);
  margin-top: 0.3rem;
  display: block;
}

/* Expert approach list */
.approach-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.approach-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.approach-item:hover {
  box-shadow: 0 10px 30px var(--shadow-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.approach-item .icon-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--light-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.approach-item h4 {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.35rem;
}

.approach-item p { font-size: 0.875rem; }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: 0 8px 25px var(--shadow-color); }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.4rem 1.75rem;
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--primary-color); }

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  padding: 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== RESERVE / FORM ===== */
.reserve-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 50px var(--shadow-color);
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  color: var(--dark-color);
  background: var(--background-color);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.form-checkbox label {
  font-size: 0.83rem;
  line-height: 1.6;
  color: var(--text-color);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-disclaimer {
  margin-top: 1.25rem;
  font-size: 0.77rem;
  color: #9CA3AF;
  line-height: 1.6;
  border-top: 1px solid var(--divider-color);
  padding-top: 1rem;
}

.reserve-info-col {}
.reserve-info-col h3 { margin-bottom: 1rem; }
.reserve-info-col p { margin-bottom: 1rem; line-height: 1.8; }

.reserve-contact-box {
  background: var(--light-color);
  border-radius: 18px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.reserve-contact-box h4 {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.reserve-contact-box a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.reserve-contact-box a:hover { opacity: 0.75; }

/* ===== HERO SMALL (sub-pages) ===== */
.hero-small {
  position: relative;
  padding: 6rem 1.5rem 4.5rem;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-small::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: rgba(178, 100, 254, 0.12);
  border-radius: 50%;
}

.hero-small::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-small-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-small h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-small p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== THANK PAGE ===== */
.thank-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

.thank-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px var(--shadow-color);
}

.thank-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.thank-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(121, 40, 202, 0.4);
}

.thank-inner h1 {
  margin-bottom: 1rem;
}

.thank-inner p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  min-height: 100vh;
}

.policy-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--divider-color);
}

.policy-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.policy-content p {
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-updated {
  font-size: 0.82rem;
  color: #9CA3AF;
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark-color);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 1.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand .logo span {
  background: linear-gradient(135deg, #e8d5ff, #B264FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.footer-col a:hover { color: var(--accent-color); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 50px;
  border: none;
  display: inline-block;
  font-weight: bold;
  font-family: var(--main-font);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* ===== UTILITY ===== */
.bg-light { background-color: var(--light-color); }
.bg-white { background-color: #fff; }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  margin: 1rem 0 1.5rem;
}

.divider.center { margin: 1rem auto 1.5rem; }

.list-check {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.list-check li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 1px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-split.reverse { direction: ltr; }
  .expert-bio { grid-template-columns: 1fr; }
  .expert-photo img { height: 380px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .reserve-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .expert-stats { grid-template-columns: 1fr 1fr; }
  .approach-list { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  .hero-content { padding: 3rem 1.25rem; }
}