@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─── */
:root {
  --navy:   #0B1A2E;
  --teal:   #00B4A6;
  --gold:   #C9A84C;
  --sand:   #F6EFE0;
  --white:  #FAFAF8;
  --navy2:  #0f2340;
  --gold2:  #e8c96a;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --border: rgba(201,168,76,0.2);

  --playfair: 'Playfair Display', Georgia, serif;
  --inter:    'Inter', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 24px;

  --shadow-card: 0 4px 24px rgba(11,26,46,0.10);
  --shadow-hover: 0 12px 40px rgba(11,26,46,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--inter);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--inter); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(11,26,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
}
.nav.scrolled .nav-inner { height: 78px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img, .nav-logo svg { height: 72px; width: 72px; flex-shrink: 0; }
.nav-logo-text { color: var(--white); }
.nav-logo-text .brand { font-family: var(--playfair); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.01em; display: block; line-height: 1.2; }
.nav-logo-text .sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 10px 20px; border-radius: var(--r-sm);
  font-weight: 600 !important; letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold2) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy); padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column; gap: 1.5rem; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta { text-align: center; padding: 14px; }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
  image-rendering: auto;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,26,46,0.45) 0%, rgba(11,26,46,0.25) 40%, rgba(11,26,46,0.65) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 1.5rem; max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6;
}
.hero-title {
  font-family: var(--playfair); color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 500;
  line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold2); }
.hero-sub {
  color: rgba(255,255,255,0.78); font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300; line-height: 1.7; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 32px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 14px 32px; border-radius: var(--r-sm);
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-trust {
  position: absolute; bottom: 2.5rem; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; padding: 0 1rem;
}
.trust-item {
  text-align: center; color: rgba(255,255,255,0.8);
}
.trust-item span { display: block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.trust-item strong { font-size: 1.5rem; font-family: var(--playfair); color: var(--white); font-weight: 500; }
.hero-dots {
  position: absolute; bottom: 70px; right: 2rem; z-index: 3;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── SECTIONS ─── */
.section { padding: 100px 2rem; }
.section-sm { padding: 70px 2rem; }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 1rem; font-weight: 600;
}
.section-title {
  font-family: var(--playfair); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 560px;
}
.section-header-center { text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }
.divider {
  width: 48px; height: 2px; background: var(--gold); margin: 1.5rem 0;
}
.divider-center { margin: 1.5rem auto; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--navy);
  padding: 80px 2rem;
}
.about-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-md);
}
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); padding: 24px; border-radius: var(--r-md);
  text-align: center; min-width: 120px;
}
.about-img-badge strong { display: block; font-size: 2.2rem; font-family: var(--playfair); color: var(--navy); line-height: 1; }
.about-img-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); opacity: 0.7; }
.about-text .section-title { color: var(--white); }
.about-text .section-label { color: var(--gold); }
.about-text .section-sub { color: rgba(255,255,255,0.65); max-width: 100%; }
.about-text .divider { background: var(--gold); }
.about-founder {
  display: flex; align-items: center; gap: 16px; margin-top: 2rem;
  padding: 20px; border: 1px solid rgba(201,168,76,0.25); border-radius: var(--r-md);
}
.about-founder img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.about-founder-text strong { display: block; color: var(--white); font-size: 0.95rem; }
.about-founder-text span { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── STATS ─── */
.stats-bar {
  background: var(--teal);
  padding: 48px 2rem;
}
.stats-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--playfair); font-size: 2.8rem; font-weight: 500; color: var(--white); line-height: 1; }
.stat-num sup { font-size: 1.2rem; vertical-align: super; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-top: 8px; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--sand); border-radius: var(--r-md);
  padding: 2.5rem 2rem; text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 1px solid transparent; cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
  background: var(--navy); border-color: var(--gold);
}
.service-icon {
  font-size: 2.5rem; margin-bottom: 1.2rem; display: block;
}
.service-card h3 {
  font-family: var(--playfair); font-size: 1.2rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
  transition: color var(--transition);
}
.service-card:hover p { color: rgba(255,255,255,0.65); }

/* ─── TOUR CARDS ─── */
.tours-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.tour-card {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
  display: flex; flex-direction: column; height: 100%;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.tour-img {
  position: relative; overflow: hidden; aspect-ratio: 4/3; flex-shrink: 0;
}
.tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; font-weight: 600;
}
.tour-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 {
  font-family: var(--playfair); font-size: 1.15rem; color: var(--navy);
  margin-bottom: 0.5rem; font-weight: 500;
}
.tour-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.tour-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.tour-link {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--teal); display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.tour-link:hover { gap: 10px; color: var(--gold); }
.tour-link .arrow { font-size: 1rem; }

