/* ============================================================
   NONO HUNDESALON | Design System & Global Styles
   ============================================================ */

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --color-primary: #C05D2E; /* Muted Burnt Orange */
  --color-primary-hover: #92278F; /* Plum */
  --color-primary-light: #FDF5F0; /* Cream */
  --color-bg: #FAFAF8;
  --color-surface: #F5F0E8;
  --color-text: #2C2C2C;
  --color-text-secondary: #6B6B6B;
  --color-accent: #D4A574;
  --color-border: #E5E0D8;
  --color-error: #C25B56;
  --color-white: #FFFFFF;
  --color-charcoal: #2C2C2C;

  /* New Design Palette */
  --color-orange: #C05D2E;
  --color-plum: #92278F;
  --color-cream: #FDF5F0;
  --color-gold: #FFB800;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Spacing (8px grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-15: 120px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(44, 44, 44, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(44, 44, 44, 0.10);
  --shadow-button: 0 2px 8px rgba(125, 155, 118, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease-out;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

button {
  cursor: pointer;
  font-family: var(--font-heading);
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

/* --- Skip to Content (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-2);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-md);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-1);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  margin-bottom: var(--space-2);
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.section-description {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-10) 0;
}

.section--cream {
  background-color: var(--color-surface);
}

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

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-header h2 {
  margin-bottom: var(--space-2);
}

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(125, 155, 118, 0.35);
}

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

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

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

.btn--white:hover {
  background-color: var(--color-surface);
  color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--large {
  padding: 16px 40px;
  font-size: 1.0625rem;
  min-width: 220px;
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* --- Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--space-4);
  transition: all var(--transition-base);
}

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

.card--no-hover:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  height: var(--header-height);
}

.header--transparent {
  background: transparent;
}

.header--solid {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(44, 44, 44, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.header__logo img {
  height: 48px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.header__logo-white {
  display: none;
}

.header__logo-color {
  display: block;
}

.header--solid .header__logo-white {
  display: none;
}

.header--solid .header__logo-color {
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast);
}

.header--solid .header__nav-links a {
  color: var(--color-text);
}

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

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

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

.header--solid .header__nav-links a:hover {
  color: var(--color-primary);
}

.header__cta {
  margin-left: var(--space-2);
}

/* Mobile Menu Toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header--solid .header__toggle span {
  background: var(--color-text);
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  transition: right var(--transition-base);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-2);
}

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

/* --- New Hero Section (v2) --- */
.hero-v2 {
  background-color: var(--color-cream);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-15) 0 var(--space-8);
  overflow: hidden;
  position: relative;
}

.hero-v2__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
}

.hero-v2__content {
  flex: 1;
  max-width: 600px;
  z-index: 10;
}

.hero-v2__badge {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: var(--space-3);
  box-shadow: 0 4px 12px rgba(242, 101, 34, 0.2);
}

.hero-v2 h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  text-transform: none; /* Modern lowercase look */
}

.text-orange { color: var(--color-orange); }
.text-plum { color: var(--color-plum); }

