/* ============================================
   Summit Ski & Board Rentals - Immersive Layout
   ============================================ */

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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #ffffff;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #1C2833;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: #566573;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #E74C3C;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7F8C8D;
  max-width: 600px;
}

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

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


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  gap: 8px;
}

.btn-primary {
  background-color: #E74C3C;
  color: #fff;
}

.btn-primary:hover {
  background-color: #C0392B;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(231, 76, 60, 0.35);
}

.btn-secondary {
  background-color: #ffffff;
  color: #1A5276;
  border: 2px solid #D5DBDB;
}

.btn-secondary:hover {
  border-color: #1A5276;
  background-color: #F0F4F8;
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #1A5276;
  border-color: #ffffff;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}


/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1A5276;
}

.nav-logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #1A5276, #2980B9);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.925rem;
  font-weight: 500;
  color: #566573;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #1A5276;
  background-color: #F0F4F8;
}

.nav-links a.active {
  color: #1A5276;
  font-weight: 600;
}

.nav-cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #1C2833;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   Hero - Full Viewport Immersive
   ============================================ */
.hero-immersive {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, #0d2f45 0%, #1A5276 35%, #2980B9 65%, #1C2833 100%);
  overflow: hidden;
}

.hero-immersive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(231,76,60,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(41,128,185,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Subtle animated snow-like particles via pseudo */
.hero-immersive::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 70% 45%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 90%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 60% 75%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 85% 15%, rgba(255,255,255,0.25), transparent);
  pointer-events: none;
  animation: snowDrift 20s linear infinite;
}

@keyframes snowDrift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(15px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 72px;
}

.hero-immersive .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: #2ECC71;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-immersive h1 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-immersive h1 span {
  color: #E74C3C;
}

.hero-immersive .hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Booking Bar */
.booking-bar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  margin-top: 20px;
  margin-bottom: 48px;
}

.booking-bar-inner {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 20px 24px;
}

.booking-field {
  flex: 1;
}

.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.booking-field input::placeholder {
  color: rgba(255,255,255,0.4);
}

.booking-field select option {
  color: #2C3E50;
  background: #fff;
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
}

.booking-bar-inner .btn {
  flex-shrink: 0;
  padding: 14px 28px;
  white-space: nowrap;
}


/* ============================================
   Page Hero (inner pages) - Full Width
   ============================================ */
.page-hero-full {
  position: relative;
  width: 100%;
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(160deg, #0d2f45 0%, #1A5276 50%, #1C2833 100%);
  overflow: hidden;
}

.page-hero-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(231,76,60,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(41,128,185,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-full .container {
  position: relative;
  z-index: 1;
}

.page-hero-full h1 {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero-full p {
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
}


/* ============================================
   Sections
   ============================================ */
section {
  padding: 96px 0;
}

.section-alt {
  background-color: #F0F4F8;
}


/* ============================================
   Tabbed Interface - Home Page Rentals
   ============================================ */
.tabs-wrapper {
  margin-top: 48px;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #F0F4F8;
  border-radius: 14px;
  padding: 6px;
  max-width: 420px;
  margin: 0 auto 40px;
}

.tab-btn {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #7F8C8D;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn:hover {
  color: #1A5276;
}

.tab-btn.active {
  background: #ffffff;
  color: #1A5276;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.35s ease;
}

.tab-panel.active {
  display: block;
}

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

.tab-content-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid #E8ECEF;
  border-radius: 20px;
  overflow: hidden;
}

.tab-card-visual {
  height: 100%;
  min-height: 380px;
  background: linear-gradient(135deg, #D4E6F1, #EBF5FB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7FB3D3;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 24px;
  text-align: center;
}

.tab-card-info {
  padding: 48px 48px 48px 0;
}

.tab-card-info .card-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.card-badge.popular {
  background-color: #FDEDEC;
  color: #E74C3C;
}

.card-badge.value {
  background-color: #EAFAF1;
  color: #27AE60;
}

.card-badge.premium {
  background-color: #FEF9E7;
  color: #F39C12;
}

.tab-card-info h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.tab-card-info p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.tab-card-meta {
  display: flex;
  gap: 20px;
  font-size: 0.875rem;
  color: #7F8C8D;
  margin-bottom: 24px;
}

.tab-card-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-card-price {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tab-card-price .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1A5276;
}

.tab-card-price .price-label {
  font-size: 0.95rem;
  color: #7F8C8D;
  font-weight: 400;
}


/* ============================================
   Features - Alternating Full Width Strips
   ============================================ */
.features-strip {
  padding: 96px 0;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-row:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: transparent;
}

.feature-row .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #EBF5FB, #D4E6F1);
  border-radius: 14px;
  font-size: 1.5rem;
  color: #1A5276;
  flex-shrink: 0;
}

.feature-row-text h4 {
  margin-bottom: 4px;
}

.feature-row-text p {
  font-size: 0.925rem;
  margin-bottom: 0;
  color: #7F8C8D;
}


/* ============================================
   Horizontal Scroll Testimonials
   ============================================ */
.testimonials-scroll-section {
  padding: 96px 0;
  overflow: hidden;
}

.testimonials-scroll-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #D5DBDB transparent;
}

.testimonials-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #D5DBDB;
  border-radius: 3px;
}

.testimonials-scroll-track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  width: max-content;
}

