*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cyan: #00a5a5;
  --blue: #007373;
  --white: #333333;
  --dark: #f8f9fa;
  --card-bg: #ffffff;
  --px: 20px;
}

html { scroll-behavior: smooth; }

/* Display Helpers */
.desktop-only { display: block; }
.mobile-only { display: none !important; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: flex !important; }
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cyan);
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--cyan); }
.logo small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8px;
  letter-spacing: 4px;
  font-weight: 600;
  color: rgba(0,0,0,0.4);
  margin-top: 1px;
}

.nav-links {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  flex-direction: column;
  padding: 24px var(--px);
  gap: 24px;
  display: none;
}
.nav-links.nav-open {
  display: flex;
}
.nav-links a {
  color: rgba(0,0,0,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-call {
  display: none;
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-book {
  background: var(--cyan);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--px) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 30%, rgba(0,212,255,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0,85,255,0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(240,242,245,0.9) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-map-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}
.animated-road {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.road-dash {
  animation: dash-scroll 2s linear infinite;
}
@keyframes dash-scroll {
  from { stroke-dashoffset: 48; }
  to { stroke-dashoffset: 0; }
}
.waypoint {
  animation: pulse-glow 2s infinite alternate;
}
@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(0,212,255,0.4)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(0,212,255,0.8)); }
}
/* Bus fills top of hero */
.hero-bus-wrap {
  position: absolute;
  top: 12%;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-bus-wrap svg {
  width: 140%;
  max-width: 600px;
  filter: drop-shadow(0 0 40px rgba(0,212,255,0.18));
  animation: bus-hover 4s ease-in-out infinite;
}
@keyframes bus-hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.bus-glow-floor {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.22) 0%, rgba(0,85,255,0.1) 40%, transparent 70%);
  filter: blur(20px);
  animation: bus-shadow 4s ease-in-out infinite;
}
@keyframes bus-shadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.4; }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 165, 165, 0.05);
  border: 1px solid rgba(0, 165, 165, 0.15);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.8;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.9;
  margin-bottom: 16px;
}
.hero-title .t1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 6vw, 42px);
  color: #0f172a;
  display: block;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.hero-title .t2 {
  font-size: clamp(72px, 22vw, 130px);
  background: linear-gradient(90deg, #007373 0%, #20c9c9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  letter-spacing: 2px;
}
.hero-title .t3 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(36px, 11vw, 64px);
  letter-spacing: 2px;
  margin-top: -10px;
}
.t3 .to { 
  color: #64748b; 
  font-size: clamp(22px, 6vw, 38px); 
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  text-transform: lowercase;
  font-style: italic;
}
.t3 .dest {
  background: linear-gradient(135deg, #00a5a5 0%, #007373 100%);
  color: #ffffff;
  padding: 8px 30px 12px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 15px 35px rgba(0, 165, 165, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 4px;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 12px;
}
.btn-primary {
  flex: 1;
  background: var(--cyan);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 165, 165, 0.25);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 165, 165, 0.35);
}
.btn-outline {
  flex: 1;
  background: transparent;
  color: #334155;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #334155;
  background: rgba(51, 65, 85, 0.05);
  transform: translateY(-2px);
}

/* ── STATS ── */
.stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(0,0,0,0.02);
}
.stat {
  padding: 20px var(--px);
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--cyan);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-top: 4px;
}

/* ── SECTION STYLES ── */
.section-wrapper {
  padding: 80px var(--px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-header {
  padding: 120px var(--px) 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(240,242,245,0.8) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.section-label.center { justify-content: center; }
.section-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
  white-space: nowrap;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.07);
}
.section-label.center::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,0.07);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 10vw, 56px);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}
.section-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,0.5);
  font-weight: 500;
  max-width: 600px;
}
.section-desc.center { margin: 0 auto; }

/* Dest Grid */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
.dest-card-box {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}
.dest-card-box:hover { transform: translateY(-5px); border-color: rgba(0,212,255,0.2); }
.dest-img {
  height: 200px;
  background: #e9ecef; 
  background-size: cover;
  background-position: center;
  position: relative;
}
.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.9));
}
.dest-img.ooty { background-image: url('https://images.unsplash.com/photo-1589197331516-4d84b72aa7dc?q=80&w=600&auto=format&fit=crop'); }
.dest-img.wayanad { background-image: url('https://images.unsplash.com/photo-1594892437255-7201c107e324?q=80&w=600&auto=format&fit=crop'); }
.dest-img.munnar { background-image: url('https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?q=80&w=600&auto=format&fit=crop'); }
.dest-img.varkala { background-image: url('https://images.unsplash.com/photo-1614088924967-df5b871c849e?q=80&w=600&auto=format&fit=crop'); }
.dest-img.alleppey { background-image: url('https://images.unsplash.com/photo-1593693397690-362cb9666fc2?q=80&w=600&auto=format&fit=crop'); }
.dest-img.thekkady { background-image: url('https://images.unsplash.com/photo-1592631589178-00d3d5f50ef7?q=80&w=600&auto=format&fit=crop'); }

