/* ============================================================
   SOLO SOUL EXPERIENCES — style.css
   Premium, responsive stylesheet
   ============================================================ */

/* ---- VARIABLES ------------------------------------------- */
:root {
  --sand:         #F5EFE6;
  --beige:        #E9DFC9;
  --sage:         #A8B8A5;
  --forest:       #2E5E4E;
  --forest-dark:  #1e3f34;
  --forest-light: #3d7a65;
  --charcoal:     #333333;
  --white:        #FFFFFF;
  --dark-bg:      #16213e;
  --glass:        rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.18);
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   all 0.3s ease;
}

/* Theme color overrides */
html[data-theme="dark"] {
  --sand:         #121e1a;
  --beige:        #1e2f29;
  --sage:         #8aa895;
  --forest:       #E6F0EC;
  --forest-dark:  #FFFFFF;
  --forest-light: #A8B8A5;
  --charcoal:     #E6F0EC;
  --white:        #1a2b25;
}
html[data-theme="autumn"] {
  --sand:         #F9F6F0;
  --beige:        #F0E5D8;
  --sage:         #E0A96D;
  --forest:       #5C3D2E;
  --forest-dark:  #3D251E;
  --forest-light: #865D4C;
  --charcoal:     #5C3D2E;
  --white:        #FFFFFF;
}
html[data-theme="ocean"] {
  --sand:         #F0F4F8;
  --beige:        #D9E2EC;
  --sage:         #F19066;
  --forest:       #2D4B73;
  --forest-dark:  #182A4A;
  --forest-light: #486581;
  --charcoal:     #2D4B73;
  --white:        #FFFFFF;
}

/* Accessibility: Font Size Overrides */
html.font-size-large {
  font-size: 18px !important;
}
html.font-size-xlarge {
  font-size: 20px !important;
}

/* Accessibility: Reduced Motion Override */
body.reduced-motion *,
body.reduced-motion *::before,
body.reduced-motion *::after {
  animation-duration: 0.001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001s !important;
  scroll-behavior: auto !important;
}


/* ---- RESET ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--sand);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; }
input, textarea, select { font-family: 'Poppins', sans-serif; }
.br-desktop { display: inline; }

/* ---- UTILITIES ------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-padding { padding: 110px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  color: var(--forest);
}
.section-subtitle {
  font-size: 17px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- KEYFRAMES ------------------------------------------- */
@keyframes preloaderFill {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50%       { transform: translateY(-28px) rotate(15deg); opacity: 0.9; }
}
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.6; }
}
@keyframes shimmer {
  from { left: -120%; }
  to   { left: 120%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
}
.btn:hover::after { animation: shimmer 0.5s ease forwards; }
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,94,78,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  flex-shrink: 0;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--forest);
}
.btn-hero-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  font-size: 15px;
  padding: 17px 36px;
  box-shadow: 0 8px 32px rgba(46,94,78,0.5);
}
.btn-hero-primary:hover {
  background: var(--forest-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(46,94,78,0.55);
}
.btn-hero-secondary {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  font-size: 15px;
  padding: 17px 36px;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}
.btn-hero-ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.28);
  font-size: 15px;
  padding: 17px 28px;
}
.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ---- PRELOADER ------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--forest);
  animation: spin 3s linear infinite;
  line-height: 1;
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--charcoal);
  letter-spacing: 2px;
}
.preloader-tagline {
  font-size: 12px;
  color: var(--sage);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--beige);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 8px;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sage), var(--forest));
  border-radius: 99px;
  animation: preloaderFill 1.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* ---- NAVBAR ---------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(30,63,52,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.logo-symbol {
  color: var(--sage);
  font-size: 22px;
  line-height: 1;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 22px;
  font-size: 13px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 1003;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU ----------------------------------------- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(340px, 88vw);
  background: var(--forest-dark);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px;
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.2); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav-link {
  display: block;
  padding: 16px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}
.mobile-nav-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding-left: 38px;
}
.mobile-nav-btn {
  display: block;
  margin: 28px 24px 0;
  text-align: center;
}

