@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&family=Poppins:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap");

:root {
  --cream: #f7f1ea;
  --linen: #faf8f5;
  --sage: #b8cdb4;
  --sage-light: #d4e4d1;
  --sage-dark: #7a9e74;
  --dusty-rose: #e6c9c2;
  --dusty-rose-light: #f5e6e2;
  --cocoa: #3f3a36;
  --coffee: #6b5f57;
  --coffee-light: #8a7d74;
  --white: #ffffff;
  --accent: #a8927c;
  --accent-dark: #8b7763;
  
  --shadow-sm: 0 2px 8px rgba(63, 58, 54, 0.04);
  --shadow: 0 8px 32px rgba(63, 58, 54, 0.08);
  --shadow-lg: 0 16px 48px rgba(63, 58, 54, 0.12);
  --shadow-glow: 0 0 40px rgba(200, 215, 197, 0.3);
  
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition-fast: 0.15s ease;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Lato", "Quicksand", Arial, sans-serif;
  margin: 0;
  color: var(--cocoa);
  background: linear-gradient(135deg, var(--linen) 0%, #f5f0eb 50%, var(--cream) 100%);
  background-attachment: fixed;
  line-height: 1.75;
  min-height: 100vh;
}

/* Subtle background pattern */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(200, 215, 197, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(230, 201, 194, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1040px, 90%);
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 95, 87, 0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-icon img {
  width: 100%;
  height: auto;
  transform: scale(2.6);
  transform-origin: center 30%;
}

.brand a {
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 20px;
  color: var(--cocoa);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.3px;
  transition: color var(--transition-fast);
}

.brand a:hover {
  color: var(--accent-dark);
}

.brand-subtitle {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--coffee-light);
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.nav a {
  color: var(--coffee);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Quicksand", "Lato", sans-serif;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 215, 197, 0.4) 0%, rgba(200, 215, 197, 0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 999px;
}

.nav a:hover::before {
  opacity: 1;
}

.nav a:hover {
  color: var(--cocoa);
  transform: translateY(-2px);
}

.nav a.nav-cta {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--cocoa);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav a.nav-cta:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.nav a.nav-cta::before {
  display: none;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 48px 0 80px;
  animation: fadeInUp 0.5s ease-out;
}

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

section,
article {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

section::before,
article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--dusty-rose) 50%, var(--sage-light) 100%);
  opacity: 0.7;
}

.content h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--cocoa);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.content p {
  color: var(--coffee);
  font-size: 16px;
  margin-bottom: 20px;
}

.content p:first-of-type {
  font-size: 18px;
  color: var(--coffee-light);
  line-height: 1.8;
}

/* ===== MARKDOWN CONTENT ===== */
.markdown {
  overflow-x: auto;
}

.markdown h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cocoa);
  position: relative;
  padding-left: 16px;
}

.markdown h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--dusty-rose) 100%);
  border-radius: 2px;
}

.markdown h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cocoa);
}

.markdown p {
  margin-bottom: 16px;
  color: var(--coffee);
}

.markdown table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.markdown th,
.markdown td {
  padding: 14px 18px;
  text-align: left;
}

.markdown thead th {
  background: linear-gradient(135deg, rgba(200, 215, 197, 0.5) 0%, rgba(200, 215, 197, 0.3) 100%);
  color: var(--cocoa);
  font-weight: 600;
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--sage);
}

.markdown thead th:first-child {
  border-top-left-radius: var(--radius);
}

.markdown thead th:last-child {
  border-top-right-radius: var(--radius);
}

.markdown tbody tr {
  transition: background var(--transition-fast);
}

.markdown tbody tr:nth-child(even) {
  background: rgba(247, 241, 234, 0.5);
}

.markdown tbody tr:hover {
  background: rgba(230, 201, 194, 0.25);
}

.markdown tbody td {
  color: var(--coffee);
  border-top: 1px solid rgba(107, 95, 87, 0.06);
}

.markdown ul {
  padding-left: 0;
  list-style: none;
}

.markdown ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.markdown ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--dusty-rose) 100%);
  border-radius: 50%;
}

.markdown a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid rgba(168, 146, 124, 0.3);
  transition: all var(--transition-fast);
}

.markdown a:hover {
  color: var(--cocoa);
  border-bottom-color: var(--sage);
}

.markdown img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 28px 0;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.markdown img:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-glow);
}

.markdown figure {
  margin: 32px 0;
  text-align: center;
}

.markdown figcaption {
  font-size: 14px;
  color: var(--coffee-light);
  margin-top: 12px;
  font-style: italic;
}

/* ===== BOOKING SLOTS ===== */
.slots {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 16px;
}

.slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(107, 95, 87, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.slot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
}

