@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&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;
  --white: #ffffff;
  --section-padding: 5rem 0;
}

*, *::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, h4 {
  font-family: var(--alt-font);
  color: var(--dark-color);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p  { margin-bottom: 1rem; }

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--accent-color); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================== HEADER ===================== */
.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px var(--shadow-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-color);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.logo span {
  display: inline;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-color);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: box-shadow 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(121, 40, 202, 0.4);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  gap: 0.8rem;
  box-shadow: 0 8px 20px var(--shadow-color);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-color);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--divider-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary-color); }

.mobile-nav .nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 50px;
  text-align: center;
  border-bottom: none !important;
}

/* ===================== HERO SECTIONS ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark-color);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 10, 88, 0.92) 0%, rgba(76, 29, 149, 0.75) 50%, rgba(121, 40, 202, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(178, 100, 254, 0.2);
  border: 1px solid rgba(178, 100, 254, 0.4);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-color);
}

.hero-lead {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Sub-hero for inner pages */
.hero-sub {
  min-height: 50vh;
  padding: 5rem 1.5rem;
}

.hero-sub .hero-content {
  padding: 0;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(121, 40, 202, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(121, 40, 202, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--light-color);
}

.section-dark {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.section-dark .eyebrow {
  color: var(--accent-color);
}

.section-header p {
  color: var(--text-color);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.8);
}

/* ===================== CONTENT + IMAGE ===================== */
.content-image-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-image-block.reverse {
  direction: rtl;
}

.content-image-block.reverse > * {
  direction: ltr;
}

.content-block h2 {
  margin-bottom: 1.2rem;
}

.content-block p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.image-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-color);
}

.image-block::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: var(--gradient-primary);
  z-index: -1;
}

.image-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.image-block:hover img {
  transform: scale(1.03);
}

/* ===================== FEATURES / CARDS ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(121, 40, 202, 0.15);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-color);
  margin-bottom: 0;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(178, 100, 254, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ===================== EXPERT PAGE ===================== */
.expert-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}

.expert-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow-color);
  position: sticky;
  top: 100px;
}

.expert-photo::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: var(--gradient-primary);
  z-index: -1;
}

.expert-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
}

.expert-bio h2 {
  margin-bottom: 0.5rem;
}

.expert-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.expert-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.expert-feature-item {
  background: var(--light-color);
  border-radius: 12px;
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.expert-feature-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.expert-feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.expert-feature-item p {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 0;
}

/* ===================== FAQ ===================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px var(--shadow-color);
}

.faq-question {
  background: var(--white);
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark-color);
  font-family: var(--alt-font);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--light-color);
}

.faq-question .icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.3rem 1.5rem;
  background: var(--light-color);
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===================== FORM (RESERVE) ===================== */
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 50px var(--shadow-color);
}

.form-card h2 {
  margin-bottom: 0.5rem;
}

.form-card .form-subtitle {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  background: var(--background-color);
  color: var(--dark-color);
  font-family: var(--main-font);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.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: 3px;
  accent-color: var(--primary-color);
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-color);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--primary-color);
  font-weight: 600;
}

.form-disclaimer {
  font-size: 0.78rem;
  color: #9CA3AF;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--divider-color);
}

.form-info-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.form-info-card h3 {
  margin-bottom: 1rem;
}

.price-box {
  background: var(--gradient-primary);
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.price-box .price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.price-box .price-value {
  font-family: var(--alt-font);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.price-box .price-desc {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--divider-color);
  font-size: 0.9rem;
}

.info-list li:last-child { border-bottom: none; }

.info-list .check {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== THANK PAGE ===================== */
.thank-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

.thank-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 80px var(--shadow-color);
  text-align: center;
}

.thank-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.thank-image {
  border-radius: 16px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 10px 40px var(--shadow-color);
}

.thank-image img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

/* ===================== LEGAL PAGES ===================== */
.legal-page {
  min-height: 100vh;
  padding: 5rem 0;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-color);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--divider-color);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark-color);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--alt-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--main-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent-color);
}

.footer-disclaimer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* ===================== 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: inherit;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: #4B5563;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .expert-profile {
    grid-template-columns: 1fr;
  }
  .expert-photo {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  .expert-photo img { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-padding: 3.5rem 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .content-image-block,
  .content-image-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .image-block img { height: 280px; }

  .features-grid { grid-template-columns: 1fr; }

  .reserve-layout { grid-template-columns: 1fr; }

  .expert-features { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .thank-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: center; }
  .form-card { padding: 1.8rem 1.2rem; }
  h1 { font-size: 1.8rem; }
}