@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   1. DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Color Palette - HSL Tailored */
  --primary-hue: 182;
  --primary-sat: 60%;
  --primary-light: 16%;
  
  --primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light)); /* #0a2f30 - Deep Teal */
  --primary-medium: hsl(var(--primary-hue), var(--primary-sat), 25%);
  --primary-light-bg: hsl(var(--primary-hue), 30%, 95%);
  --primary-alpha-10: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.1);
  --primary-alpha-20: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.2);

  --accent-hue: 35;
  --accent-sat: 92%;
  --accent-light: 55%;
  --accent: hsl(var(--accent-hue), var(--accent-sat), var(--accent-light)); /* Cozy Gold/Amber */
  --accent-hover: hsl(var(--accent-hue), var(--accent-sat), 47%);
  --accent-light-bg: hsl(var(--accent-hue), 80%, 96%);

  /* Neutrals */
  --text-dark: hsl(220, 30%, 12%);
  --text-light: hsl(210, 20%, 98%);
  --text-gray: hsl(220, 15%, 45%);
  --text-gray-light: hsl(220, 12%, 65%);
  
  --bg-light: hsl(210, 20%, 98%); /* Clean winter ice-white */
  --bg-white: hsl(0, 0%, 100%);
  --bg-dark: hsl(222, 28%, 10%); /* Deep night winter blue */
  --bg-dark-card: hsl(222, 28%, 14%);
  
  /* Borders and Shadows */
  --border-color: hsl(220, 15%, 90%);
  --border-light: hsla(0, 0%, 100%, 0.15);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px -10px rgba(10, 47, 48, 0.08);
  --shadow-lg: 0 20px 40px -15px rgba(10, 47, 48, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(10, 47, 48, 0.05);

  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout Constants */
  --max-width: 1280px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

/* Typography Custom Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  position: relative;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-weight: 400;
  color: var(--text-gray);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-medium);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 15px hsla(var(--accent-hue), var(--accent-sat), var(--accent-light), 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(var(--accent-hue), var(--accent-sat), var(--accent-light), 0.45);
}

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

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

/* Accessibility Focus Outline */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

/* ==========================================
   3. HEADER / NAVIGATION
   ========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(10, 47, 48, 0.08);
  transition: all 0.4s ease;
}

.site-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
}

.logo svg {
  fill: var(--primary);
  transition: transform 0.4s ease;
}

.logo:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.main-nav a {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.85;
  position: relative;
  padding: 0.5rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

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

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 2rem 6rem;
  background: radial-gradient(circle at 80% 20%, hsl(182, 35%, 92%) 0%, var(--bg-light) 60%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-content {
  z-index: 10;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-light-bg);
  border: 1px solid hsla(var(--accent-hue), var(--accent-sat), var(--accent-light), 0.3);
  color: hsl(var(--accent-hue), var(--accent-sat), 35%);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--accent);
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-image-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  max-width: 100%;
}

.hero-image-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.hero-card-floating {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: rotate(-2deg);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-card-icon {
  background-color: var(--primary);
  color: var(--text-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-text h4 {
  font-size: 1.05rem;
  color: var(--primary);
}

.hero-card-text p {
  font-size: 0.85rem;
  font-weight: 500;
}

/* ==========================================
   5. WELCOME & ABOUT SECTION
   ========================================== */
.section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  margin-top: 1rem;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-frame {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-experience-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.about-experience-tag span:first-child {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1;
}

.about-experience-tag span:last-child {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-content .subtitle {
  color: var(--accent);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: block;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-services-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-service-item svg {
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.about-service-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.about-service-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================
   6. INTERACTIVE GUIDE (11 TIPS GRID)
   ========================================== */
.guide-container {
  background-color: var(--primary-light-bg);
  padding: 6rem 0;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.tip-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  opacity: 0.2;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-alpha-20);
}

.tip-card:hover::before {
  background-color: var(--accent);
  opacity: 1;
}

.tip-number {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--primary-light-bg);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  transition: color 0.3s ease;
}

.tip-card:hover .tip-number {
  color: var(--primary-alpha-10);
}

.tip-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light-bg);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
}

.tip-icon svg {
  fill: var(--primary);
  transition: fill 0.3s ease;
}

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

.tip-card:hover .tip-icon svg {
  fill: var(--bg-white);
}

.tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
  padding-right: 2rem;
}

.tip-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  margin-top: 1.5rem;
  align-self: flex-start;
  opacity: 0.8;
}

.tip-link svg {
  fill: var(--primary);
  transition: transform 0.3s ease;
}

.tip-link:hover {
  opacity: 1;
  color: var(--accent);
}

.tip-link:hover svg {
  fill: var(--accent);
  transform: translateX(4px);
}

/* ==========================================
   7. INTERACTIVE WIDGET (COMFORT CHECKER)
   ========================================== */
.widget-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 2rem;
}

.widget-section .section-header h2 {
  color: var(--text-light);
}

.widget-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.widget-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-gray-light);
}

.widget-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.widget-field label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
}

.widget-field select,
.widget-field input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-light);
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.widget-field select:focus,
.widget-field input:focus {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 10px hsla(var(--accent-hue), var(--accent-sat), var(--accent-light), 0.15);
}

.widget-field option {
  background-color: var(--bg-dark-card);
  color: var(--text-light);
}

