/* ===================================
   SO Pawppy Studio — Pet Grooming
   Design System & Global Styles
   =================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --color-cream:       #FFF8F0;
  --color-blush:       #F5D6C8;
  --color-rose:        #E8A598;
  --color-gold:        #C5A55A;
  --color-gold-light:  #D4BC7C;
  --color-charcoal:    #2C2C2C;
  --color-dark:        #1A1A1A;
  --color-text:        #4A4040;
  --color-text-light:  #8A7D7D;
  --color-white:       #FFFFFF;
  --color-overlay:     rgba(26, 26, 26, 0.55);
  --color-glass:       rgba(255, 255, 255, 0.12);
  --color-glass-border:rgba(255, 255, 255, 0.2);
  --color-lavender:    #E8E0F0;
  --color-sage:        #D5DDD0;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full:999px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 50px rgba(0,0,0,0.12);
  --shadow-gold:0 4px 20px rgba(197,165,90,0.25);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-med:  0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(197,165,90,0.35);
}

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

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

.btn-white {
  background: var(--color-white);
  color: var(--color-charcoal);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition-med);
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-icon {
  width: 52px;
  height: 52px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}

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

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

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

.nav-cta {
  padding: 0.625rem 1.5rem !important;
  font-size: 0.85rem !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.65) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(197, 165, 90, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: var(--space-2xl) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-glass-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #6FCF97;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  animation: fadeInUp 0.8s var(--ease-out) 1s both;
}

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

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-triggered fade in */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered children inside reveal containers */
.reveal.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- Services Section ---------- */
.services {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-med);
  position: relative;
}

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

.service-card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--color-white);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
}

.service-card-body {
  padding: var(--space-md);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.service-feature-tag {
  background: var(--color-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.service-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
}

.service-book-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.service-book-btn:hover {
  background: var(--color-gold);
  transform: scale(1.1);
}

/* ---------- About / Why Choose Us ---------- */
.about {
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.about-float-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-float-text strong {
  display: block;
  font-size: 1.25rem;
  color: var(--color-charcoal);
}

.about-float-text span {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.about-content .section-title {
  margin-bottom: var(--space-md);
}

.about-description {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature-icon.blush  { background: var(--color-blush); }
.about-feature-icon.sage   { background: var(--color-sage);  }
.about-feature-icon.lavender { background: var(--color-lavender); }
.about-feature-icon.gold   { background: rgba(197,165,90,0.15); }

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

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

/* ---------- Testimonials ---------- */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--color-charcoal);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,165,90,0.08), transparent 70%);
  border-radius: 50%;
}

.testimonials .section-title {
  color: var(--color-white);
}

.testimonials .section-subtitle {
  color: rgba(255,255,255,0.5);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-med);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
}

.testimonial-author-info strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ---------- Pricing Section ---------- */
.pricing {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

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

.pricing-header .section-subtitle {
  margin: 0 auto;
}

/* Pricing Tables Grid */
.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
}

/* Pricing Table Card */
.pricing-table-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-med);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

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

.pricing-table-card.featured {
  border-color: var(--color-gold);
  background: var(--color-charcoal);
}

.pricing-table-card.featured .pricing-table-header h3,
.pricing-table-card.featured .pricing-table-header p,
.pricing-table-card.featured .pricing-table-icon {
  color: var(--color-white);
}

.pricing-table-card.featured .pricing-table-header p {
  color: rgba(255,255,255,0.6);
}