/* ---- HERO ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
/* Mobile fix: ensure hero works on all viewport heights */
@supports (height: 100dvh) {
  .hero { min-height: 100dvh; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(30,63,52,0.82) 0%,
    rgba(22,33,62,0.60) 60%,
    rgba(0,0,0,0.40) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* 90px = navbar height + breathing room */
  padding: 150px 24px 100px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-headline em {
  font-style: italic;
  color: var(--sage);
}
.hero-subline {
  font-size: clamp(15px, 1.8vw, 19px);
  opacity: 0.88;
  max-width: 640px;
  margin: 0 auto 16px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2.2vw, 24px);
  font-style: italic;
  color: var(--sage);
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  animation: fadeUp 0.9s 0.5s ease both;
  padding-bottom: 16px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.hero-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.25);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--sage);
  margin-left: 2px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 6px;
  color: rgba(255,255,255,0.85);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  z-index: 2;
  animation: bounceArrow 2.2s ease-in-out infinite;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
/* Particles */
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle {
  position: absolute;
  color: rgba(168,184,165,0.45);
  animation: floatParticle linear infinite;
}
.p1 { top: 20%; left: 10%; font-size: 18px; animation-duration: 6s; }
.p2 { top: 60%; left: 80%; font-size: 12px; animation-duration: 8s; animation-delay: 1s; }
.p3 { top: 35%; right: 15%; font-size: 22px; animation-duration: 7s; animation-delay: 2s; }
.p4 { top: 75%; left: 20%; font-size: 14px; animation-duration: 9s; animation-delay: 0.5s; }