.slot:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: rgba(200, 215, 197, 0.5);
}

.slot-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slot-date {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--cocoa);
  display: block;
  text-transform: capitalize;
}

.slot-time {
  font-size: 15px;
  color: var(--sage-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.slot-time::before {
  content: "🕐";
  font-size: 14px;
}

.slot strong {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  color: var(--cocoa);
  display: block;
  margin-bottom: 4px;
}

.slot span {
  font-size: 14px;
  color: var(--coffee-light);
}

/* ===== BUTTONS ===== */
.button {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
  color: var(--cocoa);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
}

.button:active {
  transform: translateY(0);
}

.button-secondary {
  background: transparent;
  border: 2px solid var(--sage);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(200, 215, 197, 0.2);
  box-shadow: none;
}

/* ===== FORM FIELDS ===== */
.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--cocoa);
}

.field input,
.field select,
.field textarea {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(107, 95, 87, 0.12);
  background: var(--white);
  font-family: "Lato", sans-serif;
  font-size: 15px;
  color: var(--cocoa);
  transition: all var(--transition-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(200, 215, 197, 0.2);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--coffee-light);
}

.field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--sage);
}

/* ===== ERROR STATES ===== */
.error {
  color: #9a3a33;
  font-size: 14px;
  font-weight: 500;
}

.error-box {
  background: linear-gradient(135deg, #fdf4f2 0%, #f9e4df 100%);
  border: 1px solid #f3c9c1;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.error-box::before {
  content: "!";
  width: 24px;
  height: 24px;
  background: #e8a99f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.hidden {
  position: absolute;
  left: -9999px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--white) 0%, #faf8f5 100%);
  border-top: 1px solid rgba(107, 95, 87, 0.08);
  margin-top: 40px;
  padding: 0;
}

.footer-main {
  padding: 48px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand h3 {
  font-family: "Quicksand", "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cocoa);
  margin: 0 0 12px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--coffee-light);
  line-height: 1.7;
  margin: 0;
}

.footer-section h4 {
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--cocoa);
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--coffee);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--coffee);
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.footer-bottom {
  border-top: 1px solid rgba(107, 95, 87, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--coffee-light);
}

.footer-bottom a {
  color: var(--coffee);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .nav {
    width: 100%;
    justify-content: flex-start;
  }
  
  section,
  article {
    padding: 28px 24px;
  }
  
  .content h1 {
    font-size: 28px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .slot {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
  }
  
  .slot-date {
    font-size: 16px;
  }
  
  .slot .button {
    width: 100%;
    justify-content: center;
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 32px; }

/* ===== SUCCESS STATES ===== */
.success-box {
  background: linear-gradient(135deg, #f0f7ef 0%, #e4f2e1 100%);
  border: 1px solid var(--sage);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cocoa);
}

.success-box::before {
  content: "✓";
  width: 24px;
  height: 24px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== CONTENT HEADER ===== */
.content-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(107, 95, 87, 0.08);
}

.content-header h1 {
  margin-bottom: 0;
}

.content-intro {
  margin-top: 12px;
  font-size: 17px;
  color: var(--coffee-light);
  line-height: 1.7;
}

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(200, 215, 197, 0.2) 0%, rgba(200, 215, 197, 0.1) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 215, 197, 0.4);
  margin-bottom: 24px;
}

.booking-summary-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}

.booking-summary-details strong {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  color: var(--cocoa);
  display: block;
  margin-bottom: 4px;
}

.booking-summary-details span {
  font-size: 14px;
  color: var(--coffee-light);
}

.form-note {
  font-size: 14px;
  color: var(--coffee-light);
  background: rgba(247, 241, 234, 0.6);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  border-left: 3px solid var(--dusty-rose);
}

/* ===== BOOKING FORM ===== */
.booking-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

.form-grid .field:last-child:nth-child(odd) {
  grid-column: 1;
}

.form-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(107, 95, 87, 0.08);
}

.button-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.button-arrow {
  transition: transform var(--transition-fast);
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

/* ===== CONSENT SECTION ===== */
.consent-section {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(247, 241, 234, 0.5) 0%, rgba(250, 248, 245, 0.8) 100%);
  border: 1px solid rgba(107, 95, 87, 0.1);
  border-radius: var(--radius-sm);
}

.consent-heading {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--cocoa);
  margin-bottom: 16px;
}

.consent-section .field.checkbox {
  margin-bottom: 14px;
  align-items: flex-start;
}

.consent-section .field.checkbox input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.consent-section .field.checkbox label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--coffee);
}