.testimonial-scroll-card {
  width: 380px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #E8ECEF;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.testimonial-scroll-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial-stars {
  color: #F1C40F;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-scroll-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A5276, #2980B9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.925rem;
  color: #1C2833;
}

.author-info span {
  font-size: 0.8rem;
  color: #95A5A6;
}


/* ============================================
   Stats Row - Big Numbers
   ============================================ */
.stats-row-section {
  background-color: #1A5276;
  padding: 72px 0;
}

.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.stat-block {
  text-align: center;
  flex: 1;
}

.stat-block .stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-block .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Divider between stats */
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


/* ============================================
   Comparison Table - Rentals Page
   ============================================ */
.comparison-section {
  padding: 96px 0;
}

.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead th {
  padding: 28px 24px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7F8C8D;
  border-bottom: 2px solid #E8ECEF;
}

.comparison-table thead th:first-child {
  text-align: left;
  color: #1C2833;
}

.comparison-table thead th.highlight {
  color: #1A5276;
  position: relative;
}

.comparison-table thead th.highlight::after {
  content: 'Most Popular';
  display: block;
  font-size: 0.65rem;
  color: #E74C3C;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  font-weight: 700;
}

.comparison-table .pkg-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1C2833;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.comparison-table .pkg-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A5276;
  margin-top: 8px;
}

.comparison-table .pkg-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #7F8C8D;
}

.comparison-table tbody tr {
  transition: background-color 0.15s ease;
}

.comparison-table tbody tr:hover {
  background-color: #F8FAFB;
}

.comparison-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid #F0F4F8;
  text-align: center;
  font-size: 0.925rem;
  color: #566573;
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #2C3E50;
}

.comparison-table .check {
  color: #27AE60;
  font-size: 1.2rem;
  font-weight: 700;
}

.comparison-table .dash {
  color: #D5DBDB;
  font-size: 1.2rem;
}

.comparison-table .col-highlight {
  background-color: rgba(26, 82, 118, 0.03);
}

.comparison-table tfoot td {
  padding: 24px;
  border-bottom: none;
  text-align: center;
}

.comparison-table tfoot td:first-child {
  text-align: left;
}


/* ============================================
   Add-Ons Strip
   ============================================ */
.addons-strip {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.addon-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #E8ECEF;
  border-radius: 60px;
  padding: 14px 28px 14px 18px;
  transition: all 0.3s ease;
}

.addon-pill:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.addon-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBF5FB, #D4E6F1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.addon-pill-text h4 {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.addon-pill-text span {
  font-size: 0.8rem;
  color: #1A5276;
  font-weight: 700;
}