/* ---- ABOUT ----------------------------------------------- */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--sage), var(--forest));
  z-index: -1;
}
.about-img-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  white-space: nowrap;
}
.about-content {}
.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 20px;
  line-height: 1.5;
}
.about-body {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-pillars {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sand);
  border: 1px solid var(--beige);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  flex: 1;
  min-width: 120px;
  transition: var(--transition);
}
.pillar:hover {
  background: var(--beige);
  transform: translateY(-3px);
}
.pillar-icon { font-size: 24px; }
.pillar-text { display: flex; flex-direction: column; gap: 1px; }
.pillar-text strong { font-size: 13px; color: var(--forest); }
.pillar-text span { font-size: 11px; color: #888; }

/* ---- WHY SOLO -------------------------------------------- */
.why-solo {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.why-solo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.why-solo .section-eyebrow { color: var(--sage); }
.why-solo .section-title { color: var(--white); }
.why-solo .section-title em { color: var(--sage); }
.why-solo .section-subtitle { color: rgba(255,255,255,0.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  text-align: center;
  color: var(--white);
  transition: all 0.4s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  border-color: rgba(168,184,165,0.4);
}
.why-card.featured {
  background: rgba(168,184,165,0.14);
  border-color: rgba(168,184,165,0.3);
}
.why-icon-wrap {
  width: 84px; height: 84px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: rgba(255,255,255,0.18);
  transform: scale(1.1);
}
.why-icon { font-size: 36px; }
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}
.why-card p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.8;
  margin-bottom: 28px;
}
.why-learn-more {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
  transition: gap 0.3s;
}
.why-learn-more:hover { gap: 14px; }

/* ---- EXPERIENCES ----------------------------------------- */
.experiences { background: var(--sand); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.exp-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.exp-img-wrap {
  position: relative;
  overflow: hidden;
  height: 230px;
}
.exp-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-img-wrap img { transform: scale(1.1); }
.exp-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}
.new-badge { background: var(--sage); }
.luxury-badge { background: linear-gradient(135deg, #b8860b, #d4a017); }
.exp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,94,78,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.exp-card:hover .exp-overlay { opacity: 1; }
.exp-cta {
  background: var(--white);
  color: var(--forest);
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  transform: translateY(8px);
  transition: all 0.35s ease;
}
.exp-card:hover .exp-cta { transform: translateY(0); }
.exp-cta:hover {
  background: var(--forest);
  color: var(--white);
}
.exp-body { padding: 22px 24px; }
.exp-category {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.exp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.exp-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}
.exp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--beige);
  padding-top: 16px;
}
.exp-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
}
.exp-duration {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- EVENTS ---------------------------------------------- */
.events { background: var(--dark-bg); }
.events .section-eyebrow { color: var(--sage); }
.events .section-title { color: var(--white); }
.events .section-title em { color: var(--sage); }
.events .section-subtitle { color: rgba(255,255,255,0.65); }
.event-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.13);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.events-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  overflow-x: auto;
}
.events-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.events-table thead tr {
  background: rgba(168,184,165,0.16);
}
.events-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}
.events-table td {
  padding: 16px 20px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  vertical-align: middle;
}
.events-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
  transition: background 0.2s;
}
.events-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.04); }
.events-table tbody tr:hover { background: rgba(255,255,255,0.08); }
.events-table tbody tr.hidden { display: none; }
.event-name { font-weight: 600; color: var(--white); }
.event-cat-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  margin-left: 8px;
  background: rgba(168,184,165,0.2);
  color: var(--sage);
}
.event-price { color: var(--sage); font-weight: 700; font-size: 15px; }
.spots-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.spots-low  { background: rgba(231,76,60,0.18);  color: #e74c3c; }
.spots-mid  { background: rgba(230,126,34,0.18); color: #e67e22; }
.spots-ok   { background: rgba(46,94,78,0.25);   color: #52be95; }
.book-event-btn {
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.book-event-btn:hover {
  background: var(--forest-light);
  transform: scale(1.04);
}
/* Durban events banner */
.durban-events-banner {
  margin-top: 60px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
}
.durban-banner-content {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.durban-banner-icon {
  font-size: 48px;
  flex-shrink: 0;
}
.durban-banner-content > div { flex: 1; min-width: 200px; }
.durban-banner-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 8px;
}
.durban-banner-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
/* City event cards */
.city-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.city-event-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.3s;
}
.city-event-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
  border-color: rgba(168,184,165,0.3);
}
.city-event-icon { font-size: 32px; margin-bottom: 12px; }
.city-event-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}
.city-event-card .ced { font-size: 13px; color: var(--sage); margin-bottom: 4px; }
.city-event-card .cev { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.city-event-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  transition: gap 0.2s;
}
.city-event-link:hover { gap: 10px; }

/* ---- TESTIMONIALS ---------------------------------------- */
.testimonials { background: var(--sage); overflow: hidden; }
.testimonials .section-title { color: var(--forest-dark); }
.testimonials .section-title em { color: var(--forest-dark); font-style: italic; }
.testimonials .section-eyebrow { color: var(--forest); }
.testimonials-track-wrap { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  flex-shrink: 0;
  width: calc(33.333% - 19px);
  box-shadow: var(--shadow-md);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--sage);
  opacity: 0.35;
  position: absolute;
  top: 12px; left: 30px;
  line-height: 1;
}
.testimonial-stars {
  color: #f0a500;
  font-size: 17px;
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--charcoal); }
.testimonial-author span  { font-size: 12px; color: #888; }
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.testi-btn {
  width: 46px; height: 46px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  color: var(--forest);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s;
}
.testi-btn:hover {
  background: var(--forest);
  color: var(--white);
  transform: scale(1.08);
}
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(46,94,78,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.testi-dot.active {
  background: var(--forest);
  transform: scale(1.4);
}

/* ---- GALLERY --------------------------------------------- */
.gallery { background: var(--beige); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}
.g-large { grid-column: span 2; }
.g-tall  { grid-row:    span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(46,94,78,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 26px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ---- BLOG ------------------------------------------------ */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--beige);
  cursor: pointer;
  transition: all 0.35s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.featured-blog { grid-column: span 2; }
.blog-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.featured-blog .blog-img { height: 280px; }
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-category-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--sage);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
}
.blog-category-badge.adventure { background: var(--forest); }
.blog-category-badge.mindful   { background: #7a9e7e; }
.blog-category-badge.healing   { background: #c07a45; }
.blog-body { padding: 24px; }
.blog-meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.blog-card:hover .blog-read-more { gap: 12px; }

/* ---- FOUNDER --------------------------------------------- */
.founder { background: var(--sand); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-image-wrap { position: relative; }
.founder-img-frame {
  width: 420px;
  height: 500px;
  position: relative;
  margin: 0 auto;
}
.founder-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.founder-img-frame::after {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--sage);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.founder-quote-bubble {
  position: absolute;
  bottom: -28px;
  right: -20px;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  max-width: 230px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.founder-quote-bubble p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.founder-quote-bubble span {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
}
.founder-story {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 18px;
}
.founder-mission {
  background: var(--beige);
  border-left: 4px solid var(--forest);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin-top: 8px;
}
.founder-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.founder-social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
}
.founder-social-btn:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---- FAQ ------------------------------------------------- */
.faq { background: var(--white); }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.faq-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--forest);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--forest);
  color: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* ---- NEWSLETTER ------------------------------------------ */
.newsletter {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 60%, #0d2920 100%);
}
.newsletter-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/g%3E%3C/svg%3E");
}
.newsletter-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-icon {
  font-size: 52px;
  margin-bottom: 24px;
  display: block;
}
.newsletter-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
  line-height: 1.2;
}
.newsletter-content h2 em {
  font-style: italic;
  color: var(--sage);
}
.newsletter-content > p {
  font-size: 16px;
  opacity: 0.82;
  margin-bottom: 44px;
  line-height: 1.7;
}
.newsletter-form { width: 100%; }
.newsletter-input-wrap {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.newsletter-input {
  flex: 1;
  padding: 18px 28px;
  border: none;
  background: var(--white);
  color: var(--charcoal);
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.newsletter-btn {
  background: var(--sage);
  color: var(--white);
  border: none;
  padding: 18px 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-btn:hover { background: var(--forest-light); }
.newsletter-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--sage);
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
  animation: slideDown 0.4s ease;
}
.newsletter-success.show { display: flex; }
.newsletter-disclaimer {
  font-size: 12px;
  opacity: 0.55;
  margin-top: 14px;
}

/* ---- CONTACT --------------------------------------------- */
.contact { background: var(--beige); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 13px; color: var(--charcoal); margin-bottom: 4px; font-weight: 600; }
.contact-item span, .contact-item a {
  font-size: 15px;
  color: #666;
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--forest); }
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.social-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
}
.social-link:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  transform: translateY(-3px);
}
.social-link.whatsapp:hover { background: #25d366; border-color: #25d366; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
}
.form-group textarea { resize: vertical; }
.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
}
.contact-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 500;
}
.contact-success.show { display: flex; }