.pricing-table-card.featured .price-table thead th {
  color: var(--color-gold);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-table-card.featured .price-table tbody td {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-table-card.featured .price-table tbody td:first-child {
  color: rgba(255,255,255,0.6);
}

.pricing-table-card.featured .price-table tbody td:nth-child(2),
.pricing-table-card.featured .price-table tbody td:nth-child(3) {
  color: var(--color-gold);
  font-weight: 700;
}

.pricing-table-card.featured .weight {
  color: rgba(255,255,255,0.35);
}

.pricing-table-header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.pricing-table-icon {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.pricing-table-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.pricing-table-header p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Price Table */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table thead th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  padding: 0.5rem 0.5rem 0.75rem;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  text-align: left;
}

.price-table thead th:last-child {
  text-align: right;
}

.price-table tbody td {
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--color-text);
  font-weight: 500;
}

.price-table tbody td:first-child {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.price-table tbody td:nth-child(2),
.price-table tbody td:nth-child(3) {
  text-align: right;
  font-weight: 700;
  color: var(--color-charcoal);
  font-family: var(--font-display);
  font-size: 1rem;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.weight {
  display: block;
  font-size: 0.7rem;
  color: var(--color-text-light);
  font-weight: 400;
  margin-top: 1px;
}

/* Pricing Popular Badge */
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

/* Cat Pricing Section */
.pricing-cat {
  max-width: 500px;
  margin: 0 auto var(--space-md);
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 2px dashed var(--color-blush);
  text-align: center;
}

.pricing-cat-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.pricing-cat-icon {
  font-size: 1.8rem;
}

.pricing-cat-label h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.pricing-cat-cards {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.pricing-cat-card {
  flex: 1;
  max-width: 180px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.pricing-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-service-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 0.375rem;
}

.cat-service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
}

/* Pricing Footer Note */
.pricing-footer-note {
  text-align: center;
  padding-top: var(--space-md);
}

.pricing-footer-note p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* ---------- Contact / Booking Section ---------- */
.contact {
  padding: var(--space-2xl) 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  padding-right: var(--space-lg);
}

.contact-info .section-title {
  margin-bottom: var(--space-md);
}

.contact-details {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: rgba(197,165,90,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.contact-hours {
  margin-top: var(--space-lg);
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-charcoal);
  margin-bottom: var(--space-sm);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  font-size: 0.88rem;
}

.hours-row .day {
  color: var(--color-text);
  font-weight: 500;
}

.hours-row .time {
  color: var(--color-text-light);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E8E0D8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-cream);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-group.has-error label {
  color: #EB5757;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #EB5757;
  background-color: #FFF5F5;
}

.form-group.has-error .time-slots-grid {
  border: 1px solid #EB5757;
  padding: 5px;
  border-radius: 8px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-sm);
}

/* Time Slots */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.time-slot {
  padding: 0.6rem;
  border: 2px solid #E8E0D8;
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.time-slot:hover:not(.unavailable):not(.selected) {
  border-color: var(--color-gold-light);
  background: var(--color-cream);
}

.time-slot.selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(197, 165, 90, 0.4);
}

.time-slot.unavailable {
  background: #f0f0f0;
  border-color: #e0e0e0;
  color: #a0a0a0;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo-text {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.82rem;
}

.footer-bottom-links a:hover {
  color: var(--color-gold);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(197,165,90,0.4);
}

/* ---------- Module Placeholder: Chatbot FAB ---------- */
.chatbot-fab {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  z-index: 999;
}

.chatbot-fab:hover {
  background: var(--color-gold);
  transform: scale(1.1);
}

.chatbot-fab .tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.chatbot-fab:hover .tooltip {
  opacity: 1;
}

/* ===================================
   Proposal Page Styles
   =================================== */

/* ---------- Proposal Hero ---------- */
.proposal-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.proposal-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-blush) 40%, var(--color-lavender) 100%);
  z-index: 0;
}

.proposal-hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,165,90,0.12), transparent 70%);
  border-radius: 50%;
}

.proposal-hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,160,152,0.15), transparent 70%);
  border-radius: 50%;
}

.proposal-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.proposal-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.proposal-hero-content .accent {
  color: var(--color-gold);
  position: relative;
}

.proposal-hero-content .accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(197,165,90,0.2);
  border-radius: 3px;
  z-index: -1;
}

.proposal-hero-content .hero-description {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

/* ---------- How It Works ---------- */
.how-it-works {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

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

.how-header .section-subtitle {
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(197,165,90,0.08);
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--space-xl);
  min-width: 60px;
}

.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-blush), var(--color-gold-light));
  border-radius: 1px;
}

.connector-arrow {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-top: 0.25rem;
}

/* ---------- Proposal Pricing ---------- */
.proposal-pricing {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

.proposal-category {
  max-width: 900px;
  margin: 0 auto var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.proposal-category:last-child {
  margin-bottom: 0;
}

.proposal-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proposal-category-icon {
  font-size: 1.6rem;
}

/* Proposal Price Table */
.proposal-table-wrapper {
  overflow-x: auto;
}

.proposal-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.proposal-price-table thead th {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  padding: 0.75rem 0.75rem;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  text-align: center;
}

.proposal-price-table thead th:first-child {
  text-align: left;
}

.proposal-price-table tbody td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--color-text);
  text-align: center;
  font-weight: 600;
  color: var(--color-gold);
  font-family: var(--font-display);
}

.proposal-price-table tbody td:first-child {
  text-align: left;
}

.proposal-price-table tbody tr:last-child td {
  border-bottom: none;
}

.proposal-price-table .highlight-row {
  background: rgba(197,165,90,0.04);
}

.service-col strong {
  display: block;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.service-col .hair-type {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-light);
  font-weight: 400;
}

.table-weight {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 2px;
}

/* Cat Pricing Grid */
.proposal-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.proposal-cat-item {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  border: 2px dashed var(--color-blush);
  transition: all var(--transition-fast);
}

