:root {
  --primary: #D87093;
  --primary-hover: #c45a7d;
  --accent: #8CCB5E;
  --highlight: #2A8D9C;
  --text-main: #333333;
  --text-light: #666666;
  --bg-main: #FAFAFA;
  --bg-card: #FFFFFF;
  --border: #E5E5E5;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; color: var(--text-main); }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  /* color: var(--text-light); */
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

.section-padding {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  font-family: var(--font-family);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(216, 112, 147, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 112, 147, 0.5);
}

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

.btn-accent:hover {
  background-color: #7ab54c;
  transform: translateY(-2px);
}

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

.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;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: padding 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  width: 30px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  margin-right: 10px;
  clip-path: polygon(0 100%, 20% 50%, 40% 50%, 60% 0, 80% 0, 100% 50%, 100% 100%);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
}

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-main);
  transition: 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.png') center/cover no-repeat;
  color: white;
  text-align: center;
}

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

.hero h1 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Block 1: How to */
.howto-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.step-card {
  background: var(--bg-card);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease;
}

.step-card.animate {
  transform: translateY(0);
  opacity: 1;
}

.step-icon {
  font-size: 2rem;
  background: rgba(216, 112, 147, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

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

.mini-price-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s;
}

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

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

.booking-form-compact {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: center;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(216, 112, 147, 0.2);
}

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

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

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

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

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 30px 20px 20px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 10;
  transition: background 0.3s;
}

.slider-btn:hover { background: white; }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

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

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

.dot.active { background: white; }

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

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: var(--bg-card);
}

.accordion-header:hover { background: #fafafa; }

.accordion-icon {
  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;
  background: white;
}

.accordion-content p {
  padding: 0 20px 20px;
  margin: 0;
}

/* Block 4: About Circular */
.about-circular {
  position: relative;
  width: 100%;
  max-width: 600px;
  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(--primary), var(--highlight));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(216, 112, 147, 0.3);
  z-index: 2;
  position: relative;
}

.center-circle::after {
  content: '';
  position: absolute;
  top: -15px; left: -15px; right: -15px; bottom: -15px;
  border: 2px dashed var(--primary);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

.circle-item {
  position: absolute;
  background: white;
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  z-index: 3;
}

.circle-item:nth-child(2) { top: 5%; left: 50%; transform: translateX(-50%); }
.circle-item:nth-child(3) { top: 50%; right: -20px; transform: translateY(-50%); }
.circle-item:nth-child(4) { bottom: 10%; right: 10%; }
.circle-item:nth-child(5) { bottom: 10%; left: 10%; }
.circle-item:nth-child(6) { top: 50%; left: -20px; transform: translateY(-50%); }

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

/* Block 5: Schedule */
.schedule-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

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

.schedule-table tr:hover {
  background: rgba(216, 112, 147, 0.05);
}

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

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

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

.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 { color: var(--text-main); font-size: 1.3rem; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 20px 0; }
.price-card ul { margin: 20px 0 30px; text-align: left; flex-grow: 1; }
.price-card li { margin-bottom: 10px; padding-left: 25px; position: relative; }
.price-card li::before {
  content: '✓';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.calculator {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.calc-group { margin-bottom: 20px; }
.calc-group label { display: block; margin-bottom: 10px; font-weight: 600; }
.calc-group input[type="range"] { width: 100%; accent-color: var(--primary); }
.calc-group select { width: 100%; padding: 10px; border-radius: 8px; border: 1px solid var(--border); font-family: inherit; }
.calc-result { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-align: center; margin-top: 20px; }

/* Block 7: Selling Text */
.selling-text {
  background: linear-gradient(135deg, rgba(216, 112, 147, 0.1), rgba(42, 141, 156, 0.1));
  text-align: center;
  font-size: 1.2rem;
}

.selling-text .container { max-width: 800px; }
.selling-text p { color: var(--text-main); margin-bottom: 20px; }
.pull-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary);
  margin: 40px 0;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  text-align: left;
}

/* Infographic */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: var(--highlight);
  border-radius: 12px;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-icon i { transform: rotate(-45deg); font-style: normal; font-size: 1.5rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 10px; }
.stat-label { color: var(--text-light); font-weight: 500; }

/* Gallery */
.gallery-section .divider {
  height: 2px;
  background: var(--border);
  margin-bottom: 40px;
  width: 100%;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
}

.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;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.review-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.review-name { font-weight: 600; color: var(--text-main); }
.review-stars { color: #FFD700; margin-top: 5px; }

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

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

.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 9999;
  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-buttons { display: flex; gap: 10px; }

/* Responsive */
@media (max-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-circular { height: 500px; max-width: 500px; }
  .center-circle { width: 200px; height: 200px; font-size: 1rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: 0.3s;
  }
  .nav-links.active { left: 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-10px); }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-direction: column; width: 100%; }
  .cookie-buttons button { width: 100%; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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