/* 
===============================================
  COLORFUL THEME (Variant 3 - India / Vibrant)
===============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  /* Colorful Palette */
  --brand-main: #E85D04;       /* Deep Saffron / Orange */
  --brand-secondary: #0077B6;  /* Sapphire Blue */
  --brand-accent: #2A9D8F;     /* Jungle Green */
  --ui-base-light: #FFFBF4;    /* Cream / Off-White Base */
  --ui-base-dark: #264653;     /* Dark Teal / Charcoal */
  --ui-text-main: #333333;     /* Dark Grey Text */
  
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --brand-gradient: linear-gradient(135deg, rgba(232, 93, 4, 0.9) 0%, rgba(0, 119, 182, 0.8) 100%);
  --brand-gradient-alt: linear-gradient(to right, rgba(42, 157, 143, 0.9), rgba(38, 70, 83, 0.95));
  --dark-color: var(--ui-base-dark);
  --accent-color: var(--brand-main);
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--ui-text-main);
  background-color: var(--ui-base-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--ui-base-dark);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Custom Unique Classes (Footprint Protection) */
.wellness-top-bar {
  background-color: var(--ui-base-light);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lifestyle-nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ui-base-dark);
  padding: 0.5rem 1rem;
}

.lifestyle-nav-link:hover {
  color: var(--brand-main);
}

.vitality-intro-wrap {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.vitality-overlay-box {
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

.content-wellness-core {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.action-trigger-btn {
  display: inline-block;
  background-color: var(--brand-main);
  color: #fff;
  font-family: var(--font-head);
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
  transition: all 0.3s ease;
}

.action-trigger-btn:hover {
  background-color: var(--brand-secondary);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
  transform: translateY(-2px);
}

.wellness-grid-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.health-perk-module {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  border-top: 5px solid var(--brand-accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.health-perk-module:hover {
  transform: translateY(-5px);
}

.icon-wrapper-circle {
  width: 60px;
  height: 60px;
  background-color: var(--brand-secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.step-flow-wrapper {
  background-color: var(--ui-base-dark);
  color: var(--ui-base-light);
  padding: 5rem 2rem;
}

.step-item-node {
  text-align: center;
  position: relative;
}

.step-number-badge {
  width: 50px;
  height: 50px;
  background-color: var(--brand-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0 auto 1rem auto;
  font-weight: 700;
}

/* Reserve Page Specific Styles */
.approach-list-ordered {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.approach-list-ordered li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.approach-list-ordered li::before {
  content: counter(approach-counter);
  counter-increment: approach-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: var(--brand-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  font-family: var(--font-head);
}

.approach-list-wrapper {
  counter-reset: approach-counter;
}

.booking-form-canvas {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.input-field-custom {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.input-field-custom:focus {
  outline: none;
  border-color: var(--brand-main);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.faq-toggle-block {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.faq-question-text {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brand-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Footer Group */
.bottom-zone-footer {
  background-color: #1a1a1a;
  color: #a0a0a0;
  padding: 4rem 2rem 2rem 2rem;
  text-align: center;
}

.bottom-zone-footer a {
  color: #fff;
  margin: 0 0.5rem;
}

.bottom-zone-footer a:hover {
  color: var(--brand-main);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: var(--ui-base-light);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    text-align: left;
    padding: 1.5rem 3rem;
  }
}

.cookie-actions-group {
  display: flex;
  gap: 1rem;
}

.cookie-btn-accept {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-btn-accept:hover {
  background-color: #d15303;
}

.cookie-btn-decline {
  background-color: #4B5563;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cookie-btn-decline:hover {
  background-color: #374151;
}

/* Utility for Mobile Menu */
.mobile-nav-panel {
  display: none;
  background: var(--ui-base-light);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.mobile-nav-panel.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav-panel a {
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
}