/* ==========================================================================
   MINDFUL PAWS - BOUTIQUE PET GROOMING SALON (CHENNAI, INDIA)
   Design System & Style Sheet
   ========================================================================== */

:root {
  /* Color Palette - Serene Botanical & Luxury Spa */
  --bg-primary: #FAF8F5;
  --bg-secondary: #F2ECE1;
  --bg-card: #FFFFFF;
  --bg-dark: #122119;
  --bg-dark-surface: #1B3125;
  
  --brand-forest: #224229;
  --brand-sage: #537D64;
  --brand-sage-light: #EBF2EC;
  --brand-sage-subtle: #D8E6DC;
  
  --brand-gold: #C28B47;
  --brand-gold-hover: #A67332;
  --brand-gold-light: #FCF4EB;
  --brand-gold-glow: rgba(194, 139, 71, 0.25);

  --text-dark: #1F2A24;
  --text-muted: #5C6E64;
  --text-light: #F8FAF9;
  --text-light-muted: #A8BDB1;

  --border-light: #E6DFD5;
  --border-focus: #537D64;
  --border-accent: rgba(194, 139, 71, 0.35);

  --shadow-sm: 0 4px 12px rgba(34, 66, 41, 0.04);
  --shadow-md: 0 10px 30px rgba(34, 66, 41, 0.08);
  --shadow-lg: 0 20px 45px rgba(34, 66, 41, 0.12);
  --shadow-gold: 0 10px 25px rgba(194, 139, 71, 0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Typography Helpers */
.text-center { text-align: center; }

.section-tag-center {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background-color: var(--brand-gold-light);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-forest);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-bounce);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-forest), #2e5937);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(34, 66, 41, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1b3520, #254b2e);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(34, 66, 41, 0.35);
  color: #FFFFFF;
}

.btn-gold {
  background: linear-gradient(135deg, var(--brand-gold), #d99f57);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--brand-gold-hover), #c28b47);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(194, 139, 71, 0.35);
  color: #FFFFFF;
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-forest);
  border: 1.5px solid var(--brand-forest);
}

.btn-outline:hover {
  background-color: var(--brand-forest);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-outline-light {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
  background-color: #FFFFFF;
  color: var(--brand-forest);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background-color: var(--brand-forest);
  color: #E2ECE5;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  color: #F8D799;
  font-weight: 600;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.main-header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  text-decoration: none;
}

.brand-top-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-forest), #33613e);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(34, 66, 41, 0.2);
  flex-shrink: 0;
}

.logo-paw {
  font-size: 1.2rem;
  color: #FFFFFF;
}

.logo-leaf {
  position: absolute;
  bottom: 2px;
  right: 2px;
  font-size: 0.65rem;
  color: #F8D799;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-forest);
  line-height: 1;
  letter-spacing: -0.01em;
}

.brand-tagline-sub,
.brand-city {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 600;
  line-height: 1.2;
}

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

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
}

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

.nav-link:hover {
  color: var(--brand-forest);
}

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

.nav-btn {
  padding: 0.65rem 1.4rem;
  font-size: 0.9rem;
}

.mobile-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--brand-forest);
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 
    linear-gradient(rgba(18, 33, 25, 0.75), rgba(18, 33, 25, 0.65)),
    url('https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=1920&q=85') center/cover no-repeat;
  color: #FFFFFF;
  padding: 6rem 0 7rem;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 40%, rgba(10, 20, 15, 0.6) 100%);
  pointer-events: none;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #F8FAF9;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  animation: fadeInDown 0.8s ease-out;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #6EE7B7;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 231, 183, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(110, 231, 183, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(110, 231, 183, 0); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.salon-name {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.05;
}

.tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 400;
  color: #F8D799;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.18rem;
  color: #E2ECE5;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-align: left;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 1.6rem;
  color: #F8D799;
}

.stat-info strong {
  display: block;
  font-size: 0.98rem;
  color: #FFFFFF;
}

.stat-info span {
  font-size: 0.8rem;
  color: #CBE0D4;
}

.scroll-down-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 10;
  animation: bounceSlow 2s infinite;
}

.scroll-down-btn:hover {
  color: #F8D799;
}

@keyframes bounceSlow {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -8px); }
  60% { transform: translate(-50%, -4px); }
}

/* ==========================================================================
   PHILOSOPHY / FEATURES
   ========================================================================== */
