/* ======= VARIABLES & RESET ======= */
:root {
  --primary: #E1CC4F;
  --primary-hover: #D4B93A;
  --accent: #1a6b8a;
  --accent-hover: #13526a;
  --dark: #0d2a3a;
  --darker: #081a24;
  --light: #f0f8ff;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-gray: #4a5568;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  --transition: all 0.3s ease-in-out;
  --shadow: 0 10px 30px rgba(13, 42, 58, 0.1);
  --shadow-lg: 0 20px 40px rgba(13, 42, 58, 0.15);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

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

ul {
  list-style: none;
}

img, svg {
  max-width: 100%;
  height: auto;
}

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

.container-sm {
  max-width: 800px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: var(--white); }
.bg-dark { background-color: var(--dark); }
.pb-0 { padding-bottom: 0; }
.mt-md { margin-top: 1.5rem; }
.mt-xl { margin-top: 3rem; }

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 1rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(225, 204, 79, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

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

.text-link {
  color: var(--primary);
  text-decoration: underline;
}

/* ======= HEADER ======= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 15px 0;
}

.header.scrolled {
  padding: 10px 0;
}

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

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

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

.logo-icon {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
}

.nav-list {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
}

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

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

.header.bg-dark .nav-link:hover::after {
  background-color: var(--primary);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.header.bg-dark .burger-menu span {
  background-color: var(--white);
}

/* ======= HERO ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--darker) 0%, var(--accent) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wave {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 200%;
  height: 200px;
  background-repeat: repeat-x;
  background-position: 0 bottom;
  transform-origin: center bottom;
  animation: wave 15s linear infinite;
  opacity: 0.6;
}

.wave1 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,277,576,250.7C672,224,768,139,864,122.7C960,107,1056,160,1152,181.3C1248,203,1344,192,1392,186.7L1440,181.3L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  z-index: 3;
}

.wave2 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,106.7C672,117,768,171,864,192C960,213,1056,203,1152,186.7C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  animation: wave 20s linear infinite reverse;
  z-index: 2;
  bottom: -50px;
}

.wave3 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.15' d='M0,256L48,229.3C96,203,192,149,288,154.7C384,160,480,224,576,218.7C672,213,768,139,864,128C960,117,1056,171,1152,197.3C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  animation: wave 10s linear infinite;
  z-index: 4;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bubbles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-actions .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.hero-actions .btn-outline:hover {
  background-color: var(--white);
  color: var(--dark);
}

/* ======= ANIMATIONS ON SCROLL ======= */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ======= TIMELINE (BLOCK 1) ======= */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 50px;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--dark);
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--light);
}

.timeline-content {
  margin-left: 30px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-grow: 1;
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent var(--white) transparent transparent;
}

.timeline-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.timeline-content h3 {
  color: var(--accent);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

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

/* MINI PRICES */
.mini-prices {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.mini-price-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  border-top: 4px solid var(--accent);
  transition: var(--transition);
}

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

.mini-price-card:nth-child(2) {
  border-top-color: var(--primary);
}

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

.mini-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.mini-details {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* COMPACT FORM */
.booking-form.compact {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.1);
}

.booking-form.compact .btn {
  flex: 0 0 auto;
}

/* ======= SLIDER (BLOCK 2) ======= */
.slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}

.slider-container {
  position: relative;
  height: 500px;
}

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

.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(13, 42, 58, 0.4), rgba(13, 42, 58, 0.8));
  z-index: 1;
}