.consent-section .field.checkbox label a {
  color: var(--cocoa);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-section .field.checkbox label a:hover {
  color: var(--sage-dark, #8fb38a);
}

.consent-note {
  font-size: 12px;
  color: var(--coffee-light);
  line-height: 1.5;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(107, 95, 87, 0.08);
}

.consent-note a {
  color: var(--coffee);
  text-decoration: underline;
}

/* ===== CONFIRMATION SECTION ===== */
.confirmation-section {
  text-align: center;
  padding: 56px 48px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--dusty-rose) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}

.confirmation-icon-success {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 32px;
}

.confirmation-icon-error {
  background: linear-gradient(135deg, #f5d0d0 0%, #e8a0a0 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 32px;
}

.confirmation-section h1 {
  font-family: "Quicksand", "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cocoa);
  margin: 0 0 12px;
}

.confirmation-lead {
  font-size: 18px;
  color: var(--coffee-light);
  margin: 0 0 32px;
}

.confirmation-details {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(247, 241, 234, 0.6);
  padding: 24px 40px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.confirmation-detail {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  text-align: left;
}

.detail-label {
  font-size: 14px;
  color: var(--coffee-light);
  font-weight: 500;
}

.detail-value {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  color: var(--cocoa);
}

.confirmation-note {
  font-size: 14px;
  color: var(--coffee-light);
  margin: 0;
}

.confirmation-actions {
  margin-top: 32px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
}

.empty-state-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--dusty-rose-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.empty-state p {
  margin: 0 0 8px;
  color: var(--coffee);
}

.empty-state p:first-of-type strong {
  font-family: "Quicksand", "Lato", sans-serif;
  color: var(--cocoa);
}

/* ===== SLOT INFO ===== */
.slot-info {
  flex: 1;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .confirmation-section {
    padding: 40px 24px;
  }
  
  .confirmation-details {
    width: 100%;
    padding: 20px 24px;
  }
  
  .confirmation-detail {
    flex-direction: column;
    gap: 4px;
  }
  
  .booking-summary {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ERROR PAGE ===== */
.error-page {
  text-align: center;
  padding: 56px 48px;
}

.error-page-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dusty-rose-light) 0%, var(--dusty-rose) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}

.error-page h1 {
  font-family: "Quicksand", "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cocoa);
  margin: 0 0 12px;
}

.error-page-message {
  font-size: 18px;
  color: var(--coffee);
  margin: 0 0 16px;
}

.error-page-note {
  font-size: 14px;
  color: var(--coffee-light);
  margin: 0 0 32px;
}

.error-page-actions {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .error-page {
    padding: 40px 24px;
  }
}

/* ===== ABOUT PAGE ===== */
.about-page {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  overflow: visible;
}

.about-page::before {
  display: none;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--dusty-rose) 50%, var(--sage-light) 100%);
  opacity: 0.7;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184, 205, 180, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-label {
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.about-hero-text h1 {
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--cocoa);
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.about-maiden {
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 18px;
  color: var(--coffee-light);
  font-weight: 500;
  margin-bottom: 24px;
}

.about-intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--coffee);
  margin-bottom: 32px;
}

.about-cta {
  display: inline-block;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
}

.about-hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-hero-photo img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.about-hero-photo::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid var(--sage-light);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.6;
}

.about-content {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dusty-rose) 0%, var(--sage) 50%, var(--dusty-rose-light) 100%);
  opacity: 0.7;
}

.about-content h2:first-child {
  margin-top: 0;
}

.about-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.about-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--coffee);
  font-size: 15px;
  line-height: 1.7;
}

.about-content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}

.about-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-family: "Quicksand", "Poppins", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cocoa);
  padding-left: 28px;
  position: relative;
}

.about-content h3::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-size: 16px;
}

@media (max-width: 800px) {
  .about-hero {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 32px;
    text-align: center;
  }

  .about-hero-text h1 {
    font-size: 32px;
  }

  .about-hero-photo {
    order: -1;
  }

  .about-hero-photo img {
    max-width: 300px;
  }

  .about-hero-photo::after {
    display: none;
  }

  .about-content {
    padding: 32px 24px;
  }

  .about-content ul {
    justify-content: center;
  }
}

.about-company-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--coffee-light);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 800px) {
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .about-gallery img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img {
    height: 200px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: 40px 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 8px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(247, 241, 234, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(107, 95, 87, 0.08);
  transition: all var(--transition);
}

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

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-card-content h3 {
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cocoa);
  margin: 0 0 8px;
}

.contact-card-content p {
  font-size: 15px;
  color: var(--coffee);
  margin: 0 0 12px;
  line-height: 1.6;
}

.contact-card-content .button {
  margin-top: 8px;
}

.contact-map {
  display: flex;
  flex-direction: column;
}

.contact-map h3 {
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cocoa);
  margin: 0 0 16px;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1;
  min-height: 300px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.map-address {
  margin-top: 12px;
  font-size: 14px;
  text-align: center;
}

.map-address a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.map-address a:hover {
  color: var(--cocoa);
}

.contact-additional {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 95, 87, 0.08);
}