.philosophy-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.feature-item {
  background-color: var(--bg-card);
  padding: 2.2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sage);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--brand-sage-light);
  color: var(--brand-forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.3rem;
  transition: var(--transition);
}

.feature-item:hover .feature-icon-box {
  background-color: var(--brand-forest);
  color: #FFFFFF;
}

.feature-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brand-forest);
  margin-bottom: 0.6rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   INTERACTIVE BOOKING QUIZ / PRICE ESTIMATOR
   ========================================================================== */
.quiz-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}

.quiz-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.quiz-intro {
  position: sticky;
  top: 100px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-forest);
  background-color: var(--brand-sage-subtle);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.quiz-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--brand-forest);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.quiz-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quiz-side-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.perk-item i {
  color: var(--brand-forest);
  margin-top: 0.25rem;
}

.quiz-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.quiz-step {
  margin-bottom: 2.2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed var(--border-light);
}

.quiz-step:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.step-header {
  margin-bottom: 1.2rem;
}

.step-num {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}

.step-question {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brand-forest);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quiz-option {
  background-color: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quiz-option:hover {
  border-color: var(--brand-sage);
  background-color: #FFFFFF;
  transform: translateY(-2px);
}

.quiz-option.active {
  border-color: var(--brand-forest);
  background-color: var(--brand-sage-light);
  box-shadow: 0 4px 14px rgba(34, 66, 41, 0.12);
}

.option-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--brand-forest);
}

.option-label {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.option-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}

/* Service Radio Card in Quiz */
.service-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.service-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background-color: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
}

.service-radio-card:hover {
  border-color: var(--brand-sage);
  background-color: #FFFFFF;
}

.service-radio-card.active {
  border-color: var(--brand-forest);
  background-color: var(--brand-sage-light);
}

.service-radio-card input[type="radio"] {
  accent-color: var(--brand-forest);
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
}

.service-radio-content {
  flex: 1;
}

.service-radio-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.2rem;
}

.service-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.service-price-tag {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-gold);
}

.service-radio-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Dynamic Result Box */
.quiz-result-box {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-surface));
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(18, 33, 25, 0.25);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.result-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F8D799;
}

.result-summary {
  font-size: 0.88rem;
  color: var(--text-light-muted);
}

.result-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.price-display .currency {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F8D799;
}

.price-display .amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.price-display .gst-label {
  display: block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--text-light-muted);
  margin-top: 0.2rem;
}

.duration-display {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #CBE0D4;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.result-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.inclusion-pill {
  font-size: 0.78rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: #E2ECE5;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.inclusion-pill i {
  color: #6EE7B7;
  font-size: 0.7rem;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-sage);
}

.service-card.featured {
  border: 2px solid var(--brand-gold);
  box-shadow: 0 12px 35px rgba(194, 139, 71, 0.15);
}

.featured-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background: linear-gradient(135deg, var(--brand-gold), #e0a359);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 2.8rem;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.service-header {
  padding: 2rem 2rem 1.2rem;
  border-bottom: 1px solid var(--border-light);
  background-color: #FCFAF7;
}

.package-positioning {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold);
  margin-bottom: 0.4rem;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brand-forest);
  line-height: 1;
}

.service-price span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.service-body {
  padding: 1.8rem 2rem;
  flex: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--brand-forest);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-bullets li {
  font-size: 0.88rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.service-bullets li i {
  color: var(--brand-forest);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.service-footer {
  padding: 1.2rem 2rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  background-color: #FAFAF8;
}

.service-time {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 0.55rem 1.35rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover {
  color: var(--brand-forest);
  border-color: var(--brand-forest);
}

.gallery-filter-btn.active {
  background-color: var(--brand-forest);
  color: #FFFFFF;
  border-color: var(--brand-forest);
  box-shadow: 0 4px 12px rgba(34, 66, 41, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  transition: var(--transition);
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(18, 33, 25, 0.92) 0%, rgba(18, 33, 25, 0.6) 60%, transparent 100%);
  color: #FFFFFF;
  transform: translateY(15px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #F8D799;
  margin-bottom: 0.25rem;
}

.gallery-pet-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.gallery-location {
  font-size: 0.8rem;
  color: var(--text-light-muted);
}

.gallery-zoom-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-zoom-btn:hover {
  background: #FFFFFF;
  color: var(--brand-forest);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--bg-primary);
}

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

.testimonial-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sage);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
}

.author-avatar-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-forest), var(--brand-sage));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(34, 66, 41, 0.2);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand-forest);
}

