/* Pink Cotton Theme Styles */

/* CSS Variables (Design System) */
:root {
  /* Colors */
  /* Skincare brand palette */
  /* Core colors (hex + HSL components where used by existing HSL calls) */
  --color-blush: #FADCE3;
  --color-blush-h: 346 75% 92%; /* blush pink */
  --color-soft-rose: #F3B8C8;
  --color-soft-rose-h: 344 68% 84%;
  --color-dusty-mauve: #C98AA3;
  --color-dusty-mauve-h: 332 28% 66%;
  --color-nude: #F6EFEA;
  --color-nude-h: 25 40% 95%;

  --color-sage: #A8C3B1;
  --color-sage-h: 140 16% 71%; /* primary CTA */
  --color-sage-hover-h: 140 16% 62%;

  --color-gold: #C9A46A;
  --color-gold-h: 38 39% 60%;

  --color-white: #FFFFFF;
  --color-light: #F5F5F5;
  --color-charcoal: #3A3A3A;

  /* Functional */
  --color-success: #7FB8A1;
  --color-error: #D97C8A;
  --color-disabled: #E3E3E3;

  /* Semantic color tokens (HSL components for places that use hsl(var(--...))) */
  --color-background: 0 0% 100%; /* white */
  --color-foreground: 0 0% 23%; /* charcoal */
  --color-muted: 25 40% 95%; /* nude */
  --color-muted-foreground: 0 0% 60%;
  --color-primary: 140 16% 71%; /* sage */
  --color-primary-hover: 140 16% 62%;
  --color-primary-light: 140 16% 90%;
  --color-accent: 346 75% 92%; /* blush */
  --color-rose-deep: 344 68% 84%; /* soft rose */
  --color-cream: 25 40% 95%;
  --color-border: 0 0% 89%;
  --color-card: 0 0% 100%;
  --color-gray: 0 0% 46%;
  --color-cream-h: 25 40% 95%;
  --color-primary-hex: #A8C3B1;
  --color-accent-hex: #FADCE3;
  --color-warm-overlay: 20 20% 98%;
  
  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Work Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /* Layout nudges */
  --container-max-width: 1200px;
  --container-side-padding: 1rem;
  --hero-align-nudge: -8px; /* adjust this to fine-tune hero left alignment */
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--color-foreground));
  background-color: hsl(var(--color-background));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: hsl(var(--color-foreground));
}

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

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

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: hsla(var(--color-background), 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--color-border));
  padding: 1rem 0;
}

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

.nav-brand .logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--color-primary));
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: hsl(var(--color-foreground));
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.current_page_item {
  background-color: hsl(var(--color-accent));
  color: hsl(var(--color-primary));
}

.nav-links .cta-link {
  background-color: hsl(var(--color-primary));
  color: white;
}

.nav-links .cta-link:hover {
  background-color: hsl(var(--color-rose-deep));
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: hsl(var(--color-primary-hover));
  box-shadow: var(--shadow-elevated);
}

.btn-outline {
  border-color: hsl(var(--color-primary));
  color: hsl(var(--color-primary));
  background-color: transparent;
}

.btn-outline:hover {
  background-color: hsl(var(--color-accent));
  color: hsl(var(--color-foreground));
}


* Disabled and focus states */
.btn[disabled], .btn:disabled, .btn.is-disabled {
  background-color: var(--color-disabled);
  color: hsl(var(--color-muted-foreground));
  border-color: var(--color-disabled);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.95;
}






.btn:focus, .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px hsla(var(--color-primary), 0.12);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */

.hero-section {
  
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  overflow: hidden;
}



/* Hero buttons: scoped to hero area and aligned with color palette */
.hero-buttons a {
  margin-right: 1rem;
}

/* Primary CTA in hero (sage) */
.hero-buttons .btn.hero-cta,
.hero-buttons .btn.hero-cta:visited {
  background-color: hsl(var(--color-primary));
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-medium);
}
.hero-buttons .btn.hero-cta:hover,
.hero-buttons .btn.hero-cta:focus {
  background-color: hsl(var(--color-primary-hover));
  color: var(--color-white);
  box-shadow: var(--shadow-elevated);
}