.slide-1 { background: linear-gradient(45deg, #1a6b8a, #0d2a3a); }
.slide-2 { background: linear-gradient(45deg, #2c7a7b, #1a6b8a); }
.slide-3 { background: linear-gradient(45deg, #2b6cb0, #0d2a3a); }
.slide-4 { background: linear-gradient(45deg, #0d2a3a, #1a6b8a); }

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

.slide-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.slide-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

.slide-caption {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

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

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

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

.slider-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(--primary);
  transform: scale(1.2);
}

/* ======= ACCORDION (BLOCK 3) ======= */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

.accordion-header {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
}

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

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

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

.accordion-inner ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
}

/* ======= CIRCULAR ABOUT (BLOCK 4) ======= */
.circular-layout {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.water-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: ripple 2s linear infinite;
  opacity: 0;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.center-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  z-index: 3;
}

.circle-card {
  position: absolute;
  width: 220px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 1;
  transition: var(--transition);
}

.circle-card:hover {
  transform: scale(1.05) translateY(-5px) !important;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.circle-card h3 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 5px;
}

.circle-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.card-top-left { top: 50px; left: 50px; transform: translateY(0); }
.card-top-right { top: 50px; right: 50px; transform: translateY(0); }
.card-bottom-left { bottom: 50px; left: 50px; transform: translateY(0); }
.card-bottom-right { bottom: 50px; right: 50px; transform: translateY(0); }

/* ======= SCHEDULE TABLE (BLOCK 5) ======= */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 600px;
}

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

.schedule-table th {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.schedule-table tbody tr:hover {
  background-color: var(--light);
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-green { background-color: #e6f4ea; color: #2f855a; }
.badge-orange { background-color: #feebc8; color: #c05621; }
.badge-blue { background-color: #ebf8ff; color: #2b6cb0; }
.badge-purple { background-color: #faf5ff; color: #553c9a; }

/* ======= FULL PRICE CARDS (BLOCK 6) ======= */
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.price-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

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

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

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

.price-card-header {
  background: var(--dark);
  color: var(--white);
  padding: 30px 20px;
  text-align: center;
}

.price-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary);
}

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

.price-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.price-card-body {
  padding: 30px 20px;
  flex-grow: 1;
}

.price-features li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-gray);
}

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

.price-card-footer {
  padding: 0 20px 30px;
  text-align: center;
}

.price-badge {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight .price-card-header {
  background: linear-gradient(135deg, var(--dark), var(--accent));
}

.highlight .price-badge {
  color: var(--primary-hover);
}

/* ======= CALCULATOR (BLOCK 7) ======= */
.calculator-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  overflow: hidden;
}

.calculator-panel {
  flex: 2;
  padding: 40px;
  background: var(--light);
}

.calculator-result {
  flex: 1;
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.calc-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
}

.slider-input {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
  outline: none;
  margin-top: 10px;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.slider-input::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

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

.calculator-result h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.result-price {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.result-savings {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.result-savings strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 5px;
}

/* ======= SELLING TEXT (BLOCK 8) ======= */
.selling-text-section {
  background: linear-gradient(135deg, var(--darker) 0%, var(--accent) 100%);
  color: var(--white);
  position: relative;
}

.selling-text-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.quote-mark {
  font-family: serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: -40px;
}

.selling-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--primary);
}

.selling-text-box p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.selling-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid var(--accent);
}

.info-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--primary);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.info-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 10px;
}

.info-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.info-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ======= GALLERY (BLOCK 10) ======= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-placeholder {
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bg-grad-1 { background: linear-gradient(to bottom, #1a6b8a, #2b6cb0); }
.bg-grad-2 { background: linear-gradient(to bottom, #2b6cb0, #2c7a7b); }
.bg-grad-3 { background: linear-gradient(to bottom, #2c7a7b, #1a6b8a); }
.bg-grad-4 { background: linear-gradient(to bottom, #0d2a3a, #1a6b8a); }

.gallery-icon {
  font-size: 4rem;
  opacity: 0.5;
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-icon {
  transform: scale(1.2);
  opacity: 0.8;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(13, 42, 58, 0.9));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: var(--transition);
}

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

.gold-divider {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

/* ======= CONTACTS ======= */
.contacts-section {
  padding-bottom: 0;
}

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

.contacts-title {
  font-size: 2.5rem;
  color: var(--primary);
}

.contacts-desc {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contacts-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contacts-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  color: var(--text-dark);
}

.form-title {
  color: var(--dark);
  margin-bottom: 20px;
}

.booking-form.full .form-group {
  margin-bottom: 20px;
}

.booking-form.full label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.map-container {
  width: 100%;
  height: 450px;
  background: var(--light);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  border: 2px dashed #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-family: var(--font-heading);
}

.map-address {
  font-weight: bold;
  margin-top: 10px;
  color: var(--dark);
}

/* ======= FOOTER ======= */
.footer {
  background-color: #051017;
  color: var(--white);
  padding: 60px 0 20px;
}

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

.footer-brand .logo {
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-desc {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer p {
  opacity: 0.8;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

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

.footer-links a {
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
  font-size: 0.85rem;
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content p {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ======= LEGAL PAGES & THANKS ======= */
.legal-page .header, .thanks-page .header {
  position: static;
}

.page-content {
  min-height: calc(100vh - 400px);
}

.text-page {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-content h2 {
  margin-top: 30px;
  color: var(--accent);
}

.text-content p {
  margin-bottom: 15px;
}

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

/* THANKS PAGE */
.thanks-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
  overflow: hidden;
}

.thanks-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
}

.thanks-card {
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e6f4ea;
  color: #2f855a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.thanks-title {
  color: var(--dark);
  font-size: 2.5rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .header.bg-dark .nav {
    background: var(--dark);
  }

  .burger-menu {
    display: flex;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .calculator-wrapper {
    flex-direction: column;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline-dot {
    margin-bottom: 15px;
  }

  .timeline-content {
    margin-left: 0;
  }

  .timeline-content::before {
    display: none;
  }

  .circular-layout {
    height: auto;
    flex-direction: column;
    gap: 20px;
  }

  .center-circle {
    margin-bottom: 30px;
  }

  .circle-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 300px;
  }

  .price-card.highlight {
    transform: none;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .text-page {
    padding: 20px;
  }
}