/* =============================================
   Sander Grooming — Main Stylesheet
   ============================================= */

:root {
  --primary: #2A7D6B;
  --primary-light: #3D9E89;
  --primary-dark: #1E5C4F;
  --secondary: #E07B54;
  --secondary-light: #F5956F;
  --cream: #F9F6F1;        /* exact logo background color */
  --cream-dark: #EFE9E1;
  --bg: #F9F6F1;
  --bg-section: #EFE9E1;
  --dark: #1A2332;
  --text: #3A4550;
  --muted: #7A8B96;
  --border: #DDD5CB;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(42, 125, 107, 0.10);
  --shadow-lg: 0 8px 40px rgba(42, 125, 107, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::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(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42, 125, 107, 0.12);
}
textarea { resize: vertical; min-height: 100px; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(42, 125, 107, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(42, 125, 107, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

/* ---- Header / Navbar ---- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(249, 246, 241, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }
#header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--primary);
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary); background: var(--bg-section); }
.nav-links a.book-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.nav-links a.book-btn:hover { background: var(--primary-dark); }

.lang-switcher {
  display: flex;
  gap: 0.2rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 3px;
  background: var(--bg);
  flex-shrink: 0;
}
.lang-btn {
  padding: 0.3rem 0.65rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.lang-btn.active {
  background: var(--primary);
  color: var(--white);
}
.lang-btn:hover:not(.active) {
  color: var(--primary);
  background: var(--bg-section);
}
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  padding: 0.3rem;
  margin-left: auto;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.45) 100%),
    url('../images/grooming-cocker-spaniel.jpg') center 30% / cover no-repeat;
  padding-top: 90px;
}
.hero-bg-pattern { display: none; }
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.hero .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-weight: 600;
  transition: all var(--transition);
}
.hero-whatsapp:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Services ---- */
#services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Pricing ---- */
#pricing { background: var(--bg-section); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(42, 125, 107, 0.15);
}
.pricing-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 1.75rem 2rem;
  text-align: center;
}
.pricing-card.small .pricing-header { background: linear-gradient(135deg, #4A90A4, #5DAEBF); }
.pricing-card.large .pricing-header { background: linear-gradient(135deg, #7B6DAB, #9B8DCB); }
.pricing-header h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.3rem; }
.pricing-header p { color: rgba(255,255,255,0.8); font-size: 0.85rem; }
.pricing-size-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.pricing-rows { padding: 0.5rem 0; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text);
}
.pricing-row-label span { font-size: 1.1rem; }
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.pricing-currency { font-size: 0.9rem; font-weight: 500; color: var(--muted); }
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2rem;
  font-style: italic;
}

/* ---- About ---- */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.about-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.about-icon {
  width: 72px;
  height: 72px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  color: var(--primary);
  border: 2px solid var(--border);
}
.about-card h3 { margin-bottom: 0.5rem; }
.about-card p { color: var(--muted); font-size: 0.95rem; }

/* ---- Booking ---- */
#booking { background: var(--bg-section); }
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.booking-info h2 { margin-bottom: 1rem; }
.booking-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.booking-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.booking-info-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(42, 125, 107, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-info-item div strong { display: block; color: var(--dark); margin-bottom: 0.2rem; }
.booking-info-item div span { color: var(--muted); font-size: 0.9rem; }

.booking-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group label .required { color: #e53e3e; margin-left: 2px; font-weight: 700; }
.form-submit { margin-top: 1.5rem; }
.form-submit button {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}
.booking-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.booking-success.show { display: block; }
.booking-form-card.success-state .booking-form-inner { display: none; }
.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.booking-success h3 { color: var(--primary); margin-bottom: 0.75rem; }
.booking-success p { color: var(--muted); }
.btn-cancel-self {
  background: #fff0ed;
  color: #c0392b;
  border: 1.5px solid #ffd4c8;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-cancel-self:hover { opacity: 0.8; }
.booking-error {
  background: #fff0ed;
  border: 1px solid #ffd4c8;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #c0392b;
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
}
.booking-error.show { display: block; }

/* ---- Contact ---- */
#contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  font-size: 1.4rem;
  width: 48px;
  height: 48px;
  background: var(--bg-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-item-text strong { display: block; color: var(--dark); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.contact-item-text span, .contact-item-text a { color: var(--text); font-size: 1rem; }
.contact-item-text a:hover { color: var(--primary); }
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  transition: opacity var(--transition);
}
.whatsapp-link:hover { opacity: 0.88; }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 360px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- Footer ---- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 0;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.footer-logo svg { color: var(--primary-light); }
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
footer p { font-size: 0.9rem; margin-bottom: 0.25rem; }
footer .copyright { font-size: 0.8rem; opacity: 0.5; margin-top: 1rem; }

/* ---- Mobile Nav ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.75rem;
  color: var(--dark);
}
.mobile-lang {
  display: flex;
  gap: 0.5rem;
}
.mobile-lang .lang-btn {
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .booking-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-info { display: none; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .booking-form-card { padding: 1.5rem; }
  .hero-content { padding: 40px 0; }
}

/* ---- Submit spinner ---- */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner { animation: spin 0.8s linear infinite; }
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---- Gallery ---- */
#gallery { background: var(--dark); padding: 80px 0; }
#gallery .section-header h2 { color: var(--white); }
#gallery .section-header p  { color: rgba(255,255,255,0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: #111;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease, filter 0.45s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
  cursor: default;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .gallery-caption { opacity: 1; transform: translateY(0); }
}

/* ---- Time Slot Flat Picker ---- */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.time-slot-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  position: relative;
}
.time-slot-btn:hover:not(.unavailable):not(.selected) {
  border-color: var(--primary-light);
  background: var(--bg-section);
}
.time-slot-btn.selected {
  border-color: var(--primary);
  background: rgba(42, 125, 107, 0.08);
  box-shadow: 0 0 0 2px rgba(42, 125, 107, 0.2);
}
.time-slot-btn.unavailable {
  opacity: 0.42;
  cursor: not-allowed;
  background: #f7f7f5;
}
.time-slot-btn.loading {
  pointer-events: none;
  opacity: 0.6;
}
.slot-icon { font-size: 1.5rem; line-height: 1; }
.slot-time {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}
.time-slot-btn.selected .slot-time { color: var(--primary); }
.slot-badge {
  font-size: 0.7rem;
  font-weight: 600;
  min-height: 1.1em;
  text-align: center;
}
.time-slot-btn.selected .slot-badge::after { content: "✓"; color: var(--primary); }
.time-slot-btn.unavailable .slot-badge::after { content: "Complet"; color: #c0392b; font-size: 0.65rem; }
@media (max-width: 600px) {
  .time-slots-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Utilities ---- */
.text-primary { color: var(--primary); }
.mt-1 { margin-top: 0.5rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ── Flatpickr date picker overrides ──────────────────────────────────────── */
.flatpickr-calendar { border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.flatpickr-day.selected,
.flatpickr-day.selected:hover { background: var(--primary); border-color: var(--primary); }
.flatpickr-day:hover { background: var(--primary-light, #e8f4f0); }
.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: #ccc;
  background: #f8f8f8;
  text-decoration: line-through;
  cursor: not-allowed;
}
.flatpickr-months .flatpickr-month { background: var(--primary); color: #fff; border-radius: 12px 12px 0 0; }
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { color: #fff; }
.flatpickr-weekday { color: var(--primary); font-weight: 600; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #fff; }

/* ── Service badges ───────────────────────────────────────────────────────────── */
.service-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  background: rgba(42,125,107,0.1); color: var(--primary);
  border-radius: 50px; padding: 0.2rem 0.75rem; margin-top: 0.5rem;
}
.service-badge--warn { background: rgba(224,123,84,0.12); color: var(--secondary); }

/* ── Services add-ons strip ───────────────────────────────────────────────────── */
.services-addons { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--bg-section); border-radius: var(--radius); }
.services-addons h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--dark); }
.addons-grid { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; font-size: 0.88rem; color: var(--text); }
.services-note { margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted); }

/* ── Per-service pricing tables ───────────────────────────────────────────────── */
.pricing-service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.pricing-service-card { background: var(--white); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.pricing-service-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.pricing-service-header h3 { font-size: 0.95rem; color: var(--dark); }
.pricing-restriction { font-size: 0.72rem; color: var(--secondary); font-weight: 600; width: 100%; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.pricing-table th { text-align: center; color: var(--muted); font-weight: 600; padding: 0.25rem 0.4rem; font-size: 0.78rem; }
.pricing-table td { padding: 0.3rem 0.4rem; color: var(--text); text-align: center; }
.pricing-table td:first-child { text-align: left; color: var(--muted); }
.pricing-table tr:nth-child(even) { background: var(--bg); }
.pricing-addons-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; font-size: 0.83rem; color: var(--text); margin-bottom: 1rem; }