/* Secondary hero button: outline with blush accent */
.hero-buttons .btn.hero-secondary {
  background-color: transparent;
  border-color: hsl(var(--color-accent));
  color: hsl(var(--color-accent));
}
.hero-buttons .btn.hero-secondary:hover,
.hero-buttons .btn.hero-secondary:focus {
  background-color: hsl(var(--color-accent));
  color: hsl(var(--color-foreground));
  border-color: hsl(var(--color-accent));
}


.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;
  z-index: 5; /* keep overlay above bg but below content */
  pointer-events: none !important; /* allow clicks to pass through */
  /* Warm subtle overlay so hero image remains visible */
  background: linear-gradient(
    to right,
    hsl(var(--color-warm-overlay) / 60%),
    hsl(var(--color-warm-overlay) / 20%)
  );
  mix-blend-mode: normal;
  
}

/* Override any custom CSS that forces the hero below other elements */
.hero-section {
  z-index: 0 !important;
}

.hero-content {
  position: relative;
  z-index: 20 !important;
  pointer-events: auto !important;
  text-align:left;
}

.hero-buttons a {
  position: relative;
  z-index: 30 !important;
  pointer-events: auto !important;
}

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

.hero-text {
  max-width: 40rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsla(var(--color-accent), 0.8);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--color-primary));
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  display: block;
  font-size: 2.5rem;
  color: hsl(var(--color-primary));
  margin-top: 0.5rem;
}

.hero-motto {
  font-size: 1.5rem;
  font-style: italic;
  font-family: var(--font-heading);
  color: hsl(var(--color-muted-foreground));
  margin-bottom: 1rem;
}

/* Align hero content to the left (matches header logo) on larger screens */
.hero-text {
  max-width: 40rem;
  text-align: left;
  margin: 0;
}

@media (min-width: 900px) {
  /* Align the whole hero content container's left edge with the nav-brand */
  .hero-content { display: flex; justify-content: flex-start; }
  .hero-text { margin-left: 0; text-align: left; }
}

@media (max-width: 899px) {
  /* Keep hero centered on smaller screens for better readability */
  .hero-content { display: flex; justify-content: center;  }
  .hero-text { text-align: center; margin-left: 0; }
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: hsla(var(--color-foreground), 0.8);
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Booking Services / Service Single styles — Pink Cotton by Diana
   Purpose: modern, accessible layout for `booking-services` single posts
   Uses design tokens (CSS variables) and responsive layout.
   -------------------------------------------------------------------------- */

.service-single.booking-service-single,
.service-single {
  max-width: 920px;
  margin: 2.5rem auto;
  background: hsl(var(--color-card));
  border-radius: 14px;
  box-shadow: var(--shadow-medium);
  padding: 2rem;
  border: 1px solid hsl(var(--color-border));
}

.service-header {
  border-bottom: 1px solid hsl(var(--color-border));
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.entry-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--color-foreground));
}

.service-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.service-duration,
.service-price {
  background: linear-gradient(180deg, hsl(var(--color-primary-light) / 0.6), hsl(var(--color-accent) / 0.06));
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: hsl(var(--color-foreground));
  border: 1px solid hsl(var(--color-border));
}

.service-brief {
  margin-top: 0.9rem;
  color: hsla(var(--color-foreground), 0.9);
  font-size: 1rem;
}

.entry-content {
  padding-top: 1rem;
  color: hsla(var(--color-foreground), 0.95);
}

.service-full-description {
  margin-bottom: 1.25rem;
}

.benefits-list,
.who-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  padding-left: 0;
  margin-bottom: 1rem;
}

.benefits-list li,
.who-list li {
  background: linear-gradient(180deg, hsl(var(--color-rose-deep) / 0.03), transparent);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  color: hsl(var(--color-foreground));
}

.why-clients-love-it {
  margin-bottom: 1.25rem;
  font-style: normal;
  color: hsla(var(--color-foreground), 0.95);
}

.service-cta { margin-top: 1.5rem; }
.service-cta .btn { padding: 0.8rem 1.4rem; border-radius: 10px; }

