:root {
  --primary: #c97d8d;
  --primary-dark: #a85d6d;
  --secondary: #f8e8eb;
  --accent: #8b5a62;
  --text: #3d2c2e;
  --text-light: #6d5a5c;
  --bg: #fffbfc;
  --white: #ffffff;
  --shadow: rgba(139, 90, 98, 0.12);
  --radius: 18px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: var(--accent);
}

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

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

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav-wrapper {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 125, 141, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image-placeholder {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px var(--shadow);
}

.hero-image-placeholder svg {
  width: 120px;
  height: 120px;
  fill: var(--white);
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(201, 125, 141, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 125, 141, 0.4);
  color: var(--white);
}

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

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

.btn-ghost {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px var(--shadow);
}

.btn-ghost:hover {
  background: var(--secondary);
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image svg {
  width: 64px;
  height: 64px;
  fill: var(--white);
  opacity: 0.85;
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Sections */
section {
  padding: 90px 0;
}

.section-alt {
  background: var(--secondary);
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Split Layout */
.split-section {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-content h2 {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.split-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.split-image {
  flex: 1;
}

.split-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px var(--shadow);
}

.split-image-placeholder svg {
  width: 100px;
  height: 100px;
  fill: var(--white);
  opacity: 0.85;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--secondary);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.testimonial-info h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 2px;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* Forms */
.form-wrapper {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: 0 15px 50px var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8dfe0;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(201, 125, 141, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

/* Features List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-dark);
}

.feature-item h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

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

/* Footer */
.footer {
  background: var(--accent);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  transition: color 0.25s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 30px var(--shadow);
  padding: 24px;
  z-index: 2000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

.cookie-text a {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

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

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-reject {
  background: transparent;
  color: var(--text);
  border: 1px solid #ddd;
}

.cookie-reject:hover {
  background: #f5f5f5;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: 0 10px 30px rgba(201, 125, 141, 0.5);
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Content Pages */
.content-page {
  padding: 60px 0 80px;
}

.content-page h2 {
  font-size: 1.8rem;
  color: var(--accent);
  margin: 40px 0 16px;
}

.content-page h3 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 30px 0 12px;
}

.content-page p {
  margin-bottom: 16px;
  color: var(--text);
}

.content-page ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.content-page ul li {
  margin-bottom: 8px;
  color: var(--text);
}

/* Thanks Page */
.thanks-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.thanks-content p {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

/* Contact Info */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.contact-info-card {
  flex: 1;
  min-width: 250px;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px var(--shadow);
  text-align: center;
}

.contact-info-card svg {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  margin-bottom: 16px;
}

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

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

/* Service Page Cards */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
}

.service-detail-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 40px;
  color: var(--white);
}

.service-detail-header h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-detail-header .price {
  font-size: 2rem;
  font-weight: 700;
}

.service-detail-body {
  padding: 40px;
}

.service-detail-body p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.service-detail-body ul {
  padding-left: 24px;
  margin-bottom: 25px;
}

.service-detail-body ul li {
  margin-bottom: 10px;
  color: var(--text);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-image {
    order: 0;
    margin-bottom: 40px;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 30px var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .card {
    min-width: 100%;
  }

  .form-wrapper {
    padding: 30px 24px;
  }

  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    right: 20px;
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.9rem;
  }

  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }
}