.author-pet {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.author-location {
  font-size: 0.78rem;
  color: var(--brand-gold);
  margin-top: 0.15rem;
}

/* ==========================================================================
   BOOKING FORM SECTION
   ========================================================================== */
.booking-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.booking-container-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  overflow: hidden;
}

.booking-info-col {
  background: linear-gradient(145deg, var(--bg-dark), #1c3626);
  color: #FFFFFF;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-info-col .badge-pill {
  background-color: rgba(255, 255, 255, 0.12);
  color: #F8D799;
  align-self: flex-start;
}

.booking-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.booking-lead {
  font-size: 1rem;
  color: #D2E3D8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.salon-details-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-row i {
  color: #F8D799;
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.detail-row strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.detail-row p {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  line-height: 1.4;
}

.live-selection-summary {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.summary-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F8D799;
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.summary-details .label {
  color: var(--text-light-muted);
}

.summary-price {
  font-family: var(--font-serif);
  color: #F8D799;
  font-size: 1.15rem;
}

/* Booking Form Column */
.booking-form-col {
  padding: 3.5rem;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brand-forest);
  margin-bottom: 1.75rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.required {
  color: #DC2626;
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem 0.85rem 2.8rem;
  background-color: #FAFAF8;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-size: 0.94rem;
  transition: var(--transition);
}

.form-group textarea {
  padding: 0.85rem 1.1rem;
  resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.form-group textarea:focus {
  background-color: #FFFFFF;
  border-color: var(--brand-forest);
  box-shadow: 0 0 0 3px rgba(83, 125, 100, 0.18);
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #DC2626;
  background-color: #FEF2F2;
}

.error-msg {
  font-size: 0.78rem;
  color: #DC2626;
  display: none;
}

.form-group.has-error .error-msg {
  display: block;
}

.btn-submit {
  margin-top: 0.75rem;
  padding: 1.05rem;
  font-size: 1.05rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-disclaimer i {
  color: var(--brand-forest);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: #E2ECE5;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.brand-col .footer-logo i {
  color: #F8D799;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: #F8D799;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--brand-gold);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li, .footer-links a {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #F8D799;
  padding-left: 4px;
}

.footer-links li i {
  color: #F8D799;
  margin-right: 0.4rem;
}

.hours-text {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.closed-tag {
  color: #FCA5A5;
  font-size: 0.82rem;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(110, 231, 183, 0.12);
  color: #6EE7B7;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: var(--text-light-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-sublinks {
  display: flex;
  gap: 1.5rem;
}

.footer-sublinks a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   MODALS (GALLERY LIGHTBOX & BOOKING CONFIRMATION)
   ========================================================================== */
.lightbox-modal, .booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.lightbox-modal.active, .booking-modal.active {
  display: flex;
}

.lightbox-overlay, .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 20, 15, 0.85);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 10;
  max-width: 850px;
  width: 100%;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease-out;
}

.lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.lightbox-caption {
  padding: 1.25rem 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brand-forest);
  background-color: var(--bg-card);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 12;
}

.lightbox-close:hover {
  background: #000000;
  transform: scale(1.1);
}

/* Booking Receipt Modal */
.modal-card {
  position: relative;
  z-index: 10;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.modal-icon-success {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.modal-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #059669;
  background-color: #D1FAE5;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--brand-forest);
  margin-bottom: 0.6rem;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-receipt {
  background-color: var(--bg-primary);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.receipt-row strong {
  color: var(--text-dark);
  font-weight: 600;
}

.receipt-row.total-row {
  border-top: 1px solid var(--border-light);
  padding-top: 0.65rem;
  margin-top: 0.25rem;
}

.receipt-amount {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brand-forest);
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title .salon-name { font-size: 3.4rem; }
  .hero-title .tagline { font-size: 1.8rem; }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quiz-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .quiz-intro { position: static; }

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

  .booking-container-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .announcement-right { display: none; }
  
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-section {
    padding: 4rem 0 5rem;
    min-height: auto;
  }

  .hero-title .salon-name { font-size: 2.7rem; }
  .hero-title .tagline { font-size: 1.45rem; }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .booking-info-col, .booking-form-col {
    padding: 2rem 1.5rem;
  }

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

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

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