/* Small screens: single column lists, larger fonts slightly reduced spacing */
@media (max-width: 720px) {
  .service-single.booking-service-single,
  .service-single { padding: 1.25rem; margin: 1.25rem; }
  .benefits-list,
  .who-list { grid-template-columns: 1fr; }
  .entry-title { font-size: 1.5rem; }
}

/* Accessibility: ensure high-contrast focus styles on CTAs */
.service-cta .btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px hsla(var(--color-accent-h, 346 75% 92%), 0.18);
}

/* Small polish: ensure lists and paragraphs have consistent spacing */
.benefits-list li + li,
.who-list li + li,
.service-full-description p + p {
  margin-top: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Ensure hero CTA outline buttons override external pink hover (#ff66b3) */
.hero-buttons .btn.btn-outline:hover {
  background-color: hsl(var(--color-accent)) !important;
  border-color: hsl(var(--color-accent)) !important;
  color: hsl(var(--color-foreground)) !important;
}

/* Services Section */
/* Services 3+2 layout */
.services-grid { display:block; }

.services-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.services-row--3 { grid-template-columns: repeat(3, 1fr); }
.services-row--2 {
  /* Constrain columns so two items don't stretch full width; center the row */
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  justify-content: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .services-row--3,
  .services-row--2 { grid-template-columns: 1fr; }
}

/* Optional card styling tweak */
.service-card { padding: 1.25rem; background: var(--color-background); border-radius: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }


.services-section {
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    hsl(var(--color-background)),
    hsla(var(--color-cream), 0.3)
  );
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--color-muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

.services-grid {
  display: block; /* container for row-based layout: first row 3 cols, second row 2 cols */
  margin-bottom: 3rem;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid hsl(var(--color-border));
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(var(--color-primary), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--color-primary));
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.service-description {
  color: hsl(var(--color-muted-foreground));
  line-height: 1.6;
}

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

/* Service Detail Cards */
.services-detail-section {
  padding: 5rem 0;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 2rem;
  border: 1px solid hsl(var(--color-border));
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  padding: 2rem;
}

.service-detail-header {
  margin-bottom: 1.5rem;
}

.service-detail-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.service-detail-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: hsl(var(--color-muted-foreground));
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--color-primary));
}

.service-detail-body {
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    to right,
    hsla(var(--color-primary), 0.1),
    hsla(var(--color-accent), 0.2),
    hsla(var(--color-primary), 0.1)
  );
}

.cta-content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: hsl(var(--color-muted-foreground));
  margin-bottom: 2rem;
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  text-align: center;
  background: linear-gradient(
    to bottom,
    hsla(var(--color-cream), 0.3),
    hsl(var(--color-background))
  );
}

.page-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.25rem;
  color: hsl(var(--color-muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
}

.about-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.credentials {
  margin: 2rem 0;
  padding: 2rem;
  background-color: hsla(var(--color-cream), 0.5);
  border-radius: 1rem;
}

.credentials-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.credentials-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(var(--color-primary), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--color-primary));
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.social-section {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsla(var(--color-primary), 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--color-primary));
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: hsl(var(--color-primary));
  color: white;
  transform: translateY(-2px);
}

