@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --primary-color: #C0392B;
  --secondary-color: #922B21;
  --accent-color: #E74C3C;
  --light-color: #FDF2F2;
  --dark-color: #1A0A0A;
  --gradient-primary: linear-gradient(135deg, #E74C3C 0%, #922B21 100%);
  --hover-color: #A93226;
  --background-color: #FFFBFB;
  --text-color: #4A3333;
  --border-color: rgba(192, 57, 43, 0.18);
  --divider-color: rgba(146, 43, 33, 0.1);
  --shadow-color: rgba(192, 57, 43, 0.1);
  --highlight-color: #F39C12;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lora', serif;
  --white: #ffffff;
  --section-padding: 5rem 0;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.75;
  overflow-x: hidden;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: var(--dark-color);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 500; }
p  { margin-bottom: 1rem; font-size: 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: var(--dark-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--main-font);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.logo-icon { width: 38px; height: 38px; flex-shrink: 0; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.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(--white); }

.nav-cta {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* 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(--white);
  border-radius: 2px;
  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(--dark-color);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
  gap: 0.4rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--main-font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }

.mobile-nav .nav-cta {
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  text-align: center;
  border-bottom: none !important;
  clip-path: none !important;
  border-radius: 2px !important;
  margin-top: 0.4rem;
}

/* ===================== HERO ===================== */
.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.3;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26,10,10,0.95) 0%, rgba(146,43,33,0.75) 55%, rgba(231,76,60,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--main-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.5rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  font-family: var(--alt-font);
  text-transform: none;
  color: var(--accent-color);
  font-weight: 400;
}

.hero-lead {
  font-family: var(--alt-font);
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.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.9rem 2.2rem;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  border-radius: 0;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 6px 25px rgba(192, 57, 43, 0.4);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(231, 76, 60, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.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 3rem; font-size: 0.95rem; }

.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(--dark-color) 0%, var(--secondary-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-family: var(--main-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.section-dark .eyebrow { color: var(--accent-color); }

.section-header p {
  font-family: var(--alt-font);
  color: var(--text-color);
  font-size: 1.05rem;
}

.section-dark .section-header p { color: rgba(255,255,255,0.78); }

/* Eyebrow standalone */
.eyebrow {
  font-family: var(--main-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* ===================== 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 { font-family: var(--alt-font); color: var(--text-color); margin-bottom: 1rem; }

.image-block {
  position: relative;
  overflow: hidden;
}

.image-block::before {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  right: -12px; bottom: -12px;
  background: var(--primary-color);
  z-index: -1;
}

.image-block img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
  position: relative;
}

.image-block:hover img { transform: scale(1.04); }

/* ===================== FEATURES / CARDS ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 24px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  border-radius: 0 8px 8px 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 50px rgba(192, 57, 43, 0.18);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-color);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 1.5rem;
}

.feature-card h3 { font-size: 1rem; margin-bottom: 0.6rem; }
.feature-card p { font-family: var(--alt-font); font-size: 0.9rem; color: var(--text-color); margin-bottom: 0; }

/* ===================== CTA ===================== */
.cta-section {
  padding: 5rem 1.5rem;
  background: var(--dark-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p {
  font-family: var(--alt-font);
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ===================== EXPERT PAGE ===================== */
.expert-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

.expert-photo {
  position: relative;
  overflow: hidden;
}

.expert-photo::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  right: -14px; bottom: -14px;
  background: var(--primary-color);
  z-index: -1;
}

.expert-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  position: relative;
}

.expert-bio h2 { margin-bottom: 0.5rem; }

.expert-title {
  font-family: var(--main-font);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.expert-bio p { font-family: var(--alt-font); }

.expert-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.expert-feature-item {
  background: var(--light-color);
  padding: 1.2rem;
  border-left: 3px solid var(--primary-color);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.expert-feature-item .icon { font-size: 1.4rem; flex-shrink: 0; }

.expert-feature-item h4 {
  font-family: var(--main-font);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}

.expert-feature-item p {
  font-family: var(--alt-font);
  font-size: 0.83rem;
  color: var(--text-color);
  margin-bottom: 0;
}

/* ===================== FAQ ===================== */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-color);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border-radius: 0;
  border-left: 3px solid var(--primary-color);
}

.faq-item:hover { box-shadow: 0 4px 20px var(--shadow-color); }

.faq-question {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--dark-color);
  text-transform: uppercase;
  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.2rem 1.5rem;
  background: var(--light-color);
  border-top: 1px solid var(--border-color);
  font-family: var(--alt-font);
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ===================== FORM ===================== */
.reserve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  box-shadow: 0 8px 40px var(--shadow-color);
}

.form-card h2 { margin-bottom: 0.5rem; }

.form-card .form-subtitle {
  font-family: var(--alt-font);
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.3rem; }

.form-group label {
  display: block;
  font-family: var(--main-font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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: 0;
  background: var(--background-color);
  color: var(--dark-color);
  font-family: var(--alt-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(192, 57, 43, 0.1);
}

.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: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--primary-color);
}

.form-checkbox label {
  font-family: var(--alt-font);
  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-family: var(--alt-font);
  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);
  padding: 1.8rem;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-info-card h3 { margin-bottom: 1rem; font-size: 1.1rem; }

.price-box {
  background: var(--dark-color);
  padding: 1.8rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.price-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.price-box .price-label {
  font-family: var(--main-font);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.price-box .price-value {
  font-family: var(--main-font);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-color);
}

.price-box .price-desc {
  font-family: var(--alt-font);
  font-size: 0.85rem;
  opacity: 0.8;
  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.65rem 0;
  border-bottom: 1px solid var(--divider-color);
  font-family: var(--alt-font);
  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;
  background: var(--light-color);
}

.thank-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem 3rem;
  border: 1px solid var(--border-color);
  border-top: 5px solid var(--primary-color);
  box-shadow: 0 16px 70px var(--shadow-color);
  text-align: center;
}

.thank-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
}

.thank-image {
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
}

.thank-image::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  right: -8px; bottom: -8px;
  background: var(--primary-color);
  z-index: -1;
}

.thank-image img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  position: relative;
}

/* ===================== 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 {
  font-family: var(--alt-font);
  color: var(--text-color);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-content h2 { font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: 0.8rem; }

.legal-content p { font-family: var(--alt-font); margin-bottom: 1rem; line-height: 1.8; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--dark-color);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 2rem;
  border-top: 3px solid var(--primary-color);
}

.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.08);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--main-font);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-family: var(--main-font);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col p { font-family: var(--alt-font); }

.footer-col a {
  display: block;
  font-family: var(--alt-font);
  color: rgba(255,255,255,0.55);
  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(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  padding: 1rem 1.2rem;
  font-family: var(--alt-font);
  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-family: var(--alt-font); font-size: 0.85rem; }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-family: var(--alt-font);
  color: rgba(255,255,255,0.45);
  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.4);
  border-top: 3px solid var(--primary-color);
}

.cookie-banner p { font-family: var(--alt-font); }

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  display: inline-block;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.cookie-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.cookie-btn-alt {
  background-color: #4B5563;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== 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 { 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: 2.5rem;
  }
  .image-block img { height: 270px; }

  .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.9rem; }
}