.dest-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dest-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.dest-body p {
  font-size: 12px;
  color: rgba(0,0,0,0.4);
  font-weight: 600;
  margin-bottom: 20px;
}
.dest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  margin-top: auto;
}
.dest-btn::after {
  content: '→';
  font-size: 14px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item.large {
  grid-row: span 2;
  grid-column: span 1;
}
@media (min-width: 768px) {
  .gallery-item.large-w {
    grid-column: span 2;
  }
}

/* ── FORMS ── */
.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 13px;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  font-weight: 500;
}
.info-item i {
  color: var(--cyan);
  font-size: 18px;
}
.form-card {
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: #f1f3f5;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 14px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--cyan), #00a5a5);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(0,212,255,0.28);
  transition: transform 0.2s;
}
.submit-btn:hover {
  transform: translateY(-2px);
}

/* Success Popup */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.success-modal {
  background: var(--card-bg);
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.success-overlay.active .success-modal {
  transform: translateY(0);
}
.success-modal h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--cyan);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.success-modal p {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── FLOATING BUTTONS ── */
.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #25d366;
  color: #fff;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.1); }
.float-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.float-top.visible {
  opacity: 1; pointer-events: auto;
}

/* ── FOOTER ── */
footer {
  padding: 48px var(--px) 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
footer p {
  font-size: 11px;
  color: rgba(0,0,0,0.22);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.28);
  text-decoration: none;
  text-transform: uppercase;
}

/* ── TABLET+ ── */
@media (min-width: 640px) {
  :root { --px: 40px; }
  .stats-strip { grid-template-columns: repeat(4,1fr); }
  .stat:nth-child(3) { border-bottom: none; }
  footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  :root { --px: 80px; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border-bottom: none;
    padding: 0;
    gap: 32px;
  }
  .nav-links a { font-size: 11px; }
  .nav-call { display: block; }
  .mobile-menu-btn { display: none; }
  
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 96vh;
    padding-top: 60px;
  }
  .hero-bus-wrap {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: -40px;
    width: 58%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .hero-content { margin-top: 0; max-width: 520px; }
  
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-container { grid-template-columns: 1fr 1fr; align-items: center; }
}



/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT/BOOK NOW PAGE ANIMATION ── */
.roadtrip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.roadtrip-bg.fixed-bg {
  position: fixed;
}
.highway-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 212, 255, 0.1);
}
.highway-line::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(0,212,255,0.2) 30px, rgba(0,212,255,0.2) 60px);
}
.vehicle-wrapper {
  position: absolute;
  bottom: calc(20% - 37px);
  left: -400px;
  animation: drive-by 16s linear infinite;
  opacity: 0.9;
}
@keyframes drive-by {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 600px)); }
}

/* --- MOBILE RESPONSIVENESS FIXES --- */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.mobile-anim { display: none; }
@media (min-width: 769px) {
  .mobile-only-login { display: none !important; }
}

@media (max-width: 768px) {
  /* Fix Navbar Overflow */
  .client-login-btn { display: none !important; }
  .nav-right { gap: 10px; }
  .nav-book { padding: 8px 12px; font-size: 10px; }
  .logo span { font-size: 24px !important; }
  
  .desktop-anim { display: none !important; }
  .mobile-anim { display: block !important; }
  .hero-bus-wrap svg {
    width: 90% !important;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Fix overall spacing */
  .hero-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-wrapper, .hero, .page-header {
    width: 100%;
    overflow-x: hidden;
  }
}

/* ── PREMIUM LOAD ANIMATIONS ── */
@keyframes fadeInUpModern {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.carousel-slide.active {
  animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-content-modern h1 {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content-modern p {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-content-modern .btn-solid-new, .hero-content-modern .hero-btn {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Float Animation for Images */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.about-img-modern-primary {
  animation: floatSoft 6s ease-in-out infinite;
  color: rgba(0,0,0,0.22);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 8px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.28);
  text-decoration: none;
  text-transform: uppercase;
}

/* ── TABLET+ ── */
@media (min-width: 640px) {
  :root { --px: 40px; }
  .stats-strip { grid-template-columns: repeat(4,1fr); }
  .stat:nth-child(3) { border-bottom: none; }
  footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  :root { --px: 80px; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    background: transparent;
    border-bottom: none;
    padding: 0;
    gap: 32px;
  }
  .nav-links a { font-size: 11px; }
  .nav-call { display: block; }
  .mobile-menu-btn { display: none; }
  
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    min-height: 96vh;
    padding-top: 60px;
  }
  .hero-bus-wrap {
    position: absolute;
    top: auto;
    bottom: 0;
    left: auto;
    right: -40px;
    width: 58%;
    height: 100%;
    align-items: flex-end;
    justify-content: flex-end;
  }
  .hero-content { margin-top: 0; max-width: 520px; }
  
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-container { grid-template-columns: 1fr 1fr; align-items: center; }
}



/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT/BOOK NOW PAGE ANIMATION ── */
.roadtrip-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.roadtrip-bg.fixed-bg {
  position: fixed;
}
.highway-line {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 212, 255, 0.1);
}
.highway-line::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 30px, rgba(0,212,255,0.2) 30px, rgba(0,212,255,0.2) 60px);
}
.vehicle-wrapper {
  position: absolute;
  bottom: calc(20% - 37px);
  left: -400px;
  animation: drive-by 16s linear infinite;
  opacity: 0.9;
}
@keyframes drive-by {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 600px)); }
}

