@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #ED760E;
  --accent: #FFD700;
  --highlight: #FFAE42;
  --text-dark: #2A2A2A;
  --text-light: #5A5A5A;
  --bg-light: #FFFFFF;
  --bg-cream: #FAF7F2;
  --footer-bg: #1A1A2E;
  --border-color: #EAEAEA;
  --success: #28A745;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(237, 118, 14, 0.3);
}

.btn-primary:hover {
  background-color: #d16408;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 118, 14, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}

header.scrolled {
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

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

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-pilates-banner.png');
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: white;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-element:nth-child(1) { width: 100px; height: 100px; top: 20%; right: 10%; animation-delay: 0s; }
.floating-element:nth-child(2) { width: 60px; height: 60px; bottom: 30%; right: 25%; animation-delay: 2s; }
.floating-element:nth-child(3) { width: 150px; height: 150px; top: 40%; left: 10%; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Block 1: Journey Map */
.bg-cream {
  background-color: var(--bg-cream);
}

.journey-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 60px;
}

.journey-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  flex: 1;
  padding: 0 15px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.journey-step:hover .step-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: white;
}

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.mini-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.mini-price-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.mini-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mini-price-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.mini-price-card .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.mini-price-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.booking-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto 40px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input, .form-group select {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 118, 14, 0.1);
}

.scroll-down-btn {
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.scroll-down-btn:hover {
  color: var(--primary);
}

/* Block 2: Slider */
.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 40px 30px 20px;
}

.slide-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: white;
  color: var(--primary);
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Block 3: Accordion FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.1rem;
  transition: var(--transition);
}

.accordion-header:hover {
  color: var(--primary);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.accordion-icon::before, .accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  transition: var(--transition);
}

.accordion-icon::before {
  top: 9px; left: 0; width: 20px; height: 2px;
}

.accordion-icon::after {
  top: 0; left: 9px; width: 2px; height: 20px;
}

.accordion-item.active .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--bg-cream);
}

.accordion-content {
  padding: 0 25px 25px;
  color: var(--text-light);
}

/* Block 4: Circular About */
.about-circular {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.center-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 10px solid white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.orbit-item {
  position: absolute;
  width: 220px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  z-index: 1;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
}

.orbit-item.visible {
  opacity: 1;
  transform: scale(1);
}

.orbit-item:hover {
  transform: scale(1.05) translateY(-5px) !important;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.orbit-item h4 {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.orbit-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Orbit positioning calculation placeholder - actual positioning done via JS/CSS */
.pos-1 { top: 0; left: 50%; transform: translateX(-50%); }
.pos-2 { top: 25%; right: 10%; }
.pos-3 { bottom: 15%; right: 25%; }
.pos-4 { bottom: 15%; left: 25%; }
.pos-5 { top: 25%; left: 10%; }

/* Block 5: Schedule Table */
.schedule-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.schedule-table th {
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  color: white;
  padding: 20px;
  text-align: left;
  font-weight: 500;
  font-size: 1.1rem;
}

.schedule-table td {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-table tbody tr:nth-child(even) {
  background-color: var(--bg-cream);
}

.schedule-table tbody tr:hover {
  background-color: rgba(237, 118, 14, 0.05);
}

.table-note {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 15px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  background: #E8F5E9;
  color: #2E7D32;
}

.badge.intermediate {
  background: #FFF3E0;
  color: #E65100;
}

.badge.all {
  background: #E3F2FD;
  color: #1565C0;
}

/* Block 6: Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.price-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.price-card .subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
  min-height: 40px;
}

.price-features {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.price-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

/* Block 7: Calculator */
.calc-container {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.calc-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--border-color);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.slider-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
}

.calc-select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  background-color: white;
}

.calc-result {
  background: var(--bg-cream);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border-left: 4px solid var(--primary);
}

.calc-result-title {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.calc-total {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: 'Cormorant Garamond', serif;
}

.calc-details {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.calc-savings {
  margin-top: 10px;
  color: var(--success);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Block 8: Selling Text */
.selling-text-container {
  max-width: 800px;
  margin: 0 auto;
}

.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
  color: var(--primary);
  margin-bottom: 40px;
  font-style: italic;
}

.text-content p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #444;
}

.text-content p:first-letter {
  font-size: 3rem;
  font-family: 'Cormorant Garamond', serif;
  float: left;
  line-height: 1;
  padding-right: 10px;
  color: var(--primary);
}

.highlight-box {
  background: var(--bg-cream);
  padding: 30px 40px;
  border-left: 4px solid var(--primary);
  margin: 40px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.closing-statement {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

/* Block 9: Infographic */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 2.5rem;
  background: var(--bg-cream);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Block 10: Gallery */
.gallery-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  margin-bottom: 50px;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  font-size: 0.9rem;
  text-align: center;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: white;
  padding: 80px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.9rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact li {
  margin-bottom: 15px;
  color: #ccc;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #888;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 9999;
  transition: bottom 0.5s ease-in-out;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  background: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.cookie-btn:hover {
  background: var(--bg-cream);
}

.cookie-btn.accept:hover {
  background: #d16408;
}

/* Utilities & Responsiveness */
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-row { grid-template-columns: 1fr; gap: 30px; }
  .about-circular { height: auto; flex-direction: column; gap: 30px; margin-top: 0; }
  .center-image { margin-bottom: 30px; }
  .orbit-item { position: relative; width: 100%; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; opacity: 1; margin-bottom: 15px; }
  .orbit-item:hover { transform: translateY(-5px) !important; }
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-out;
    gap: 15px;
  }
  .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  
  .hero-content h1 { font-size: 2.5rem; }
  .section-title { font-size: 2rem; }
  
  .journey-container { flex-direction: column; gap: 30px; }
  .journey-container::before { display: none; }
  
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-10px); }
  
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .slide img { height: 300px; }
  .slide-caption h3 { font-size: 1.3rem; }
}

/* Thanks Page specifics */
.thanks-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background: var(--bg-cream);
}

.thanks-content {
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 600px;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 3rem;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

/* Legal Pages specifics */
.legal-header {
  background: var(--footer-bg);
  color: white;
  padding: 120px 20px 60px;
  text-align: center;
}

.legal-content {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-content h2 {
  margin: 40px 0 20px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}