.hero-v2__description {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.hero-v2 .btn-group {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

.btn-pill {
  border-radius: 50px;
  padding: 12px 12px 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: all var(--transition-base);
}

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

.btn-pill--white {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-pill .icon-circle {
  background: var(--color-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
}

.btn-pill--white .icon-circle {
  background: var(--color-cream);
  color: var(--color-text);
}

/* Visual Side */
.hero-v2__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-v2__watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(0,0,0,0.03);
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-v2__main-img {
  position: relative;
  z-index: 2;
  max-width: 110%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

/* Floating Elements */
.sticker-wonk {
  position: absolute;
  top: 15%;
  left: -5%;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 20px;
  z-index: 5;
  transform: rotate(-12deg);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Star shape */
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: float 4s ease-in-out infinite;
}

.review-card {
  position: absolute;
  bottom: 15%;
  right: -5%;
  background: var(--color-white);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  z-index: 6;
  animation: float 5s ease-in-out 1s infinite;
}

.review-card__avatars {
  display: flex;
  align-items: center;
}

.review-card__avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  margin-left: -10px;
}

.review-card__avatars img:first-child { margin-left: 0; }

.review-card__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.review-card__info strong {
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card__star { color: var(--color-gold); }

.review-card__info span {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-15px) rotate(-8deg); }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-v2__wrapper {
    flex-direction: column;
    text-align: center;
    gap: var(--space-8);
  }
  .hero-v2__content {
    max-width: 100%;
    order: 1;
  }
  .hero-v2__visual {
    order: 2;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-v2__description {
    margin: 0 auto var(--space-6);
  }
  .hero-v2 .btn-group {
    justify-content: center;
  }
  .hero-v2 h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-v2 { padding-top: var(--space-12); }
  .hero-v2 h1 { font-size: 2.2rem; }
  .btn-pill { padding: 10px 10px 10px 20px; font-size: 0.9rem; }
  .sticker-wonk { transform: scale(0.8) rotate(-12deg); left: 0; }
  .review-card { transform: scale(0.8); right: 0; bottom: 5%; }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--color-surface);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.trust-bar__icon {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.trust-bar__value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-bar__label {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* --- Why Choose Us (Features) --- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.feature-card {
  text-align: center;
  padding: var(--space-5) var(--space-4);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  margin-bottom: var(--space-1);
}

.feature-card p {
  font-size: 0.9375rem;
}

/* --- About Preview (2 col) --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.about-preview__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 768px) {
  .about-preview__image {
    margin: 0 calc(-1 * var(--space-3));
    /* Make it full width on mobile by negating container padding */
    border-radius: 0;
    transform: scale(1.1);
    /* Enlarge the image visually */
    transform-origin: center top;
  }

  .about-preview__image img {
    border-radius: 0;
    margin-bottom: var(--space-4);
  }
}

.about-preview__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

.about-preview__text h2 {
  margin-bottom: var(--space-3);
}

.about-preview__text p {
  margin-bottom: var(--space-3);
  font-size: 1.0625rem;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  transition: gap var(--transition-base);
}

.link-arrow:hover {
  gap: var(--space-2);
  color: var(--color-primary-hover);
}

/* --- Services Preview --- */
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.service-preview-card {
  text-align: center;
  padding: var(--space-5) var(--space-3);
  position: relative;
  overflow: hidden;
}

.service-preview-card__size {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.service-preview-card h3 {
  margin-bottom: var(--space-1);
}

.service-preview-card__breeds {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.service-preview-card__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.service-preview-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

.service-note {
  text-align: center;
  margin-top: var(--space-4);
  padding: var(--space-3);
  background: var(--color-primary-light);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* --- Testimonials --- */
.testimonials__track {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: var(--space-1);
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  padding: var(--space-4);
  text-align: left;
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-2);
  color: var(--color-accent);
  font-size: 1.125rem;
}

.testimonial-card__quote {
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__dog {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* --- Before & After --- */
.before-after__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
}

.before-after__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.before-after__item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

/* --- Location Preview --- */
.location-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.location-preview__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 350px;
}

.location-preview__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

.location-preview__info h3 {
  margin-bottom: var(--space-3);
}

.location-preview__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.location-preview__detail svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-primary);
  fill: none;
  margin-top: 2px;
}

.location-preview__detail a {
  font-weight: 500;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary);
  padding: var(--space-8) 0;
  text-align: center;
  color: var(--color-white);
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: var(--space-4);
}

.cta-banner__phone {
  margin-top: var(--space-3);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__phone a {
  color: var(--color-white);
  font-weight: 600;
}

/* --- Footer --- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-8) 0 var(--space-4);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: var(--space-2);
}

.footer__logo {
  height: 32px;
  margin-bottom: var(--space-1);
}

.footer h4 {
  color: var(--color-white);
  font-size: 0.9375rem;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-primary-light);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
  font-size: 0.9375rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-primary);
  fill: none;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a:hover {
  color: var(--color-primary-light);
}

.footer__social {
  display: flex;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: var(--color-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: flex;
  gap: var(--space-3);
}

/* --- Sticky Mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: var(--space-2) var(--space-3);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
  box-shadow: 0 -2px 12px rgba(44, 44, 44, 0.08);
  z-index: 998;
  gap: var(--space-1);
}

.sticky-cta .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.875rem;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-3);
  right: var(--space-3);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 997;
  transition: all var(--transition-base);
  animation: pulse-ring 2s ease-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: calc(var(--header-height) + var(--space-6)) 0 var(--space-4);
  background: var(--color-surface);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: var(--space-2);
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Services Page --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 auto var(--space-2);
}

.process-step h4 {
  margin-bottom: var(--space-1);
}

.process-step p {
  font-size: 0.875rem;
}

/* Pricing Cards */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-2);
}

.pricing__grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-card {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  position: relative;
}

.pricing-card--popular {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.pricing-card__size {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.pricing-card__breeds {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
  min-height: 50px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.pricing-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-secondary);
}

/* Add-ons */
.addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.addon-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
}

.addon-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.addon-card__info h4 {
  margin-bottom: 2px;
}

.addon-card__info p {
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.addon-card__price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Checklist */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1rem;
}

.checklist__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--color-primary);
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: var(--space-3);
}

.faq-item__answer p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Gallery Page --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.gallery-filter {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(125, 155, 118, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--color-white);
  gap: var(--space-1);
}

.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-overlay span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

/* --- About Page --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
  align-items: center;
}

.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}

.about-story__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-xl);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.value-card {
  text-align: center;
  padding: var(--space-5) var(--space-4);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.credentials__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
}

.credential-badge svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

/* Reviews Grid */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

/* --- Contact Page --- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.contact-method-card {
  text-align: center;
  padding: var(--space-5) var(--space-3);
}

.contact-method-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-method-card h3 {
  margin-bottom: var(--space-1);
}

.contact-method-card p {
  font-size: 0.875rem;
  margin-bottom: var(--space-2);
}

/* Booking Widget */
.booking-section {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
}

/* Contact Form */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-1);
}

.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--color-text-secondary);
}