@media (max-width: 768px) {
  .contact-page {
    padding: 28px 24px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .map-container {
    min-height: 250px;
  }
  
  .map-container iframe {
    min-height: 250px;
  }
}

/* ===== FOOTER MAP ===== */
.footer-map {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: var(--radius-sm);
}

.footer-map-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 58, 54, 0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-sm);
}

.footer-map-link:hover .footer-map-overlay {
  opacity: 1;
}

.button-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.footer-cta {
  margin-top: 16px;
}

/* ===== THERAPY TILES (OFERTA PAGE) ===== */
.therapy-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.therapy-tile {
  display: flex;
  align-items: flex-end;
  min-height: 180px;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(107, 95, 87, 0.08);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Therapy tile background image */
.therapy-tile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.therapy-tile:hover .therapy-tile-image {
  transform: scale(1.05);
}

.therapy-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--dusty-rose) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.therapy-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(200, 215, 197, 0.5);
}

.therapy-tile:hover::before {
  opacity: 1;
}

/* Tile without image - simpler style */
.therapy-tile:not(.therapy-tile-with-image) {
  align-items: center;
  min-height: auto;
}

.therapy-tile:not(.therapy-tile-with-image) .therapy-tile-content {
  padding: 28px 32px;
  width: 100%;
}

/* Tile with background image */
.therapy-tile-with-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(63, 58, 54, 0.85) 0%,
    rgba(63, 58, 54, 0.6) 40%,
    rgba(63, 58, 54, 0.2) 70%,
    transparent 100%
  );
  transition: background var(--transition);
}

.therapy-tile-with-image:hover::after {
  background: linear-gradient(
    to top,
    rgba(63, 58, 54, 0.9) 0%,
    rgba(63, 58, 54, 0.65) 40%,
    rgba(63, 58, 54, 0.25) 70%,
    transparent 100%
  );
}

.therapy-tile-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.therapy-tile-with-image .therapy-tile-content {
  padding: 20px 24px;
}

.therapy-tile-title {
  font-family: "Quicksand", "Lato", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--cocoa);
  line-height: 1.4;
}

.therapy-tile-with-image .therapy-tile-title {
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  font-size: 18px;
}

.therapy-tile-arrow {
  font-size: 20px;
  color: var(--sage);
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}

.therapy-tile-with-image .therapy-tile-arrow {
  color: var(--white);
}

.therapy-tile:hover .therapy-tile-arrow {
  transform: translateX(4px);
}

.therapy-tile:not(.therapy-tile-with-image):hover .therapy-tile-arrow {
  color: var(--cocoa);
}

/* ===== THERAPY DETAIL PAGE ===== */
.therapy-detail-nav {
  margin-bottom: 24px;
}

.button-arrow-back {
  transition: transform var(--transition-fast);
}

.button:hover .button-arrow-back {
  transform: translateX(-4px);
}

.therapy-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 95, 87, 0.08);
  text-align: center;
}

.therapy-cta-text {
  font-size: 17px;
  color: var(--coffee);
  margin: 0 0 20px;
}

/* ===== BOOKING PRESELECTION ===== */
.booking-preselection {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(200, 215, 197, 0.2) 0%, rgba(200, 215, 197, 0.1) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(200, 215, 197, 0.4);
  margin-bottom: 24px;
}

.booking-preselection-label {
  font-size: 14px;
  color: var(--coffee-light);
}

.booking-preselection-value {
  font-family: "Quicksand", "Lato", sans-serif;
  font-weight: 600;
  color: var(--cocoa);
}

.input-readonly {
  background: rgba(247, 241, 234, 0.6) !important;
  cursor: not-allowed;
  color: var(--coffee) !important;
}

/* ===== RESPONSIVE - THERAPY TILES ===== */
@media (max-width: 768px) {
  .therapy-tiles {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .therapy-tile {
    min-height: 140px;
  }
  
  .therapy-tile:not(.therapy-tile-with-image) .therapy-tile-content {
    padding: 24px;
  }
  
  .therapy-tile-with-image .therapy-tile-content {
    padding: 16px 20px;
  }
  
  .therapy-tile-title {
    font-size: 16px;
  }
  
  .therapy-tile-with-image .therapy-tile-title {
    font-size: 17px;
  }
  
  .therapy-cta {
    margin-top: 32px;
    padding-top: 24px;
  }
  
  .booking-preselection {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
