/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette (HSL-based for harmony and flexibility) */
  --bg-primary: hsl(30, 27%, 98%);     /* Warm cream */
  --bg-secondary: hsl(30, 20%, 95%);   /* Soft warm beige tint */
  --bg-tertiary: hsl(30, 15%, 90%);    /* Contrasting border/beige */
  
  --primary: hsl(140, 16%, 36%);       /* Calm Sage Green */
  --primary-hover: hsl(140, 20%, 28%);
  --primary-light: hsl(140, 22%, 93%); /* Accent soft green tint */
  
  --accent: hsl(18, 28%, 55%);         /* Soft dusty terracotta/rose */
  --accent-hover: hsl(18, 30%, 46%);
  --accent-light: hsl(18, 35%, 94%);
  
  --text-main: hsl(30, 12%, 18%);      /* Dark slate-charcoal */
  --text-muted: hsl(30, 8%, 45%);
  --border-color: hsl(30, 12%, 88%);
  
  --white: #ffffff;
  --success: hsl(100, 25%, 45%);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(45, 40, 35, 0.04);
  --shadow-md: 0 10px 30px rgba(45, 40, 35, 0.06);
  --shadow-lg: 0 20px 40px rgba(45, 40, 35, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  
  /* Typography */
  --font-sans: 'Inter', Arial, sans-serif;
  --font-serif: 'Inter', Arial, sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Container Width */
  --container-max: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}

.section-header.text-center {
  margin-right: auto;
  margin-left: auto;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin-top: 1.5rem;
}

.section-header.text-center .section-divider {
  margin-right: auto;
  margin-left: auto;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(91, 107, 89, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91, 107, 89, 0.25);
}

.btn-secondary {
  background-color: var(--accent-light);
  color: var(--accent-hover);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  display: flex;
  width: 100%;
}

.inline-link {
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
}

.inline-link:hover {
  color: var(--accent-hover);
  border-bottom-style: solid;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 249, 246, 0.85); /* Backed warm transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background-color: rgba(253, 252, 250, 0.95);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .header-container {
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
  line-height: 1.15;
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.nav {
  flex: 1;
  max-width: 600px;
  margin: 0 3rem;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-link.active {
  color: var(--accent-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-socials {
  display: flex;
  gap: 0.75rem;
  margin-right: 0.75rem;
}

.header-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-round);
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.header-socials a:hover {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-mobile-socials {
  display: none;
}

/* Burger Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, transparent 40%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2.25rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.hero-text {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 530px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stat-num {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.hero-image-bg {
  display: none;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-sm);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  width: 100%;
  max-width: 540px;
  height: auto;
  transition: transform var(--transition-smooth);
}

.hero-image:hover {
  transform: translateY(-4px);
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about {
  background-color: var(--bg-secondary);
}

.about-story-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 780px;
  margin: 0 auto;
  padding: 1rem 0;
}

.about-story-block {
  display: flex;
  flex-direction: column;
}

.about-story-title {
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  position: relative;
}

.about-story-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-story-text:last-of-type {
  margin-bottom: 0;
}

.about-story-divider-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  text-align: center;
}

.story-divider-image {
  max-width: 100%;
  width: 680px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-smooth);
}

.story-divider-image:hover {
  transform: scale(1.02);
}

.story-divider-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
  font-family: var(--font-serif);
}

.about-story-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.principle-item {
  display: flex;
  gap: 1.25rem;
}

.principle-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.principle-info h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.principle-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   ISSUES SECTION (WHAT I WORK WITH)
   ========================================================================== */
.issues {
  background-color: var(--bg-primary);
}

.issues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.issue-card {
  flex: 0 1 calc((100% - 4rem) / 3);
  min-width: 320px;
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .issue-card {
    flex: 0 1 calc((100% - 2rem) / 2);
  }
}

@media (max-width: 768px) {
  .issue-card {
    flex: 1 1 100%;
  }
}

.issues-separator {
  height: 1px;
  background-color: var(--border-color);
  max-width: 150px;
  margin: 4.5rem auto;
  opacity: 0.8;
}

.issue-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.issue-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.issue-card:hover .issue-icon {
  background-color: var(--primary);
  color: var(--white);
}

.issue-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.issue-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.personal-note {
  margin-top: auto;
  padding-top: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.55;
}

.issue-card.highlight-card {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  justify-content: space-between;
}

.issue-card.highlight-card .issue-title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-top: 1rem;
}