/* ─── TOUR PRICE TAG (own line, pinned just above the Book Now divider) ─── */
.tour-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 8px;
  margin-bottom: 1rem; margin-top: auto;
}
.tour-price .tp-amt { font-size: 0.95rem; font-weight: 700; color: var(--navy); line-height: 1.3; }
.tour-price .tp-unit { font-size: 0.66rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── CRUISE PRICE TAG (on navy cruise-cards) ─── */
.cruise-price { margin-bottom: 1.4rem; }
.cruise-price .cp-amt { font-family: var(--playfair); font-size: 1.05rem; font-weight: 600; color: var(--gold); }
.cruise-price .cp-unit { display: block; font-size: 0.66rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }

/* ─── BIG FEATURE BANNER ─── */
.feature-banner {
  position: relative; min-height: 500px; display: flex; align-items: center;
  overflow: hidden;
}
.feature-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.feature-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,26,46,0.92) 45%, rgba(11,26,46,0.4) 100%);
}
.feature-banner-content {
  position: relative; z-index: 2; padding: 80px 2rem; max-width: 1280px; margin: 0 auto; width: 100%;
}
.feature-banner-content .section-title { color: var(--white); max-width: 540px; }
.feature-banner-content .section-label { color: var(--gold); }
.feature-banner-content .section-sub { color: rgba(255,255,255,0.72); margin-bottom: 2rem; }
.feature-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}
.feature-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 220px; gap: 1rem; margin-top: 3rem;
}
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-row: span 2; }
.gallery-item {
  overflow: hidden; border-radius: var(--r-sm); cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(11,26,46,0); transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(11,26,46,0.25); }