/* --- MOBILE RESPONSIVENESS FIXES --- */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.mobile-anim { display: none; }
@media (min-width: 769px) {
  .mobile-only-login { display: none !important; }
}

@media (max-width: 768px) {
  /* Fix Navbar Overflow */
  .client-login-btn { display: none !important; }
  .nav-right { gap: 10px; }
  .nav-book { padding: 8px 12px; font-size: 10px; }
  .logo span { font-size: 24px !important; }
  
  .desktop-anim { display: none !important; }
  .mobile-anim { display: block !important; }
  .hero-bus-wrap svg {
    width: 90% !important;
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* Fix overall spacing */
  .hero-content {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-wrapper, .hero, .page-header {
    width: 100%;
    overflow-x: hidden;
  }
  
  /* Mobile Fixes for New Hero */
  .hero-new {
    padding-top: 80px !important; 
    padding-bottom: 30px !important;
  }
  .hero-image-container {
    padding: 30px 20px !important;
    border-radius: 25px !important;
    height: 85vh !important;
    width: 100% !important;
  }
  .hero-title-new {
    font-size: clamp(46px, 14vw, 60px) !important;
    margin-bottom: 12px !important;
  }
  .hero-desc-new {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }
  .glass-pill {
    padding: 8px 12px !important;
    font-size: 10px !important;
    gap: 6px !important;
  }
  .glass-pill svg {
    width: 12px !important;
    height: 12px !important;
  }
  .hero-cta-new {
    flex-direction: column !important;
    width: 100% !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 10px !important;
  }
  .hero-cta-new a {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
  }
  .hero-cta-new .btn-solid-new {
    color: #0a0a0a !important;
  }
}

/* ── PREMIUM LOAD ANIMATIONS ── */
@keyframes fadeInUpModern {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.15); }
}

.carousel-slide.active {
  animation: slowZoom 20s infinite alternate ease-in-out;
}

.hero-content-modern h1 {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content-modern p {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-content-modern .btn-solid-new, .hero-content-modern .hero-btn {
  opacity: 0;
  animation: fadeInUpModern 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Float Animation for Images */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.about-img-modern-primary {
  animation: floatSoft 6s ease-in-out infinite;
}

.dest-card-modern .dest-img-modern {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.dest-card-modern:hover .dest-img-modern {
  transform: scale(1.05);
}

/* ── MINIMAL EXPLORE FEATURES ── */
.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.5s ease;
  cursor: pointer;
}
.glass-pill:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
}
.glass-pill svg {
  width: 14px;
  height: 14px;
}

/* Testimonials */
.testimonial-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card-modern {
  background: #f9f9f9;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 35px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Chat FAQ UI */
.chat-faq-container {
  background: #f9f9f9;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}
.chat-bubble {
  padding: 16px 20px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  max-width: 80%;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpModern 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.chat-bubble.right {
  background: #1a1a1a;
  color: #ffffff;
  border-top-right-radius: 4px;
  margin-left: auto;
}
.chat-bubble.left {
  background: #ffffff;
  color: #1a1a1a;
  border-top-left-radius: 4px;
  margin-right: auto;
}

/* ── LIGHTBOX CSS ── */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  object-fit: contain;
}
.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.lightbox-close:hover {
  color: var(--cyan);
}

/* ── GALLERY GRID FIX ── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-masonry > div {
    height: 180px !important;
    border-radius: 12px !important;
  }
}

/* --- MOBILE HERO FIXES --- */
@media (max-width: 768px) {
  .hero-title-new {
    mix-blend-mode: normal !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 70px !important;
  }
  .hero-desc-new {
    font-size: 14px !important;
    padding: 0 10px !important;
    margin-bottom: 20px !important;
  }
  .btn-solid-new, .btn-outline-new {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 300px !important;
    border-radius: 50px !important;
    -webkit-border-radius: 50px !important;
    padding: 16px 24px !important;
    margin: 0 auto !important;
  }
  .hero-cta-new {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .glass-pill {
    padding: 6px 14px !important;
    font-size: 11px !important;
  }
  .hero-image-container {
    height: 85vh !important;
    padding: 20px 10px !important;
    justify-content: flex-end !important;
    padding-bottom: 60px !important;
  }
  
  /* Fleet Section Mobile Fixes */
  #fleet {
    padding: 60px 20px 60px !important;
    min-height: 50vh !important;
  }
  }
}