.proposal-cat-item:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.proposal-cat-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.proposal-cat-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.proposal-cat-desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ---------- Proposal Form Section ---------- */
.proposal-form-section {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.proposal-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.proposal-form-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.proposal-form-header .section-subtitle {
  margin: 0 auto;
}

.form-section-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  margin: var(--space-md) 0 var(--space-sm);
  padding-bottom: 0.375rem;
  border-bottom: 2px solid rgba(197,165,90,0.15);
}

.form-section-label:first-of-type {
  margin-top: 0;
}

/* ---------- Hero Paw Decorations ---------- */
.proposal-hero-paws {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.paw {
  position: absolute;
  font-size: 2rem;
  opacity: 0.06;
  animation: pawFloat 8s ease-in-out infinite;
}

.paw-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 3rem; }
.paw-2 { top: 25%; right: 15%; animation-delay: 1.5s; font-size: 2rem; }
.paw-3 { bottom: 30%; left: 20%; animation-delay: 3s; font-size: 2.5rem; }
.paw-4 { bottom: 20%; right: 10%; animation-delay: 4.5s; font-size: 1.8rem; }
.paw-5 { top: 55%; left: 60%; animation-delay: 6s; font-size: 2.2rem; }

@keyframes pawFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

/* ---------- Quick Price Estimator ---------- */
.estimator {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

.estimator-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.estimator-header .section-subtitle {
  margin: 0 auto;
}

/* Estimator Controls */
.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.estimator-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.estimator-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-light);
}

.estimator-toggle {
  display: flex;
  gap: 1px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.estimator-toggle-btn {
  flex: 1;
  padding: 0.625rem 0.75rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: 6px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.estimator-toggle-btn:hover {
  color: var(--color-charcoal);
}

.estimator-toggle-btn.active {
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.size-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 1px;
}

/* Estimator Result */
.estimator-result {
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-cream), var(--color-white));
  border-radius: var(--radius-md);
  border: 2px dashed var(--color-blush);
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
}

.estimator-result.updated {
  border-color: var(--color-gold);
  transform: scale(1.02);
}

.estimator-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.estimator-result-price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.1;
}

.estimator-result-note {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.5rem;
}

.estimator-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- What's Included ---------- */
.whats-included {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

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

.included-header .section-subtitle {
  margin: 0 auto;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1100px;
  margin: 0 auto;
}

.included-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition-med);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

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

.included-card.featured {
  border-color: var(--color-gold);
  background: var(--color-charcoal);
  color: var(--color-white);
}

.included-card.featured h3 {
  color: var(--color-white);
}

.included-card.featured .included-list li {
  color: rgba(255,255,255,0.85);
}

.included-card.featured .check {
  color: var(--color-gold);
}

.included-card.featured .included-price-from {
  color: var(--color-gold);
}

.included-card.featured .included-plus {
  color: rgba(255,255,255,0.5);
}

.included-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-white);
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.included-card-tier {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.375rem;
}

.included-card.featured .included-card-tier {
  color: var(--color-gold-light);
}

.included-card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.included-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.included-plus {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--space-sm);
}

.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.included-list li {
  font-size: 0.85rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.included-card-footer {
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.included-card.featured .included-card-footer {
  border-top-color: rgba(255,255,255,0.1);
}

.included-price-from {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

/* ---------- Pricing Tabs ---------- */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.pricing-tab {
  padding: 0.75rem 2rem;
  border: 2px solid var(--color-blush);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.pricing-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-charcoal);
}

.pricing-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-gold);
}

.pricing-panel {
  display: none;
  animation: fadeSlideIn 0.4s var(--ease-out);
}

.pricing-panel.active {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing-table-responsive {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Form Step Indicator ---------- */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
}

.form-step.active {
  opacity: 1;
}

.form-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-step.active .form-step-num {
  box-shadow: var(--shadow-gold);
}

.form-step-line {
  width: 50px;
  height: 2px;
  background: rgba(0,0,0,0.08);
  margin: 0 0.5rem;
  margin-bottom: 1.25rem;
}

.form-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
}

.form-section-block {
  margin-bottom: var(--space-md);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .about-float-card {
    right: 20px;
    bottom: -10px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-med);
    z-index: 1001;
  }

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

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: var(--space-lg);
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

  .pricing-tables {
    grid-template-columns: 1fr;
  }

  .pricing-cat-cards {
    flex-direction: column;
  }

  .pricing-cat-card {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .chatbot-fab {
    bottom: 1.5rem;
    right: 4.5rem;
  }

  .scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }

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

  .estimator-toggle {
    flex-wrap: wrap;
  }

  .estimator-toggle-btn {
    flex: 1 1 auto;
    min-width: 90px;
    font-size: 0.8rem;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    flex-direction: row;
    padding-top: 0;
  }

  .connector-line {
    width: 40px;
    height: 2px;
  }

  .pricing-tabs {
    flex-direction: column;
    align-items: center;
  }

  .pricing-tab {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .form-steps {
    gap: 0.25rem;
  }

  .form-step-line {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