/* ---- FOOTER ---------------------------------------------- */
.footer { background: #0f1924; }
.footer-top { padding: 90px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.footer-logo .logo-symbol { color: var(--sage); font-size: 20px; }
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-nav h4, .footer-contact h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-nav ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-nav li a:hover { color: var(--sage); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-contact li i { color: var(--sage); font-size: 13px; width: 16px; }
.footer-contact li a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact li a:hover { color: var(--sage); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--sage); }
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--sage) !important;
  font-size: 14px !important;
}

/* ---- MODALS ---------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  overflow-y: auto;
  max-height: 90vh;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.modal-overlay.active .modal {
  transform: scale(1);
}
.booking-modal {
  width: 100%;
  max-width: 600px;
  padding: 48px 44px 48px;
}
.modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.modal-icon {
  font-size: 36px;
  color: var(--sage);
  margin-bottom: 14px;
}
.modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--forest);
  margin-bottom: 8px;
}
.modal-header p { font-size: 15px; color: #777; }
.modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: var(--sand);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1;
}
.modal-close:hover { background: var(--beige); color: var(--charcoal); }
.booking-payment-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--sand);
  border: 1px solid var(--beige);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
  line-height: 1.5;
}
.booking-payment-note i { color: var(--forest); flex-shrink: 0; }
.booking-submit {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 15px;
}
.booking-success, .contact-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
}
.booking-success.show, .contact-success.show { display: flex; }

/* Blog modal */
.blog-modal {
  width: 100%;
  max-width: 800px;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.blog-modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.blog-modal-body {
  padding: 40px 48px 60px;
}
.blog-modal-cat {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.blog-modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-modal-meta {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 28px;
}
.blog-modal-body p {
  font-size: 16px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.blog-modal-body blockquote {
  border-left: 4px solid var(--sage);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--forest);
  font-size: 17px;
  line-height: 1.6;
}

/* ---- LIGHTBOX -------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
#lightbox-img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}
.lightbox.active #lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---- SCROLL TO TOP --------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 500;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  background: var(--forest-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(46,94,78,0.4);
}

/* ---- MOBILE RESPONSIVENESS ------------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .about-grid { gap: 48px; }
  .founder-grid { gap: 48px; }
  .founder-img-frame { width: 360px; height: 440px; }
}

@media (max-width: 900px) {
  .exp-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: 1fr 1fr; gap: 20px; }
  .city-events-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { width: calc(50% - 14px); }
}

@media (max-width: 768px) {
  /* Global */
  .section-padding { padding: 72px 0; }
  .section-title { font-size: 28px; }
  .br-desktop { display: none; }

  /* Nav */
  .nav-menu { display: none; }
  .nav-cta  { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 28px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame img { height: 300px; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .about-pillars { flex-direction: column; }

  /* Why Solo */
  .why-grid { grid-template-columns: 1fr; }

  /* Experiences */
  .exp-grid { grid-template-columns: 1fr; }

  /* Events */
  .events-table th:nth-child(3),
  .events-table td:nth-child(3),
  .events-table th:nth-child(4),
  .events-table td:nth-child(4) { display: none; }
  .city-events-grid { grid-template-columns: 1fr; }
  .durban-banner-content { flex-direction: column; text-align: center; }

  /* Testimonials */
  .testimonial-card { width: 88vw; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-large { grid-column: span 2; }
  .g-tall  { grid-row: span 1; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .featured-blog { grid-column: span 1; }
  .featured-blog .blog-img { height: 220px; }

  /* Founder */
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-img-frame { width: 100%; max-width: 340px; height: 380px; }
  .founder-quote-bubble { right: 0; bottom: -20px; }
  .founder-image-wrap { display: flex; flex-direction: column; align-items: center; padding-bottom: 40px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Modals */
  .booking-modal { padding: 36px 24px 28px; }
  .blog-modal-body { padding: 28px 24px; }
  .blog-modal-body h2 { font-size: 22px; }
  .modal { max-height: 95vh; }

  /* Misc */
  .scroll-top-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
  .newsletter-input-wrap { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-input { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .newsletter-btn { border-radius: 0 0 var(--radius-md) var(--radius-md); justify-content: center; }
  .event-filters { gap: 8px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }
}

/* ============================================================
   UPGRADES: GUEST PORTAL, TICKETS & PAYFAST STYLES
   ============================================================ */

/* Navbar Portal Icon */
.portal-nav-item i {
  margin-right: 6px;
  font-size: 14px;
}

/* Auth Modal (Login / Register) */
.auth-modal {
  width: 100%;
  max-width: 460px;
  padding: 40px 30px;
}
.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--beige);
  margin-bottom: 25px;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #888;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.auth-tab.active {
  color: var(--forest);
}
.auth-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--forest);
}
.auth-form-container {
  display: none;
}
.auth-form-container.active {
  display: block;
  animation: slideDown 0.35s ease;
}
.auth-error {
  color: #e74c3c;
  font-size: 13px;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 500;
}
.auth-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

/* Guest Portal Dashboard Modal */
.portal-modal {
  width: 100%;
  max-width: 750px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.portal-header {
  background: var(--forest);
  color: var(--white);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.portal-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.portal-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--forest-dark);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-user-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.2;
}
.portal-user-info p {
  font-size: 12.5px;
  opacity: 0.85;
}
.portal-logout-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 8px 16px;
  font-size: 12.5px;
}
.portal-logout-btn:hover {
  background: var(--white);
  color: var(--forest);
}
.portal-body {
  padding: 30px;
  background: var(--sand);
  flex-grow: 1;
  overflow-y: auto;
  min-height: 380px;
}
.portal-tabs {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 10px;
}
.portal-tabs h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--forest-dark);
  display: inline-block;
  position: relative;
}
.portal-tabs h4.active::after {
  content: '';
  position: absolute;
  bottom: -11px; left: 0; right: 0;
  height: 3px;
  background: var(--sage);
}

/* Bookings list grid */
.bookings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.booking-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige);
  overflow: hidden;
  transition: var(--transition);
}
.booking-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.booking-card-header {
  padding: 16px 20px;
  background: #fdfcf7;
  border-bottom: 1px solid var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.booking-card-header h5 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--charcoal);
  font-weight: 700;
}
.booking-status {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 30px;
}
.booking-status.paid {
  background: rgba(39,174,96,0.12);
  color: #27ae60;
  border: 1px solid rgba(39,174,96,0.25);
}
.booking-status.unpaid {
  background: rgba(230,126,34,0.12);
  color: #e67e22;
  border: 1px solid rgba(230,126,34,0.25);
}
.booking-status.free {
  background: rgba(41,128,185,0.12);
  color: #2980b9;
  border: 1px solid rgba(41,128,185,0.25);
}
.booking-card-body {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.booking-details-list {
  font-size: 13.5px;
  color: #555;
}
.booking-details-list p {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.booking-details-list i {
  color: var(--sage);
  width: 14px;
}
.booking-actions {
  display: flex;
  gap: 10px;
}
.btn-ticket {
  background: var(--forest);
  color: var(--white);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
}
.btn-ticket:hover {
  background: var(--forest-dark);
}
.btn-cancel {
  background: transparent;
  color: #c0392b;
  border: 1px solid rgba(192,57,43,0.3);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cancel:hover {
  background: #c0392b;
  color: var(--white);
  border-color: #c0392b;
}

.portal-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #777;
}
.portal-empty-state i {
  font-size: 45px;
  color: var(--beige);
  margin-bottom: 15px;
}
.portal-empty-state h5 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

/* Digital Ticket Modal Styles */
.ticket-modal {
  width: 100%;
  max-width: 450px;
  padding: 30px 20px;
  background: var(--sand);
}
.ticket-container {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--beige);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.ticket-header {
  background: var(--forest);
  color: var(--white);
  padding: 16px 20px;
  text-align: center;
  position: relative;
}
.ticket-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  letter-spacing: 1px;
}
.ticket-header p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}
.ticket-body {
  padding: 24px;
  position: relative;
}
.ticket-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest-dark);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.ticket-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 13px;
  border-bottom: 1px dashed var(--beige);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.ticket-info-item span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.ticket-info-item strong {
  color: var(--charcoal);
}
.ticket-venue {
  font-size: 13px;
  margin-bottom: 15px;
}
.ticket-venue span {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}
.ticket-footer-msg {
  font-size: 11.5px;
  color: #666;
  text-align: center;
  font-style: italic;
}
.ticket-perforation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: var(--white);
  padding: 0 10px;
}
.ticket-notch {
  width: 16px; height: 16px;
  background: var(--sand);
  border-radius: 50%;
  border: 2px solid var(--beige);
  position: absolute;
  top: -8px;
}
.ticket-notch.left {
  left: -9px;
  border-left: none;
}
.ticket-notch.right {
  right: -9px;
  border-right: none;
}
.ticket-perforation-line {
  flex-grow: 1;
  height: 0;
  border-bottom: 2px dashed var(--beige);
}
.ticket-barcode-section {
  background: #fafafa;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.ticket-barcode {
  width: 220px;
  height: 50px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-between;
}
.barcode-line {
  background: #222;
  height: 100%;
}
.ticket-ref {
  font-family: monospace;
  font-size: 13px;
  font-weight: bold;
  color: var(--forest);
  letter-spacing: 2px;
}