/* Booking Section */
.booking-section {
  padding: 5rem 0;
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

/* WP Booking Calendar Plugin Styles */
.wpbc_calendar_container,
.bk_calendar_frame,
.wpbc-calendar-container {
  font-family: var(--font-body) !important;
}

.wpbc_calendar,
.bk_calendar_frame table,
.hasDatepick {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 4px !important;
  background: hsl(var(--color-card)) !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
  box-shadow: var(--shadow-elegant) !important;
}

/* Calendar Header */
.wpbc_calendar thead,
.bk_calendar_frame thead,
.datepick-nav {
  background: transparent !important;
}

.wpbc_calendar th,
.bk_calendar_frame th,
.datepick-month-header {
  color: hsl(var(--color-foreground)) !important;
  font-weight: 600 !important;
  padding: 0.75rem !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* Month/Year Header */
.wpbc_calendar_month_name,
.bk_calendar_month_name,
.datepick-month {
  color: hsl(var(--color-foreground)) !important;
  font-family: var(--font-heading) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 1rem 0 !important;
}

/* Navigation Arrows */
.wpbc_calendar_prev,
.wpbc_calendar_next,
.datepick-cmd-prev,
.datepick-cmd-next {
  color: hsl(var(--color-primary)) !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
}

.wpbc_calendar_prev:hover,
.wpbc_calendar_next:hover,
.datepick-cmd-prev:hover,
.datepick-cmd-next:hover {
  color: hsl(var(--color-primary-light)) !important;
}

/* Calendar Days */
.wpbc_calendar td,
.bk_calendar_frame td,
.datepick-days-cell {
  padding: 0 !important;
}

.wpbc_calendar td a,
.wpbc_calendar td span,
.bk_calendar_frame td a,
.bk_calendar_frame td span,
.datepick-days-cell a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 50% !important;
  font-size: 0.875rem !important;
  transition: var(--transition-smooth) !important;
  text-decoration: none !important;
  color: hsl(var(--color-foreground)) !important;
  background: transparent !important;
}

/* Available Days */
.wpbc_calendar td.cal4date-available a,
.wpbc_calendar td.date_available a,
.datepick-days-cell a:not(.datepick-disabled) {
  background: hsl(var(--color-muted)) !important;
  color: hsl(var(--color-foreground)) !important;
  cursor: pointer !important;
}

.wpbc_calendar td.cal4date-available a:hover,
.wpbc_calendar td.date_available a:hover,
.datepick-days-cell a:hover {
  background: hsl(var(--color-primary)) !important;
  color: white !important;
  transform: scale(1.1) !important;
}

/* Selected Day */
.wpbc_calendar td.date_selected a,
.wpbc_calendar td.cal4date-selected a,
.datepick-selected a {
  background: hsl(var(--color-primary)) !important;
  color: white !important;
  font-weight: 700 !important;
}

/* Unavailable Days */
.wpbc_calendar td.date_unavailable span,
.wpbc_calendar td.cal4date-unavailable span,
.datepick-disabled {
  color: hsl(var(--color-muted-foreground)) !important;
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

/* Today */
.wpbc_calendar td.cal4date-today a,
.wpbc_calendar td.date_today a,
.datepick-today a {
  border: 2px solid hsl(var(--color-primary)) !important;
}

/* Booking Form Fields */
.wpbc_structure_form,
.wpbc-booking-form,
.booking_form {
  background: hsl(var(--color-card)) !important;
  padding: 2rem !important;
  border-radius: 1rem !important;
  box-shadow: var(--shadow-elegant) !important;
  margin-top: 2rem !important;
}

.wpbc_structure_form label,
.wpbc-booking-form label,
.booking_form label {
  display: block !important;
  font-weight: 600 !important;
  color: hsl(var(--color-foreground)) !important;
  margin-bottom: 0.5rem !important;
  font-family: var(--font-body) !important;
}

.wpbc_structure_form input[type="text"],
.wpbc_structure_form input[type="email"],
.wpbc_structure_form input[type="tel"],
.wpbc_structure_form textarea,
.wpbc_structure_form select,
.wpbc-booking-form input,
.wpbc-booking-form textarea,
.wpbc-booking-form select,
.booking_form input,
.booking_form textarea,
.booking_form select {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  border: 2px solid hsl(var(--color-border)) !important;
  border-radius: 0.5rem !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  transition: var(--transition-smooth) !important;
  background: hsl(var(--color-background)) !important;
  color: hsl(var(--color-foreground)) !important;
  margin-bottom: 1rem !important;
}

.wpbc_structure_form input:focus,
.wpbc_structure_form textarea:focus,
.wpbc_structure_form select:focus,
.wpbc-booking-form input:focus,
.wpbc-booking-form textarea:focus,
.booking_form input:focus,
.booking_form textarea:focus {
  outline: none !important;
  border-color: hsl(var(--color-primary)) !important;
  box-shadow: 0 0 0 3px hsla(var(--color-primary), 0.1) !important;
}

/* Submit Button */
.wpbc_structure_form input[type="submit"],
.wpbc_structure_form button[type="submit"],
.wpbc-booking-form input[type="submit"],
.wpbc-booking-form button[type="submit"],
.booking_form input[type="submit"],
.booking_form button[type="submit"],
.wpbc-submit-btn {
  background: hsl(var(--color-primary)) !important;
  color: white !important;
  padding: 1rem 2rem !important;
  border: none !important;
  border-radius: 9999px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
  width: auto !important;
  display: inline-block !important;
}

.wpbc_structure_form input[type="submit"]:hover,
.wpbc_structure_form button[type="submit"]:hover,
.wpbc-booking-form input[type="submit"]:hover,
.wpbc-booking-form button[type="submit"]:hover,
.booking_form input[type="submit"]:hover,
.booking_form button[type="submit"]:hover,
.wpbc-submit-btn:hover {
  background: hsl(var(--color-primary-light)) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-elegant) !important;
}

/* Time Slots */
.wpbc_time_selector,
.wpbc-time-slots,
.time-slots-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  margin: 1rem 0 !important;
}