.hours-table tr.today td {
  color: var(--color-primary);
  font-weight: 600;
}

/* Info Box */
.info-box {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-3);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-3) 0;
}

.info-box p {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0;
}

/* --- Legal Pages --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-3);
}

.legal-content h2 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-2);
}

.legal-content h3 {
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.legal-content p {
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
}

.legal-content ul li {
  margin-bottom: var(--space-1);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

/* --- Lightbox / Modal --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* --- Keyframe Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {

  .features__grid,
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__grid.pricing__grid--4-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--popular {
    transform: none;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview,
  .about-story,
  .location-preview {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }

  .about-preview__image {
    order: -1;
    max-height: 500px;
    /* Allow it to be taller */
  }

  .about-preview__image img {
    aspect-ratio: 4/5;
    /* Better for portrait photos */
    object-fit: cover;
    /* Fill the area to avoid letterboxing */
  }

  .services-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: var(--space-6) 0;
  }

  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .features__grid,
  .values__grid,
  .services-preview__grid,
  .contact-methods,
  .addons__grid,
  .reviews__grid,
  .checklist {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__content {
    text-align: center;
    padding-left: var(--space-2);
    padding-right: var(--space-2);
  }

  .hero .btn-group {
    justify-content: center;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }

  .sticky-cta {
    display: flex;
  }

  .whatsapp-btn {
    bottom: calc(var(--space-3) + 72px);
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero__scroll {
    display: none;
  }

  .section-header {
    margin-bottom: var(--space-5);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }

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

  .btn-group {
    flex-direction: column;
  }

  .btn--large {
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }
}

/* --- Booking Section --- */
.booking-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .booking-services {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: left;
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-card-hover);
  background-color: #fcfcfc;
}

.booking-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-4);
  width: 100%;
}

.booking-card__icon {
  background: rgb(212 163 115 / 0.15);
  color: #D4A373;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  display: inline-flex;
}

.booking-card__duration {
  background: var(--color-light);
  color: var(--color-text-secondary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  color: var(--color-heading);
}

.booking-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.booking-card__action {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  color: #D4A373;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  transition: all 0.3s ease;
}

.booking-card:hover .booking-card__action {
  color: var(--color-primary);
}

.btn-back {
  background: none;
  border: none;
  color: #D4A373;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: inherit;
  transition: color 0.3s ease;
}

.btn-back:hover {
  color: var(--color-primary);
}

/* --- Booking Wizard --- */

.wizard-progress {
  width: 100%;
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-1);
}

.wizard-progress__bar {
  height: 100%;
  background: linear-gradient(90deg, #D4A373, var(--color-primary));
  border-radius: 2px;
  transition: width 0.4s ease;
}

.wizard-progress__label {
  text-align: right;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

.wizard-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.wizard-header__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-2);
}

.wizard-header__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--space-1);
}

.wizard-header__subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
}

/* Options grid */
.wizard-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

@media (max-width: 600px) {
  .wizard-options {
    grid-template-columns: 1fr;
  }
}

.wizard-option {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}

.wizard-option:hover {
  border-color: #D4A373;
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.15);
  transform: translateY(-2px);
}

.wizard-option--selected {
  border-color: #D4A373;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.08), rgba(125, 155, 118, 0.06));
  box-shadow: 0 4px 20px rgba(212, 163, 115, 0.2);
}

.wizard-option__icon {
  font-size: 2rem;
}

.wizard-option__label {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-heading);
}

.wizard-option__detail {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Live price preview */
.wizard-price-preview {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-2) var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-4);
}

/* Navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  text-decoration: none;
}

.wizard-btn--back {
  background: none;
  color: var(--color-text-secondary);
  padding-left: 0;
}

.wizard-btn--back:hover {
  color: var(--color-text);
}

.wizard-btn--next {
  background: linear-gradient(135deg, #D4A373, #c4955f);
  color: white;
  margin-left: auto;
}

.wizard-btn--next:hover {
  box-shadow: 0 4px 16px rgba(212, 163, 115, 0.35);
  transform: translateY(-1px);
}

.wizard-btn--disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Summary */
.wizard-summary__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (max-width: 600px) {
  .wizard-summary__items {
    grid-template-columns: 1fr;
  }
}

.wizard-summary__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-3);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.wizard-summary__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.wizard-summary__label {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.wizard-summary__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
}

.wizard-summary__total {
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.1), rgba(125, 155, 118, 0.08));
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-5);
}

.wizard-summary__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--space-2);
}

.wizard-summary__price {
  font-size: 1.75rem;
  color: #D4A373;
}

.wizard-summary__duration {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.wizard-summary__hint {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  margin-top: var(--space-2);
  margin-bottom: 0;
  font-style: italic;
}

/* Book & WhatsApp buttons */
.wizard-btn--book {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: white;
  padding: 16px 24px;
  font-size: 1.125rem;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
}

.wizard-btn--book:hover {
  box-shadow: 0 6px 24px rgba(125, 155, 118, 0.3);
  transform: translateY(-2px);
}

.wizard-btn--whatsapp {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

.wizard-btn--whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.wizard-btn--whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}