/* PayFast Checkout Simulator Modals */
@keyframes pfSlideUp {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.payfast-modal {
  width: 100%;
  max-width: 780px;
  padding: 0;
  background: #fcfcfc;
  border: none;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  animation: pfSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.payfast-header {
  background: linear-gradient(135deg, #d31320, #ea1d2c); /* Premium Payfast gradient red */
  color: var(--white);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payfast-lock {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.payfast-lock i {
  color: #fff;
  font-size: 13px;
  animation: pulse 2s infinite ease-in-out;
}
.payfast-cancel-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}
.payfast-cancel-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.payfast-body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 400px;
}
.payfast-order-summary {
  background: #f7f7f7;
  border-right: 1px solid #e1e1e1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
}
.payfast-merchant {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payfast-logo {
  width: 42px; height: 42px;
  border-radius: 6px;
}
.payfast-merchant h4 {
  font-size: 15px;
  color: #333;
  font-weight: 700;
}
.payfast-merchant p {
  font-size: 12px;
  color: #666;
}
.payfast-order-summary hr {
  border: none;
  border-bottom: 1px solid #e1e1e1;
  margin: 20px 0;
}
.payfast-item-details h5 {
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 700;
}
.payfast-item-details p {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.payfast-amount-box {
  margin-top: auto;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payfast-amount-box span {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}
.payfast-amount-box strong {
  font-size: 20px;
  color: #333;
}
.payfast-payment-methods {
  padding: 30px;
}
.payfast-payment-methods h5 {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}
.payfast-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}
.pf-tab {
  flex: 1;
  padding: 12px;
  border: 1.5px solid #e2e8f0;
  background: #fafafa;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pf-tab i {
  margin-right: 6px;
  font-size: 14px;
}
.pf-tab:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  transform: translateY(-1px);
}
.pf-tab.active {
  background: rgba(234, 29, 44, 0.04) !important;
  border-color: #ea1d2c !important;
  color: #ea1d2c !important;
  box-shadow: 0 4px 12px rgba(234, 29, 44, 0.08);
}
.pf-method-content {
  display: none;
}
.pf-method-content.active {
  display: block;
}
.pf-input-wrapper {
  position: relative;
}
.pf-input-wrapper input {
  padding-right: 40px;
}
#pf-card-icon {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #94a3b8;
  transition: color 0.2s;
}
#payfast-card-form .form-group {
  margin-bottom: 16px;
}
#payfast-card-form label {
  font-size: 11px;
  text-transform: uppercase;
  color: #4a5568;
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.5px;
}
#payfast-card-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14.5px;
  outline: none;
  background: var(--white);
  color: var(--charcoal);
  transition: all 0.25s ease;
  font-family: inherit;
}
#payfast-card-form input::placeholder {
  color: #a0aec0;
}
#payfast-card-form input:focus {
  border-color: #ea1d2c;
  box-shadow: 0 0 0 3.5px rgba(234, 29, 44, 0.12);
}
.btn-payfast {
  width: 100%;
  background: linear-gradient(135deg, #d31320, #ea1d2c);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(234, 29, 44, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-payfast:hover {
  background: linear-gradient(135deg, #b20f18, #d31320);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 29, 44, 0.35);
}
.btn-payfast:active {
  transform: translateY(0);
}

/* EFT view banks */
.eft-bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bank-btn {
  padding: 14px 10px;
  border: 1px solid #e1e1e1;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
  transition: all 0.2s;
}
.bank-btn:hover {
  border-color: #ea1d2c;
  color: #ea1d2c;
  background: rgba(234,29,44,0.02);
}

/* Loader / 3D Secure / Success screens */
.payfast-loading-view,
.payfast-otp-view,
.payfast-success-view {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 30px;
  min-height: 400px;
}
.pf-spinner {
  width: 50px; height: 50px;
  border: 4px solid #f0f0f0;
  border-top-color: #ea1d2c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 25px;
}
.payfast-loading-view h4 {
  font-size: 17px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}
.payfast-loading-view p {
  font-size: 13px;
  color: #666;
}

/* OTP Popup View styling */
.payfast-otp-view {
  background: #fdfdfd;
}
.otp-header {
  border-bottom: 2px solid #ea1d2c;
  width: 100%;
  max-width: 380px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.otp-body {
  width: 100%;
  max-width: 380px;
  text-align: left;
}
.otp-body p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* Payment Success View */
.payfast-success-view {
  background: #fff;
}
.pf-success-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #27ae60;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(39,174,96,0.25);
}
.payfast-success-view h3 {
  font-size: 21px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
}
.payfast-success-view p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* PayFast screen responsiveness */
@media (max-width: 680px) {
  .payfast-body {
    grid-template-columns: 1fr;
  }
  .payfast-order-summary {
    border-right: none;
    border-bottom: 1px solid #e1e1e1;
    padding: 20px;
  }
  .payfast-payment-methods {
    padding: 20px;
  }
}

/* Durban Ticketing Portal Grid Styling */
.portal-card {
  transition: all 0.3s ease !important;
}
.portal-card:hover {
  transform: translateY(-5px);
  border-color: var(--forest) !important;
  background: #EAE3D2 !important; /* Slightly darker sand accent */
  box-shadow: 0 10px 25px rgba(46, 94, 78, 0.08) !important;
}

/* Interest Matching Star Badge */
.pref-match-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #b28500;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 2px 6px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

/* WhatsApp Channel Button Hover */
.btn-whatsapp-join:hover {
  background: #128C7E !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

/* Close Buttons Overlap Overrides */
.auth-modal {
  padding-top: 65px !important;
}

.portal-modal .modal-close {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  top: 30px !important;
  right: 25px !important;
  z-index: 10;
}
.portal-modal .modal-close:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  color: var(--white) !important;
}
.portal-header {
  padding-right: 85px !important;
}

/* ============================================================
   COMPREHENSIVE MOBILE FIXES - 2026-07-16
   ============================================================ */

/* Mobile viewport fix for dynamic height (iOS Safari address bar) */
@supports (height: 100dvh) {
  .hero, .hero { min-height: 100dvh; }
  .newsletter { min-height: 100dvh; }
}

/* Base mobile adjustments */
@media (max-width: 768px) {
  /* Ensure all elements fit within viewport */
  .container { padding: 0 16px; }
  .section-padding { padding: 60px 0; }

  /* Hero section mobile fixes */
  .hero-content { padding: 80px 16px 50px; }
  .hero-headline {
    font-size: clamp(28px, 8vw, 42px) !important;
    line-height: 1.15;
  }
  .hero-subline { font-size: 15px; margin-bottom: 14px; }
  .hero-tagline { font-size: 15px; margin-bottom: 32px; }
  .hero-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
  .hero-stats { gap: 16px 24px; }
  .stat-num { font-size: 26px; }

  /* About section */
  .about-img-frame img { height: 260px; }
  .about-lead { font-size: 18px; }
  .about-body { font-size: 15px; }

  /* Experience cards */
  .exp-img-wrap { height: 180px; }

  /* Testimonials */
  .testimonial-card {
    width: 90vw;
    padding: 32px 20px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
    gap: 10px;
  }
  .g-large { grid-column: span 1; }
  .g-tall { grid-row: span 1; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .featured-blog .blog-img { height: 200px; }

  /* Founder */
  .founder-img-frame {
    width: 100%;
    max-width: 300px;
    height: 360px;
    margin: 0 auto;
  }
  .founder-quote-bubble {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  /* Contact */
  .contact-form-wrap { padding: 24px 16px; }
  .contact-item { margin-bottom: 24px; }
  .contact-icon {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  /* Footer */
  .footer-top { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Small mobile adjustments (max-width: 480px) */
@media (max-width: 480px) {
  /* Ensure minimum touch target sizes */
  .btn, button, .nav-link, .mobile-nav-link {
    min-height: 44px;
    min-width: 44px;
  }

  /* Typography adjustments */
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 15px; padding: 0 16px; }

  /* Hero */
  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
  }
  .hero-stats { flex-direction: column; gap: 12px; }

  /* Forms */
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  .form-row { grid-template-columns: 1fr; gap: 16px; }

  /* Modals */
  .modal { max-height: 95vh; }
  .booking-modal { padding: 28px 16px 20px; }
  .modal-header h3 { font-size: 22px; }

  /* Experience cards mobile */
  .exp-grid { gap: 20px; }
  .exp-img-wrap { height: 160px; }

  /* Newsletter mobile */
  .newsletter { padding: 70px 0; }
  .newsletter-icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  /* Lightbox */
  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Extra small mobile (max-width: 360px) */
@media (max-width: 360px) {
  .hero-content { padding: 70px 12px 40px; }
  .hero-actions { gap: 10px; }
  .btn { padding: 12px 16px; font-size: 13px; }
  .section-padding { padding: 50px 0; }
  .gallery-grid { grid-auto-rows: 110px; gap: 8px; }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  .why-card:hover,
  .exp-card:hover,
  .blog-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  /* Remove unnecessary animations for performance */
  .hero-particles { display: none; }

  /* Ensure tap targets are adequate */
  .social-link, .founder-social-btn {
    width: 48px;
    height: 48px;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero { min-height: 100vh; }
  .hero-content { padding: 60px 20px 30px; }
  .hero-stats { gap: 20px; }
}

/* Mobile table optimization */
@media (max-width: 768px) {
  .events-table th:nth-child(3),
  .events-table td:nth-child(3),
  .events-table th:nth-child(4),
  .events-table td:nth-child(4) {
    display: none;
  }

  .events-table {
    min-width: 400px;
  }

  .events-table th,
  .events-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Mobile form optimizations */
@media (max-width: 768px) {
  .form-group { margin-bottom: 18px; }
  .contact-submit,
  .booking-submit,
  .auth-submit {
    padding: 15px;
    font-size: 15px;
  }

  /* Prevent iOS from zooming on form focus */
  input, textarea, select {
    font-size: 16px !important;
  }
}

/* Mobile modal improvements */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 10px;
    align-items: flex-end;
  }

  .modal {
    border-radius: 16px 16px 0 0;
    max-height: 95vh;
  }

  .booking-modal {
    border-radius: 16px 16px 0 0;
  }
}

/* Mobile PayFast modal */
@media (max-width: 680px) {
  .payfast-modal {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
  }

  .payfast-body {
    min-height: auto;
  }

  .eft-bank-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bank-btn {
    padding: 12px 8px;
    font-size: 11px;
  }
}

/* Mobile portal modal */
@media (max-width: 768px) {
  .portal-modal {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    height: 90vh;
  }

  .portal-body {
    padding: 20px 16px;
    min-height: auto;
  }

  .portal-header {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
    padding-right: 20px !important;
  }

  .portal-logout-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    max-width: none;
  }

  .mobile-nav-link {
    padding: 18px 24px;
    font-size: 17px;
  }

  .mobile-nav-btn {
    margin: 24px 20px 0;
    padding: 14px 20px;
  }
}

/* Prevent content overflow on mobile */
@media (max-width: 768px) {
  .hero-stat-divider {
    display: none;
  }

  .about-pillars {
    flex-direction: column;
    gap: 12px;
  }

  .pillar {
    min-width: auto;
  }
}