.widget-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.widget-result-box {
  background-color: rgba(10, 47, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: none;
  animation: fadeIn 0.5s ease;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.result-badge {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background-color: var(--accent);
  color: var(--primary);
  text-transform: uppercase;
}

.result-badge.safe {
  background-color: hsl(145, 60%, 45%);
  color: white;
}

.result-badge.warning {
  background-color: var(--accent);
  color: var(--primary);
}

.result-badge.danger {
  background-color: hsl(0, 75%, 55%);
  color: white;
}

.result-body h4 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.result-body p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================
   8. FAQ ACCORDION SECTION
   ========================================== */
.faq-section {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

details.faq-item {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

details.faq-item[open] {
  border-color: var(--primary-alpha-20);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

summary.faq-trigger {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary);
  padding: 1.5rem 2rem;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  transition: transform 0.3s ease;
}

details.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  fill: var(--accent);
}

.faq-content {
  padding: 0 2rem 2rem;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
}

/* ==========================================
   9. BOOKING FORM
   ========================================== */
.booking-section {
  position: relative;
  background: linear-gradient(135deg, hsl(182, 30%, 94%) 0%, var(--bg-light) 100%);
  padding: 6rem 2rem;
  overflow: hidden;
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.booking-info-pane h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-info-pane p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.booking-hours-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.booking-hours-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-hours-card h4 svg {
  fill: var(--accent);
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.hours-row.highlight {
  color: var(--accent-hover);
  font-weight: 600;
}

.hours-row span:first-child {
  font-weight: 500;
}

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

.booking-form-pane h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 10px var(--primary-alpha-10);
}

.radio-group-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 6px;
}

.radio-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
  background-color: var(--bg-light);
  position: relative;
}

.radio-card input[type="radio"] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  accent-color: var(--primary);
}

.radio-card:hover {
  border-color: var(--primary-medium);
}

.radio-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light-bg);
}

.radio-card h5 {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
}

.radio-card p {
  font-size: 0.8rem;
  margin: 0;
}

.booking-form-pane .btn-submit {
  width: 100%;
  margin-top: 1.5rem;
}

.booking-success-message {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.booking-success-message.visible {
  opacity: 1;
  pointer-events: auto;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: hsl(145, 60%, 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.success-icon-wrapper svg {
  fill: hsl(145, 60%, 45%);
}

.booking-success-message h4 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.booking-success-message p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ==========================================
   10. FOOTER & MODAL DIALOGS
   ========================================== */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-brand .logo svg {
  fill: var(--text-light);
}

.footer-brand p {
  color: var(--text-gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link svg {
  fill: var(--text-light);
}

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

.social-link:hover svg {
  fill: var(--primary);
}

.footer-links-col h4,
.footer-contact-col h4 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-headings);
  font-weight: 600;
}

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

.footer-links a {
  color: var(--text-gray-light);
  font-size: 0.95rem;
}

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

.footer-contact-info {
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-gray-light);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-row svg {
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-row strong {
  color: var(--text-light);
  display: block;
  margin-bottom: 2px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-gray-light);
}

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

.footer-legal-links button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: var(--text-gray-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-legal-links button:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ==========================================
   11. NATIVE DIALOGS & OVERLAYS
   ========================================== */
dialog.policy-modal {
  width: 90%;
  max-width: 720px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  max-height: 85vh;
}

dialog.policy-modal[open] {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

dialog.policy-modal::backdrop {
  background-color: rgba(10, 47, 48, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

dialog.policy-modal[open]::backdrop {
  opacity: 1;
}

/* Modal Content Styling */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.6rem;
}

.modal-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.modal-close-btn svg {
  fill: var(--primary);
}

.modal-close-btn:hover {
  background-color: var(--accent);
}

.modal-close-btn:hover svg {
  fill: var(--primary);
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-gray);
}

.modal-body h4 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--primary);
}

.modal-body p {
  margin-bottom: 1rem;
}

.modal-body ul {
  margin: 0.5rem 0 1rem 1.5rem;
  display: grid;
  gap: 0.5rem;
}

/* ==========================================
   12. ANIMATIONS & MICRO-INTERACTIONS
   ========================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(235, 154, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(235, 154, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(235, 154, 60, 0);
  }
}

@keyframes floatCard {
  0% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-8px) rotate(-1deg);
  }
  100% {
    transform: translateY(0) rotate(-2deg);
  }
}

/* ==========================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
  
  .about-section {
    gap: 3rem;
  }
  
  .booking-container {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 2rem;
  }
  
  .hero-badge {
    margin-bottom: 1.25rem;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    margin-top: 2rem;
  }
  
  .hero-image-card {
    max-width: 480px;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
  
  .booking-container {
    grid-template-columns: 1fr;
  }
  
  .booking-info-pane {
    text-align: center;
  }
  
  .booking-hours-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 1rem auto 1.5rem;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  .contact-row {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header-container {
    padding: 0 1.25rem;
  }
  
  .main-nav {
    display: none; /* Hide standard navbar on mobile */
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .widget-form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .widget-container {
    padding: 2rem 1.5rem;
  }
  
  .booking-form-pane {
    padding: 2rem 1.5rem;
  }
  
  .radio-group-container {
    grid-template-columns: 1fr;
  }
  
  dialog.policy-modal {
    padding: 1.5rem;
  }
}
