/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #ffffff;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-accent: #44C5FF;
  --color-accent-dark: #44C5FF;
  --color-light-bg: #f5f7fa;
  --color-form-bg: #1a1a1a;
  --color-form-text: #ffffff;
  --color-stars: #ffc107;
  --max-width: 1200px;
  --section-padding: 60px 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  color: var(--color-dark);
}

h1 { font-size: 2.2rem; font-weight: 800; }
h2 { font-size: 1.8rem; font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
  width: 100%;
  font-size: 1.1rem;
  padding: 16px;
}

.stars {
  color: var(--color-stars);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin: 8px 0;
}

.divider {
  width: 60px;
  border: none;
  border-top: 3px solid var(--color-accent);
  margin: 16px auto;
}

/* ===== HERO ===== */
.hero {
  background: #fff;
  color: var(--color-text);
  padding: 60px 0 40px;
}

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

.hero h1 {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 2.8rem;
}

.hero h1 .highlight {
  color: var(--color-dark);
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.hero-cta {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-cta strong {
  text-decoration: underline;
}

.hero p {
  color: var(--color-text);
}

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 250px;
  flex-shrink: 0;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* ===== BOOKING FORM ===== */
.booking-form {
  background: var(--color-form-bg);
  padding: var(--section-padding);
}

.form-card {
  background: var(--color-form-bg);
  color: var(--color-form-text);
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.form-card h2 {
  color: #fff;
  margin-bottom: 12px;
}

.form-card p {
  color: #ccc;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input {
  padding: 14px 16px;
  border: 1px solid #444;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input::placeholder {
  color: #888;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* ===== TRANSFORMATIONS ===== */
.transformation {
  padding: 40px 0;
}

.transformation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.reversed .transformation-inner {
  direction: rtl;
}

.reversed .transformation-inner > * {
  direction: ltr;
}

.transformation-text {
  padding: 30px 40px;
}

.transformation-text h3 {
  color: var(--color-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.transformation-text blockquote {
  color: var(--color-text);
  line-height: 1.8;
  margin-top: 12px;
  white-space: pre-line;
  font-style: normal;
  font-size: 0.95rem;
}

.transformation-image img {
  width: 100%;
  display: block;
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.about .subtitle {
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-top: 4px;
}

.about p:last-child {
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SOLUTIONS ===== */
.solutions {
  padding: var(--section-padding);
}

.solutions h2 {
  margin-bottom: 40px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.solution-card {
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--color-light-bg);
  text-align: center;
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.solution-card h4 {
  margin-bottom: 12px;
  color: var(--color-accent-dark);
}

.solution-card p {
  font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.faq h2 {
  margin-bottom: 30px;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  font-size: 1rem;
  font-weight: 600;
  flex: 1;
  margin-right: 12px;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: #555;
  line-height: 1.8;
  white-space: pre-line;
}

.faq-answer a {
  color: var(--color-accent-dark);
}

/* ===== BOOKING WITH IMAGE ===== */
.booking-with-image {
  background: var(--color-form-bg);
  padding: var(--section-padding);
}

.booking-with-image-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-image img {
  border-radius: 12px;
  width: 100%;
}

/* ===== STEPS ===== */
.steps {
  padding: var(--section-padding);
}

.steps h2 {
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h4 {
  margin-bottom: 10px;
  color: var(--color-accent-dark);
}

.step-card p {
  font-size: 0.9rem;
}

.step-card a {
  color: var(--color-accent-dark);
}

/* ===== FEATURES ===== */
.features {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.features h2 {
  margin-bottom: 30px;
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.features-image img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.features-list ul {
  list-style: none;
  margin-top: 16px;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.9rem;
}

.features-list li:last-child {
  border-bottom: none;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--section-padding);
}

.gallery h2 {
  margin-bottom: 12px;
}

.gallery > .container > p {
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* ===== WHY ME ===== */
.why-me {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.why-me-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-me-text h2 {
  margin-bottom: 20px;
}

.why-me-text p {
  margin-bottom: 14px;
}

.why-me-text .btn {
  margin-top: 12px;
}

.why-me-image img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== STATS ===== */
.stats {
  padding: var(--section-padding);
  background: var(--color-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card h2 {
  color: var(--color-accent);
  font-size: 3rem;
  margin-bottom: 8px;
}

.stat-label {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-sublabel {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 6px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-light-bg);
  border-radius: 12px;
  padding: 28px;
}

.testimonial-card h4 {
  color: var(--color-accent-dark);
  margin-bottom: 4px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #555;
  margin-top: 10px;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* ===== JOURNEY ===== */
.journey {
  padding: var(--section-padding);
  background: var(--color-light-bg);
}

.journey h2 {
  margin-bottom: 20px;
}

.journey .notice {
  font-size: 0.9rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 20px;
}

.journey .signoff {
  font-weight: 600;
  margin-top: 16px;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  padding: 40px 0;
  background: #f0f0f0;
  font-size: 0.75rem;
  color: #888;
}

.disclaimer h4 {
  color: #666;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.disclaimer p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }

  .transformation-inner,
  .booking-with-image-inner,
  .features-inner,
  .why-me-inner {
    grid-template-columns: 1fr;
  }

  .reversed .transformation-inner {
    direction: ltr;
  }

  .solutions-grid,
  .steps-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .hero {
    padding: 30px 0 20px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-body {
    grid-template-columns: 1fr;
  }

  .video-wrapper {
    width: 200px;
    margin: 0 auto;
  }

  .stat-card h2 {
    font-size: 2.2rem;
  }
}