.wpbc_time_selector label,
.wpbc-time-slot,
.time-slot {
  padding: 0.5rem 1rem !important;
  border: 2px solid hsl(var(--color-border)) !important;
  border-radius: 0.5rem !important;
  cursor: pointer !important;
  transition: var(--transition-smooth) !important;
  background: hsl(var(--color-background)) !important;
}

.wpbc_time_selector label:hover,
.wpbc-time-slot:hover,
.time-slot:hover {
  border-color: hsl(var(--color-primary)) !important;
  background: hsl(var(--color-muted)) !important;
}

.wpbc_time_selector input:checked + label,
.wpbc-time-slot.selected,
.time-slot.selected {
  background: hsl(var(--color-primary)) !important;
  border-color: hsl(var(--color-primary)) !important;
  color: white !important;
}

/* Legend */
.wpbc_calendar_legend,
.bk_calendar_legend {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.5rem !important;
  margin-top: 1.5rem !important;
  padding: 1rem !important;
  background: hsl(var(--color-muted)) !important;
  border-radius: 0.5rem !important;
}

.wpbc_calendar_legend_item,
.bk_legend_item {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  font-size: 0.875rem !important;
  color: hsl(var(--color-muted-foreground)) !important;
}

/* Messages */
.wpbc_message,
.booking-message {
  padding: 1rem 1.5rem !important;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem !important;
}

.wpbc_message_success {
  background: hsl(142 76% 95%) !important;
  color: hsl(142 76% 30%) !important;
  border: 1px solid hsl(142 76% 80%) !important;
}

.wpbc_message_error {
  background: hsl(0 84% 95%) !important;
  color: hsl(0 84% 30%) !important;
  border: 1px solid hsl(0 84% 80%) !important;
}

.booking-steps {
  list-style: none;
  counter-reset: step-counter;
}

.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  counter-increment: step-counter;
  position: relative;
  padding-left: 3rem;
}

.booking-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 2rem;
  height: 2rem;
  background-color: hsl(var(--color-primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Forms */
.contact-form,
.simple-booking-form form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: hsl(var(--color-foreground));
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid hsl(var(--color-border));
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

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

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

/* Footer */
.footer {
  background-color: hsla(var(--color-charcoal), 0.97);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.75rem;
  color: hsl(var(--color-primary));
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-style: italic;
  color: hsla(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-text {
  color: hsla(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: hsla(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(255, 255, 255, 0.1);
  text-align: center;
  color: hsla(255, 255, 255, 0.6);
}

/* Icons */
.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

/* Utilities */
.notice {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.notice-warning {
  /* styled to match brand palette */
  background-color: hsl(var(--color-accent));
  border: 1px solid hsl(var(--color-soft-rose-h));
  color: hsl(var(--color-foreground));
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid hsl(var(--color-border));
    box-shadow: var(--shadow-medium);
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-links {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.75rem;
  }
  
  .hero-motto {
    font-size: 1.25rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .service-detail-card,
  .about-content,
  .contact-grid,
  .booking-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}