.multi-day-banner {
  margin-top: 48px;
  background: linear-gradient(135deg, #EBF5FB, #D4E6F1);
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.multi-day-banner h3 {
  margin-bottom: 4px;
}

.multi-day-banner p {
  margin-bottom: 0;
  font-size: 0.925rem;
}

.discount-badges {
  display: flex;
  gap: 20px;
}

.discount-badge {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.discount-badge .pct {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1A5276;
  line-height: 1;
}

.discount-badge .pct-label {
  font-size: 0.75rem;
  color: #566573;
  font-weight: 500;
  margin-top: 4px;
}


/* ============================================
   Timeline - About Page
   ============================================ */
.timeline-section {
  padding: 96px 0;
}

.timeline {
  position: relative;
  max-width: 720px;
  margin: 56px auto 0;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #1A5276, #2980B9, #D4E6F1);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #1A5276;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #1A5276;
  z-index: 1;
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: #E74C3C;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}


/* ============================================
   Team - Overlapping Circles
   ============================================ */
.team-circles-section {
  padding: 96px 0;
  background: #F0F4F8;
}

.team-circles {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}

.team-circle-card {
  text-align: center;
  width: 260px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.team-circle-card:nth-child(2) {
  margin-left: -30px;
  margin-right: -30px;
  z-index: 2;
}

.team-circle-card:hover {
  z-index: 10;
  transform: translateY(-8px);
}

.team-circle-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A5276, #2980B9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  border: 5px solid #F0F4F8;
  box-shadow: 0 8px 24px rgba(26, 82, 118, 0.2);
  transition: all 0.3s ease;
}

.team-circle-card:hover .team-circle-avatar {
  box-shadow: 0 12px 32px rgba(26, 82, 118, 0.3);
  transform: scale(1.05);
}

.team-circle-card h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.team-circle-role {
  color: #E74C3C;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-circle-card p {
  font-size: 0.875rem;
  max-width: 220px;
  margin: 0 auto;
  color: #7F8C8D;
}


/* ============================================
   About Page - Full Width Image Banner
   ============================================ */
.about-banner {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #D4E6F1 0%, #EBF5FB 50%, #B0CBE0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7FB3D3;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.about-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #fff, transparent);
}


/* ============================================
   Contact Page - Split Layout
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}

.contact-info-panel {
  background: linear-gradient(160deg, #1A5276, #0d2f45);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(41,128,185,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-panel h1 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-info-panel > p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 380px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-info-item span,
.contact-info-item a {
  color: #fff;
  font-size: 1rem;
}

.contact-info-item a:hover {
  color: #E74C3C;
}

.contact-hours-mini {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-hours-mini h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.contact-hours-mini table {
  width: 100%;
  border-collapse: collapse;
}

.contact-hours-mini td {
  padding: 8px 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

.contact-hours-mini td:first-child {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  width: 120px;
}

.contact-hours-mini tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-hours-mini .season-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.contact-hours-mini .season-note strong {
  color: #E74C3C;
  display: inline;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.contact-form-panel {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.contact-form-panel h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.contact-form-panel > p {
  color: #7F8C8D;
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #D5DBDB;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  color: #2C3E50;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A5276;
  box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #D4E6F1, #EBF5FB);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7FB3D3;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  margin-top: 32px;
}


/* ============================================
   Minimal Footer
   ============================================ */
.footer-minimal {
  background-color: #1C2833;
  padding: 28px 0;
}

.footer-minimal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-minimal .nav-logo {
  color: #fff;
  font-size: 1rem;
}

.footer-minimal .nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-links-inline a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: #fff;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.footer-social-icons a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright p {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  margin-bottom: 0;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .hero-immersive h1 {
    font-size: 3rem;
  }

  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-block {
    flex: 0 0 calc(50% - 16px);
    margin-bottom: 16px;
  }

  .team-circle-card:nth-child(2) {
    margin-left: -20px;
    margin-right: -20px;
  }

  .comparison-table .pkg-price {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E8ECEF;
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 4px;
    display: none;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  /* Hero */
  .hero-immersive {
    min-height: auto;
    padding: 140px 0 60px;
  }

  .hero-immersive h1 {
    font-size: 2.25rem;
  }

  .hero-immersive .hero-desc {
    font-size: 1.05rem;
  }

  .booking-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .booking-bar-inner .btn {
    width: 100%;
  }

  .page-hero-full {
    padding: 120px 0 48px;
  }

  .page-hero-full h1 {
    font-size: 2rem;
  }

  /* Tabs */
  .tab-buttons {
    max-width: 100%;
  }

  .tab-content-card {
    grid-template-columns: 1fr;
  }

  .tab-card-visual {
    min-height: 200px;
  }

  .tab-card-info {
    padding: 32px 24px;
  }

  .tab-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .tab-card-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Features */
  .feature-row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .feature-row .feature-icon {
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonial-scroll-card {
    width: 300px;
  }

  /* Stats */
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  .stat-block {
    flex: 1 0 100%;
  }

  .stat-block .stat-number {
    font-size: 2.75rem;
  }

  /* Comparison table */
  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table thead th {
    padding: 16px 12px;
  }

  .comparison-table tbody td {
    padding: 12px;
  }

  .comparison-table .pkg-price {
    font-size: 1.1rem;
  }

  /* Add-ons */
  .addons-strip {
    flex-direction: column;
  }

  .multi-day-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  /* Timeline */
  .timeline {
    padding-left: 40px;
  }

  .timeline-dot {
    left: -32px;
  }

  /* Team */
  .team-circles {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .team-circle-card:nth-child(2) {
    margin-left: 0;
    margin-right: 0;
  }

  /* About banner */
  .about-banner {
    height: 240px;
  }

  /* Contact split */
  .contact-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-info-panel {
    padding: 48px 24px;
  }

  .contact-info-panel h1 {
    font-size: 2rem;
  }

  .contact-form-panel {
    padding: 48px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-minimal-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-links-inline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }

  .hero-immersive h1 {
    font-size: 1.85rem;
  }

  .booking-bar {
    padding: 0 16px;
  }

  .booking-bar-inner {
    padding: 16px;
  }

  .tab-btn {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .testimonial-scroll-card {
    width: 270px;
  }

  .team-circle-avatar {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }

  .contact-form-panel {
    padding: 32px 16px;
  }

  .contact-info-panel {
    padding: 40px 16px;
  }
}