/* ─── TESTIMONIALS ─── */
.testimonials-bg { background: var(--navy); }
.testimonials-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0.5rem 0 1rem; scrollbar-width: none; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex: 0 0 360px; scroll-snap-align: start;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--r-md); padding: 2rem;
}
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.t-quote { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; font-family: var(--playfair); }
.t-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.t-tag { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ─── PROCESS ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step { text-align: center; padding: 2rem 1rem; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: var(--playfair); font-size: 1.3rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.process-step h3 { font-family: var(--playfair); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.75rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; margin-top: 3rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 1.5rem; background: var(--sand); border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
}
.contact-icon { font-size: 1.5rem; }
.contact-item strong { display: block; color: var(--navy); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--muted); font-size: 0.9rem; }
.contact-item a:hover { color: var(--teal); }
.form-card {
  background: var(--white); border-radius: var(--r-lg); padding: 2.5rem;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
}
.form-title { font-family: var(--playfair); font-size: 1.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #e5e7eb; border-radius: var(--r-sm);
  font-family: var(--inter); font-size: 0.9rem; color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,180,166,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--navy); color: var(--gold);
  padding: 16px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at center, rgba(0,180,166,0.12) 0%, transparent 60%);
}
.cta-banner h2 { font-family: var(--playfair); font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-wa {
  background: #25D366; color: var(--white);
  padding: 15px 28px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-call {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 14px 28px; border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-call:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ─── FOOTER ─── */
.footer { background: #06101e; padding: 70px 2rem 0; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 4rem; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 0.5rem;
}
.footer-logo img, .footer-logo svg { height: 60px; width: 60px; flex-shrink: 0; }
.footer-logo .brand { font-family: var(--playfair); color: var(--white); font-size: 1rem; }
.footer-logo .sub { font-size: 0.62rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.85rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-col h4 {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem; font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.85rem; }
.footer-contact-item .ic { color: var(--gold); font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: var(--gold); }

/* ─── FLOATING BUTTONS ─── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25D366; color: var(--white);
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
.float-call {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  background: var(--gold); color: var(--navy);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  transition: transform var(--transition);
}
.float-call:hover { transform: scale(1.1); }

/* ─── WA GREETING BUBBLE ─── */
.wa-greeting {
  position: fixed;
  bottom: 22px;
  right: 92px;
  z-index: 901;
  background: var(--white);
  color: var(--navy);
  font-family: var(--inter);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 10px 14px;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 4px 20px rgba(11,26,46,0.15);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px) scale(0.92);
  transform-origin: right center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-greeting.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.wa-greeting::after {
  content: '';
  position: absolute;
  right: -7px;
  bottom: 10px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 8px;
  border-color: transparent transparent transparent var(--white);
}
.wa-greeting-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(11,26,46,0.08);
  font-size: 0.65rem;
  color: var(--muted);
  cursor: pointer;
  vertical-align: middle;
  transition: background 0.2s;
}
.wa-greeting-close:hover { background: rgba(11,26,46,0.15); }
@media (prefers-reduced-motion: reduce) {
  .wa-greeting { transition: opacity 0.2s; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center; opacity: 0.15;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold); justify-content: center; display: flex; align-items: center; gap: 1rem; }
.page-hero .section-label::before, .page-hero .section-label::after { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); opacity: 0.5; }
.page-hero h1 { font-family: var(--playfair); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin: 1rem 0 1.2rem; font-weight: 500; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 1.5rem; }
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ─── CAR RENTAL ─── */
.car-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.car-card {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.car-img { aspect-ratio: 16/9; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.car-card:hover .car-img img { transform: scale(1.05); }
.car-body { padding: 1.5rem; }
.car-body h3 { font-family: var(--playfair); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.car-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.car-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1.5rem; }
.car-tag {
  background: var(--sand); color: var(--navy);
  font-size: 0.72rem; padding: 4px 10px; border-radius: 20px; font-weight: 500;
}
.btn-book {
  width: 100%; background: var(--navy); color: var(--gold);
  padding: 12px; border-radius: var(--r-sm);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background var(--transition);
}
.btn-book:hover { background: var(--teal); color: var(--white); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .tours-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-strip-inner { gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 70px 1.2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .tours-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); }
  .about-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .car-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-trust { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
}

/* ─── PREMIUM UPGRADES ─── */

/* Richer token overrides */
:root {
  --gold-glow: rgba(201,168,76,0.25);
  --navy-glass: rgba(11,26,46,0.85);
  --shadow-premium: 0 20px 60px rgba(11,26,46,0.22), 0 4px 16px rgba(11,26,46,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.28);
}

/* ─── PREMIUM NAV GLOW ─── */
.nav.scrolled {
  background: rgba(8,18,36,0.96);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35), 0 1px 0 rgba(201,168,76,0.1);
}

/* ─── HERO LAYOUT FIX — trust bar below buttons, no overlap ─── */
.hero {
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}
.hero-content {
  padding-top: 100px;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Override old absolute positioning of trust bar */
.hero-trust {
  position: relative;
  bottom: auto;
  left: auto;
  right: auto;
  transform: none;
  z-index: 2;
  margin-top: auto;
  width: 100%;
  padding: 20px 2rem;
  background: rgba(6,16,30,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.15);
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.trust-item {
  padding: 0 32px;
  border-right: 1px solid rgba(201,168,76,0.15);
  flex: 1;
  max-width: 200px;
  text-align: center;
}
.trust-item:last-child { border-right: none; }

/* ─── STATS BAR PREMIUM ─── */
.stats-bar {
  background: linear-gradient(135deg, #0a2240 0%, #00978a 50%, #0a2240 100%);
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 200px,
    rgba(255,255,255,0.025) 200px,
    rgba(255,255,255,0.025) 201px
  );
}
.stat-num {
  font-size: 3.2rem;
  text-shadow: 0 2px 20px rgba(201,168,76,0.3);
}
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

/* ─── SERVICE CARDS PREMIUM ─── */
.service-card {
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201,168,76,0.04) 100%);
  transition: opacity var(--transition);
}
.service-card:hover::before {
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.service-icon {
  font-size: 2.8rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
}

/* ─── TOUR CARDS PREMIUM ─── */
.tour-card {
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(201,168,76,0.2);
}
.tour-badge {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  font-weight: 700;
}

/* ─── TESTIMONIALS PREMIUM ─── */
.testimonial-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(201,168,76,0.18);
  backdrop-filter: blur(8px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--playfair);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201,168,76,0.12);
  font-weight: 700;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.home-review-card {
  border-radius: 14px;
  padding: 1.8rem;
  color: var(--white);
  overflow: hidden;
}
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--playfair);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.t-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.t-info { flex: 1; }
.t-verified {
  font-size: 0.62rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
/* Note badge for placeholder testimonials */
.testimonials-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  font-style: italic;
}

/* ─── PROCESS STEP PREMIUM ─── */
.step-num {
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

/* ─── CTA BANNER UPGRADE ─── */
.cta-banner {
  background: linear-gradient(135deg, #06101e 0%, #0f2340 40%, #0a2240 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── FOOTER PREMIUM ─── */
.footer {
  background: #050e1a;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-social a {
  border-radius: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-legal-links a:hover {
  color: var(--gold);
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 2rem;
}
.legal-content h2 {
  font-family: var(--playfair);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal-content p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-content ul li { margin-bottom: 0.4rem; }
.legal-date {
  font-size: 0.8rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

/* ─── ABOUT PAGE TEAM CARD ─── */
.team-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  padding-bottom: 1.5rem;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-premium); }
.team-img { aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.06); }
.team-name { font-family: var(--playfair); font-size: 1.15rem; color: var(--navy); margin: 1rem 1rem 0.25rem; }
.team-role { font-size: 0.75rem; color: var(--teal); letter-spacing: 0.12em; text-transform: uppercase; }

/* ─── GALLERY PREMIUM HOVER ─── */
.gallery-item {
  border-radius: var(--r-md);
}
.gallery-item::after {
  border-radius: var(--r-md);
}

/* ─── BUTTON SHEEN EFFECT ─── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::after {
  left: 150%;
}

/* ─── MOBILE RESPONSIVE ADDITIONS ─── */
@media (max-width: 768px) {
  .trust-item {
    padding: 0 12px;
  }
}
@media (max-width: 480px) {
  .hero-trust {
    display: none;
  }
}

/* ─── SCROLL CLIMBER ─── */


/* ─── PARAGLIDER SCROLL ANIMATION ─── */
.paraglider-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 800;
  overflow: hidden;
}

.paraglider {
  position: absolute;
  width: 110px;
  height: 92px;
  /* Start top-right, will be moved by JS */
  top: 10%;
  right: 40px;
  transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              right 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.4s ease;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
  will-change: top, left, transform;
}

/* Subtle sway animation when idle */
@keyframes pgSway {
  0%   { transform: rotate(-3deg) translateY(0px); }
  25%  { transform: rotate(2deg) translateY(-5px); }
  50%  { transform: rotate(-2deg) translateY(-8px); }
  75%  { transform: rotate(3deg) translateY(-3px); }
  100% { transform: rotate(-3deg) translateY(0px); }
}

/* Bank/tilt when moving */
@keyframes pgBankRight {
  0%, 100% { transform: rotate(8deg) translateY(-3px); }
  50%       { transform: rotate(12deg) translateY(-6px); }
}
@keyframes pgBankLeft {
  0%, 100% { transform: rotate(-8deg) translateY(-3px); }
  50%       { transform: rotate(-12deg) translateY(-6px); }
}

.paraglider.idle     { animation: pgSway 4s ease-in-out infinite; }
.paraglider.banking-right { animation: pgBankRight 0.5s ease-in-out infinite; }
.paraglider.banking-left  { animation: pgBankLeft 0.5s ease-in-out infinite; }

/* Wind trail lines */
.wind-trails {
  position: absolute;
  right: 108px;
  top: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.paraglider.moving .wind-trails { opacity: 1; }
.wind-trails span {
  display: block;
  height: 2px;
  background: linear-gradient(to left, rgba(201,168,76,0.7), transparent);
  border-radius: 2px;
  animation: windLine 0.4s ease-in-out infinite alternate;
}
.wind-trails span:nth-child(1) { width: 28px; animation-delay: 0s; }
.wind-trails span:nth-child(2) { width: 40px; animation-delay: 0.1s; }
.wind-trails span:nth-child(3) { width: 22px; animation-delay: 0.2s; }
.wind-trails span:nth-child(4) { width: 34px; animation-delay: 0.05s; }
@keyframes windLine {
  from { transform: scaleX(0.6); opacity: 0.4; }
  to   { transform: scaleX(1.0); opacity: 1.0; }
}

/* Speech bubble tip */
.pg-tip {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy, #0B1A2E);
  color: var(--gold, #C9A84C);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(201,168,76,0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pg-tip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-bottom-color: var(--navy, #0B1A2E);
}
.paraglider.show-tip .pg-tip { opacity: 1; }

@media (max-width: 768px) {
  .paraglider-wrap { display: none; }
}

/* ═══════════════════════════════════════════════════════
   FULL DEVICE RESPONSIVE OVERHAUL
   Covers small laptops, tablets, iPhone/Android portrait
   & landscape, foldables, and large desktop screens.
   ═══════════════════════════════════════════════════════ */

/* Base — fluid container so nothing overflows on narrow screens */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }
.container { width: 100%; padding: 0 1.25rem; box-sizing: border-box; }

/* ─── LAPTOPS / SMALL DESKTOP (≤1366px, e.g. 1280x800, 1366x768) ─── */
@media (max-width: 1366px) {
  .container { max-width: 1180px; }
  .section { padding: 90px 1.5rem; }
}

/* ─── TABLET LANDSCAPE & SMALL LAPTOPS (≤1024px) ─── */
@media (max-width: 1024px) {
  .container { max-width: 920px; }
  .founder-grid { gap: 48px; }
  .car-grid { grid-template-columns: repeat(2,1fr); }
  .rental-types { grid-template-columns: repeat(2,1fr) !important; }
  .use-cases { grid-template-columns: repeat(2,1fr) !important; }
  .values-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ─── TABLET PORTRAIT (≤900px) ─── */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr !important; gap: 2.5rem; }
  .founder-img-wrap { max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr !important; gap: 2.5rem; }
}

/* ─── MOBILE (≤768px) — refine existing rules ─── */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .section { padding: 60px 1rem; }
  .section-sm { padding: 50px 1rem; }
  .page-hero { padding: 70px 1.25rem; min-height: 280px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .page-hero p { font-size: 0.95rem; padding: 0 0.5rem; }

  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .section-sub { font-size: 0.95rem; }

  /* Values / use-cases / rental cards stack but stay full width */
  .values-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .use-cases { grid-template-columns: 1fr !important; gap: 1.25rem; }
  .rental-types { grid-template-columns: 1fr !important; gap: 1.25rem; }

  /* Founder section spacing */
  .founder-section { padding: 60px 1.25rem; }
  .founder-quote { position: static; margin-top: 16px; left: 0; right: 0; bottom: auto; }

  /* Map / form columns stack cleanly */
  .map-wrap { height: 220px; margin-bottom: 1.5rem; }

  /* Form rows always single column on phones */
  .form-row { grid-template-columns: 1fr !important; gap: 0; }
}

/* ─── SMALL PHONES (≤480px, e.g. iPhone SE, small Android) ─── */
@media (max-width: 480px) {
  .container { padding: 0 0.85rem; }
  .section { padding: 50px 0.85rem; }
  .page-hero-content { padding: 0 0.5rem; }
  .page-hero h1 { font-size: 1.85rem; }
  .nav-logo-text .brand { font-size: 0.95rem; }
  .nav-logo-text .sub { font-size: 0.6rem; }
  .footer-grid { gap: 2rem; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-btns { flex-direction: column; gap: 0.75rem; }
  .cta-btns a { width: 100%; text-align: center; justify-content: center; }
}

/* ─── EXTRA-SMALL PHONES (≤360px, e.g. Galaxy Fold, older Androids) ─── */
@media (max-width: 360px) {
  .page-hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.4rem; }
  .nav-logo img, .nav-logo svg { width: 58px; height: 58px; }
}

/* ─── LANDSCAPE ORIENTATION (PHONES) ───
   Prevents the hero/page-hero from taking the whole viewport
   height and squashing content when the device is rotated. */
@media (max-height: 480px) and (orientation: landscape) {
  .page-hero { min-height: auto; padding: 50px 1.5rem; }
  .hero { min-height: auto; padding: 70px 1.5rem 2rem; }
  .hero-trust { display: none; }
  .section { padding: 50px 1.5rem; }
  .nav { padding: 0.5rem 0; }
}

/* General landscape tablets (e.g. iPad landscape) */
@media (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
  .values-grid, .use-cases, .rental-types { grid-template-columns: repeat(3,1fr) !important; }
  .car-grid { grid-template-columns: repeat(3,1fr); }
  .founder-grid { grid-template-columns: 1fr 1.5fr; }
}

/* ─── Prevent horizontal scroll on any device ─── */
html, body { overflow-x: hidden; max-width: 100%; }

/* Tour price context note */
.tour-price-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  font-style: italic;
}

/* Fix mobile nav logo text wrap */
.nav-logo-text .brand {
  white-space: nowrap;
}
