:root {
  --primary: #7851A9;
  --primary-dark: #5a3d80;
  --accent: #4169E1;
  --accent-light: #6a8cf2;
  --highlight: #FBA0E3;
  --highlight-light: #fcc2ef;
  --text-main: #333333;
  --text-light: #666666;
  --bg-light: #ffffff;
  --bg-tint: #f9f6fc;
  --font-main: 'Montserrat', sans-serif;
  --font-accent: 'Raleway', sans-serif;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(120, 81, 169, 0.1);
  --shadow-lg: 0 15px 30px rgba(120, 81, 169, 0.15);
  --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;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.bg-tint {
  background-color: var(--bg-tint);
}

/* Typography */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px rgba(120, 81, 169, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 81, 169, 0.5);
}

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

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

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

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(120, 81, 169, 0.2);
}

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

header.scrolled {
  padding: 5px 0;
}

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

.logo {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-banner.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: slideUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  animation: slideUp 1s ease-out 0.2s both;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .btn {
  animation: slideUp 1s ease-out 0.4s both;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.float-shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(20px);
  animation: float 8s infinite alternate ease-in-out;
}

.float-1 { width: 300px; height: 300px; top: -100px; left: -100px; animation-delay: 0s; }
.float-2 { width: 200px; height: 200px; bottom: 100px; right: -50px; animation-delay: -2s; background: linear-gradient(135deg, var(--accent), var(--primary)); }
.float-3 { width: 150px; height: 150px; top: 30%; right: 20%; animation-delay: -4s; background: linear-gradient(135deg, var(--highlight), var(--accent)); }

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(30px, 30px) rotate(10deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Step-by-Step Block */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.step-card {
  display: flex;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-left: 5px solid var(--primary);
}

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

.step-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(120, 81, 169, 0.1);
  position: absolute;
  right: 20px;
  bottom: -10px;
  line-height: 1;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

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

.mini-price-card {
  background: linear-gradient(135deg, #fff, var(--bg-tint));
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(120, 81, 169, 0.2);
  transition: var(--transition);
}

.mini-price-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

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

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

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

.compact-booking {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.compact-booking form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

/* Slider / Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

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

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s 0.3s ease;
}

.carousel-slide.active .carousel-caption {
  transform: translateY(0);
  opacity: 1;
}

.carousel-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.3);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.carousel-nav:hover {
  background: var(--primary);
}

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

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

.dot.active {
  background: var(--highlight);
  transform: scale(1.3);
}

/* Accordion */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

.accordion-header:hover {
  background: var(--bg-tint);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--highlight);
}

.accordion-body {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-light);
}

.accordion-item.active .accordion-body {
  padding: 0 25px 20px;
}

/* Circular About Layout */
.circular-about {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 600px;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid white;
  box-shadow: var(--shadow-lg);
  position: absolute;
  z-index: 2;
  animation: pulse 4s infinite;
}

.circle-item {
  position: absolute;
  width: 200px;
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  border-bottom: 3px solid var(--accent);
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.5);
}

.circle-item:hover {
  transform: scale(1.1) !important; /* Override JS positioning scale */
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.about-text {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 0;
  font-size: 1.1rem;
}

/* Schedule Table */
.schedule-table-container {
  overflow-x: auto;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  padding: 20px;
}

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

.schedule-table th,
.schedule-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.schedule-table th {
  background-color: var(--primary);
  color: white;
  font-family: var(--font-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-table tr {
  transition: var(--transition);
}

.schedule-table tr:hover {
  background-color: var(--bg-tint);
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.badge-beginner { background: var(--highlight); }
.badge-advanced { background: var(--accent); }
.badge-all { background: var(--primary); }

/* Detailed Price Cards */
.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

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

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

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

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

.featured-label {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--highlight);
  color: white;
  padding: 5px 30px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

.price-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
  font-family: var(--font-accent);
}

.price-amount span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: normal;
}

.price-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: 15px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Calculator */
.calculator-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  padding: 50px;
  color: white;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.calc-row {
  margin-bottom: 30px;
}

.calc-label {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: var(--highlight);
  cursor: pointer;
  margin-top: -10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: rgba(255,255,255,0.3);
  border-radius: 5px;
}

#rangeValue {
  font-size: 1.5rem;
  font-weight: bold;
  background: white;
  color: var(--primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.radio-btn {
  display: none;
}

.radio-label {
  padding: 10px 20px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.radio-btn:checked + .radio-label {
  background: white;
  color: var(--primary);
  border-color: white;
}

.calc-result {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.calc-result h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

#totalPrice {
  font-size: 3.5rem;
  font-family: var(--font-accent);
  color: var(--highlight);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

/* Selling Text */
.selling-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.selling-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.8;
}

.selling-text p.lead {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  font-style: italic;
}

.pull-quote {
  font-size: 2rem;
  font-family: var(--font-accent);
  color: var(--accent);
  margin: 40px 0;
  padding: 30px;
  border-top: 2px solid var(--highlight);
  border-bottom: 2px solid var(--highlight);
  position: relative;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  font-size: 2.5rem;
  background: var(--bg-tint);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Photo Gallery */
.gallery-wrapper {
  position: relative;
  padding: 40px 0;
}

.gallery-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
  left: 0;
}

.gallery-line.top { top: 0; }
.gallery-line.bottom { bottom: 0; }

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

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 30px 15px 15px;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--highlight);
}

/* Footer */
footer {
  background: #222;
  color: #ddd;
  padding: 60px 0 20px;
}

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

.footer-col h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-col .logo {
  color: white;
}

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

.footer-col a {
  color: #aaa;
}

.footer-col a:hover {
  color: var(--highlight);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #888;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  padding: 20px;
  z-index: 1500;
  transition: bottom 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.9rem;
}

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

.cookie-btn {
  padding: 8px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cookie-accept {
  background: var(--primary);
  color: white;
}
.cookie-necessary {
  background: #eee;
  color: #333;
}
.cookie-settings {
  background: transparent;
  text-decoration: underline;
  color: var(--text-light);
}

/* Page Headers for Legal Pages */
.page-header {
  padding: 150px 0 80px;
  background: var(--primary);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: white;
}

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

.legal-content h2 {
  color: var(--primary-dark);
  margin: 30px 0 15px;
}

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

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

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

.thanks-content {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
}

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

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

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

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .schedule-table-container {
    padding: 10px;
  }
  
  .circular-about {
    height: auto;
    flex-direction: column;
    padding: 20px 0;
  }
  
  .center-image {
    position: relative;
    margin-bottom: 30px;
  }
  
  .circle-item {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .mini-prices {
    grid-template-columns: 1fr;
  }
}