.issue-card.highlight-card .issue-text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.card-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.card-link i {
  transition: var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   FORMATS SECTION
   ========================================================================== */
.formats {
  background-color: var(--bg-secondary);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.format-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.format-badge {
  position: absolute;
  top: -1rem;
  left: 3rem;
  background-color: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(186, 126, 107, 0.3);
}

.format-card:nth-child(2) {
  /* Subtle styling logic for recommended vs secondary */
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.format-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.format-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.format-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  min-height: 48px;
}

.format-price-box {
  display: flex;
  align-items: baseline;
  margin: 2.25rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.price-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.format-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.format-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.format-features li i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.rules-box {
  margin-top: 5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border-left: 5px solid var(--primary);
}

.rules-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary-hover);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.rule-col h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.rule-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   BOOKING SECTION
   ========================================================================== */
.booking {
  background-color: var(--bg-primary);
  background-image: radial-gradient(circle at 10% 80%, var(--accent-light) 0%, transparent 35%);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.booking-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  display: block;
  margin-bottom: 0.75rem;
}

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

.booking-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  background-color: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.step-card h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.booking-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.booking-form {
  transition: var(--transition-smooth);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  color: var(--text-main);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input[type="text"]:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* Radio Button Group */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-label input {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-round);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
}

.radio-label input:checked + .radio-custom {
  border-color: var(--primary);
}

.radio-custom::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--primary);
  border-radius: var(--radius-round);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: var(--transition-fast);
}

.radio-label input:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Checkbox Button */
.checkbox-group {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: inline-block;
  position: relative;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.checkbox-label input:checked + .checkbox-custom {
  border-color: var(--primary);
  background-color: var(--primary);
}

.checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--white);
  font-size: 0.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Errors */
.error-message {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error input[type="text"],
.form-group.has-error select,
.form-group.has-error checkbox-custom {
  border-color: var(--accent);
}

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

.btn-spinner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Success Message */
.form-success-message {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: scaleInSuccess 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleInSuccess {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 1.5rem;
}

.form-success-message h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.form-success-message p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   CONTACTS SECTION (WITH STYLIZED MAP)
   ========================================================================== */
.contacts {
  background-color: var(--bg-secondary);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contacts-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contacts-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-text span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
}

.contact-text a, 
.contact-text p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-main);
  margin-top: 0.15rem;
}

.contact-text a:hover {
  color: var(--accent);
}

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

.btn-messenger {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  transition: var(--transition-smooth);
}

.btn-telegram {
  background-color: hsl(200, 75%, 48%);
  box-shadow: 0 4px 12px rgba(36, 161, 222, 0.15);
}

.btn-telegram:hover {
  background-color: hsl(200, 78%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 161, 222, 0.25);
}

.btn-whatsapp {
  background-color: hsl(125, 55%, 42%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
  background-color: hsl(125, 60%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

/* Stylized CSS Map Card */
.map-container {
  display: flex;
  justify-content: center;
}

.stylized-map {
  width: 100%;
  max-width: 480px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.map-inner {
  height: 280px;
  background-color: hsl(30, 20%, 93%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-river {
  position: absolute;
  width: 150px;
  height: 400px;
  background-color: hsl(200, 30%, 82%);
  right: -50px;
  top: -60px;
  transform: rotate(35deg);
  border-radius: 40px;
}

.map-road-vertical {
  position: absolute;
  width: 40px;
  height: 100%;
  background-color: var(--white);
  left: 120px;
  box-shadow: 0 0 10px rgba(0,0,0,0.02);
}

.map-road-horizontal {
  position: absolute;
  width: 100%;
  height: 36px;
  background-color: var(--white);
  top: 140px;
  box-shadow: 0 0 10px rgba(0,0,0,0.02);
}

.map-metro-station {
  position: absolute;
  top: 60px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  font-weight: 700;
}

.ubahn-station span {
  background-color: #0065ae; /* Munich U-Bahn Blue */
  color: var(--white);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.7rem;
  border-radius: 2px;
  line-height: 1;
}

.map-pin {
  position: absolute;
  top: 120px;
  left: 200px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin i {
  font-size: 2.5rem;
  color: var(--accent);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.pin-pulse {
  position: absolute;
  width: 24px;
  height: 12px;
  background-color: rgba(186, 126, 107, 0.4);
  border-radius: var(--radius-round);
  bottom: -4px;
  transform: scale(1);
  animation: pulsePin 2s infinite ease-out;
}

@keyframes pulsePin {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.pin-label {
  background-color: var(--text-main);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.map-footer {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.map-footer h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.map-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--text-main);
  color: var(--white);
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-name {
  color: var(--white);
}

.footer-brand .logo-subtitle {
  color: rgba(255, 255, 255, 0.4);
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer-links h4,
.footer-legal h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-legal p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer-legal .legal-notice {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  color: var(--white);
}

/* ==========================================================================
   SCROLL TRIGGERS & ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large Tablets / Laptops */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  

  
  .footer-container {
    gap: 2rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  
  .section-header {
    margin-bottom: 2.5rem;
  }
  
  .section-title {
    font-size: 1.85rem;
  }
  
  /* Mobile Menu navigation logic */
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-primary);
    padding: 3rem 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: none;
    max-width: none;
    margin: 0;
  }
  
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 1.25rem;
  }
  
  .nav-mobile-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-bottom: 2rem;
  }
  
  .nav-mobile-socials a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-round);
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
  }
  
  .nav-mobile-socials a:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
  }
  
  .header-socials {
    display: none;
  }
  
  .header-actions .btn {
    display: none; /* Hide top CTA on smaller screens, rely on burger and pages */
  }
  
  /* Burger Animation */
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero column stack */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-image-wrapper {
    order: -1;
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }
  
  /* About Story biography layout */
  .about-story-container {
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .about-story-title {
    font-size: 1.4rem;
  }
  
  .about-story-divider-img {
    margin: 1.5rem 0;
  }
  
  .about-story-principles {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Formats column stack */
  .formats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .format-card {
    padding: 2.5rem 2rem;
  }
  
  .rules-box {
    padding: 2rem;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  /* Booking column stack */
  .booking-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .booking-form-wrapper {
    padding: 2rem;
  }
  
  /* Contacts column stack */
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .map-container {
    width: 100%;
  }
  
  .stylized-map {
    max-width: 100%;
  }
  
  /* Footer layout change */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-num {
    font-size: 1.85rem;
  }

  
  .messenger-buttons {
    flex-direction: column;
  }
  
  .btn-messenger {
    width: 100%;
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   COMBINED BOOKING SECTION
   ========================================================================== */
.booking-combined {
  background-color: var(--bg-secondary);
}

.booking-combined-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  max-width: 960px;
  margin: 0 auto;
}

.booking-info-col,
.booking-action-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.info-block {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.info-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.info-block-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.75rem;
}

.info-block-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.info-block-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-block-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

.info-block-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.contact-link-item:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-link-icon {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.telegram-color {
  color: #0088cc;
}

.instagram-color {
  color: #e1306c;
}

.threads-color {
  color: var(--text-main);
}

.contact-link-text {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-link-text strong {
  color: var(--text-main);
  margin-left: 0.25rem;
}

.booking-cta-box {
  margin-top: -1rem;
}

.booking-cta-box .btn {
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(186, 126, 107, 0.3);
}

/* Responsive Grid for Combined Booking */
@media (max-width: 992px) {
  .booking-combined-grid {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .booking-combined-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .booking-info-col,
  .booking-action-col {
    gap: 2.5rem;
  }
  
  .info-block {
    padding: 2rem;
  }
}

/* ==========================================================================
   TAB GRID STYLES
   ========================================================================== */
.tab-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.tab-grid-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tab-grid-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  aspect-ratio: 4 / 3;
}

.tab-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.tab-grid-img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .tab-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .tab-grid-img-wrapper {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }
}

/* ==========================================================================
   CROSSROADS SECTION STYLES
   ========================================================================== */
.crossroads {
  background-color: var(--bg-primary);
}

.crossroads-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.crossroads-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  aspect-ratio: 1 / 1;
}

.crossroads-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.crossroads-image:hover {
  transform: scale(1.02);
}

.crossroads-content {
  padding-top: 1rem;
}

.crossroads-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.crossroads-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.crossroads-list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.crossroads-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.5;
}

.crossroads-list li i {
  color: var(--primary);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.crossroads-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .crossroads-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .crossroads-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }
}


/* ==========================================================================
   BOOKING ILLUSTRATION BOX STYLES
   ========================================================================== */
.booking-illustration-box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  aspect-ratio: 16 / 10;
}

.booking-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.booking-illustration:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   ABOUT SISTER BLOCK STYLES
   ========================================================================== */
.about-sister-block {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.about-sister-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.about-sister-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.about-sister-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: var(--transition-fast);
}

.about-sister-instagram a:hover {
  color: var(--accent-hover);
}

/* ==========================================================================
   BOOKING EMOTIONAL BLOCK STYLES
   ========================================================================== */
.booking-emotional-block {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.booking-emotional-image-wrapper {
  width: 75%;
  max-width: 720px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking-emotional-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-smooth);
}

.booking-emotional-image:hover {
  transform: scale(1.02);
}

.booking-emotional-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
  font-family: var(--font-serif);
}

.booking-emotional-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-main);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-family: var(--font-serif);
  font-style: italic;
}

.booking-emotional-cta {
  margin-top: 0.5rem;
}

.booking-emotional-cta .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(186, 126, 107, 0.3);
}

@media (max-width: 768px) {
  .booking-emotional-block {
    margin-top: 3.5rem;
  }
  
  .booking-emotional-image-wrapper {
    width: 100%;
  }
  
  .booking-emotional-text {
    font-size: 1.05rem;
    padding: 0 1rem;
  }
}
