/* =============================================
   DEVYATRIK.COM — SHARED STYLESHEET
   Covers: Header, Footer, Utilities, Layout
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --saffron: #EA580C;
  --saffron-deep: #0b0503;
  --saffron-light: #FED7AA;
  --gold: #D97706;
  --gold-light: #FEF3C7;
  --navy: #0F172A;
  --charcoal: #1E293B;
  --slate: #334155;
  --warm-white: #FFF8F3;
  --cream: #FFFBF7;
  --white: #FFFFFF;
  --text-muted: #64748B;
  --border: rgba(217,119,6,0.15);
  --shadow-warm: 0 20px 60px rgba(234,88,12,0.15);
  --shadow-deep: 0 30px 80px rgba(15,23,42,0.35);
  --radius: 16px;
  --radius-sm: 10px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--warm-white); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  border: 1px solid var(--saffron);
  border-radius: 40px;
  padding: 5px 16px;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-heading span { color: var(--saffron); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-size: 15px;
  font-weight: 600; cursor: pointer; border: none; transition: all 0.3s ease;
  font-family: 'Outfit', sans-serif; white-space: nowrap;
}
.btn-primary { background: var(--saffron); color: white; }
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(234,88,12,0.4); }
.btn-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: #B45309; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217,119,6,0.4); }
.btn-outline { background: transparent; color: var(--saffron); border: 2px solid var(--saffron); }
.btn-outline:hover { background: var(--saffron); color: white; }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

/* ==============================================
   TOPBAR
   ============================================== */
.topbar {
  background: var(--navy);
  color: #CBD5E1;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { color: var(--saffron); flex-shrink: 0; }
.topbar-right { display: flex; gap: 20px; align-items: center; }

/* ==============================================
   NAVBAR
   ============================================== */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,251,247,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(234,88,12,0.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { color: white; }
.logo-text { line-height: 1.1; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--navy);
}
.logo-name span { color: var(--saffron); }
.logo-tagline {
  font-size: 10px; color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--slate); transition: all 0.2s; position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--saffron); background: var(--saffron-light); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Desktop dropdowns */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1200;
  min-width: 240px;
  max-width: 320px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
.dropdown-menu a:hover {
  background: var(--saffron-light);
  color: var(--saffron);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================================
   MOBILE MENU
   ============================================== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--cream); flex-direction: column;
  padding: 90px 24px 40px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  padding: 14px 0; font-size: 18px; font-weight: 500;
  color: var(--navy); border-bottom: 1px solid var(--border);
  display: block; transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--saffron); }
.mobile-ctas { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.mobile-ctas .btn { justify-content: center; }

/* ==============================================
   MARQUEE BAND
   ============================================== */
.marquee-band {
  background: var(--saffron); padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex; align-items: center; gap: 12px; padding: 0 30px;
  color: white; font-weight: 600; font-size: 14px;
  letter-spacing: 0.5px; white-space: nowrap;
}
.marquee-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==============================================
   FOOTER
   ============================================== */
footer { background: #080E1A; padding: 70px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-name { color: white; font-size: 24px; }
.footer-brand .logo-tagline { color: #94A3B8; }

.footer-desc { color: #94A3B8; font-size: 14px; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #94A3B8; font-size: 14px; font-weight: 600;
  transition: 0.2s;
}
.social-btn:hover { background: var(--saffron); color: white; }

.footer-col h4 {
  color: var(--saffron); font-size: 15px; margin-bottom: 20px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94A3B8; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }

/* Contact in footer */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; color: #94A3B8; font-size: 14px;
}
.footer-contact-item svg { color: var(--saffron); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #94A3B8; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--saffron); }

/* Footer keywords (SEO) */
.footer-keywords {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-keywords p {
  color: #1E293B; font-size: 12px; line-height: 2;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: #334155; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: #475569; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--saffron); }

/* ==============================================
   WHATSAPP FLOATING BUTTON
   ============================================== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.wa-bubble {
  background: white; border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); max-width: 220px;
  font-size: 13px; line-height: 1.4; color: var(--charcoal);
  animation: slideInUp 0.4s ease; display: none;
}
.wa-bubble.show { display: block; }
.wa-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  cursor: pointer; transition: transform 0.3s;
  text-decoration: none; position: relative;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: waPulse 2s infinite; z-index: -1;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ==============================================
   RESPONSIVE — HEADER & FOOTER
   ============================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-right { display: none; }
  .topbar .container { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   PAGE-LEVEL STYLES (used by index.php content)
   ============================================== */

/* Hero */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 40%, #2d1a0e 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, var(--saffron) 0, var(--saffron) 1px, transparent 0, transparent 50%);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.2) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-glow2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,0.15) 0%, transparent 65%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(234,88,12,0.15); border: 1px solid rgba(234,88,12,0.4);
  border-radius: 40px; padding: 8px 18px; margin-bottom: 24px;
  color: #FED7AA; font-size: 13px; font-weight: 500;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--saffron); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.2)} }
.hero-title { font-size: clamp(38px,5.5vw,72px); color: white; margin-bottom: 10px; font-weight: 700; }
.hero-title em { font-style: normal; color: var(--saffron); display: block; }
.hero-subtitle { font-family: 'Outfit', sans-serif; font-size: clamp(16px,2vw,20px); color: #94A3B8; margin-bottom: 32px; line-height: 1.6; }
.hero-trust { display: flex; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: #CBD5E1; font-size: 14px; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px); border-radius: var(--radius); padding: 22px 24px;
  transition: transform 0.3s, background 0.3s;
}
.hero-card:hover { transform: translateX(6px); background: rgba(255,255,255,0.09); }
.hero-card-label { color: #94A3B8; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.hero-card-title { color: white; font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.hero-card-desc { color: #94A3B8; font-size: 13px; line-height: 1.5; }
.hero-card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; color: var(--saffron); font-size: 13px; font-weight: 600; transition: gap 0.2s; }
.hero-card-cta:hover { gap: 10px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); overflow: hidden; margin-top: 4px;
}
.stat-item { padding: 18px; text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--saffron); }
.stat-label { font-size: 12px; color: #94A3B8; margin-top: 2px; }

/* Trust bar */
.trust-bar { background: var(--navy); padding: 50px 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; text-align: center; }
.trust-box { padding: 20px; border-right: 1px solid rgba(255,255,255,0.06); }
.trust-box:last-child { border: none; }
.trust-box-icon { font-size: 30px; margin-bottom: 10px; }
.trust-box-num { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--saffron); }
.trust-box-label { color: #94A3B8; font-size: 13px; margin-top: 4px; }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.why-card {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(234,88,12,0.03), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--saffron-light), var(--gold-light));
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.why-icon svg { color: var(--saffron); }
.why-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* Fleet */
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.fleet-card {
  border-radius: var(--radius); overflow: hidden;
  background: white; border: 1px solid var(--border);
  transition: all 0.3s; position: relative;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.fleet-img {
  height: 200px; background: linear-gradient(135deg, var(--navy), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.fleet-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.fleet-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.3) 100%);
}
.fleet-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--saffron); color: white; border-radius: 20px;
  padding: 4px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
}
.fleet-body { padding: 24px; }
.fleet-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.fleet-body p { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.fleet-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.fleet-feat { background: var(--warm-white); color: var(--slate); font-size: 12px; padding: 4px 10px; border-radius: 20px; border: 1px solid var(--border); }
.fleet-cta { display: flex; gap: 10px; }

/* Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 50px; }
.dest-card {
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer;
  aspect-ratio: 3/4; transition: transform 0.3s;
}
.dest-card:hover { transform: scale(1.03); }
.dest-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: white; z-index: 2; }
.dest-info h3 { font-size: 18px; margin-bottom: 4px; }
.dest-info p { font-size: 12px; color: rgba(255,255,255,0.65); }
.dest-tag {
  display: inline-block; background: var(--saffron); color: white;
  font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 12px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px;
}

/* Special services */
.special-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 50px; }
.special-card {
  background: white; border-radius: var(--radius); padding: 30px 22px;
  border: 1px solid var(--border); text-align: center; transition: all 0.3s;
}
.special-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-warm); border-color: var(--saffron); }
.special-emoji { margin-bottom: 14px; }
.special-emoji img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; margin: 0 auto; }
.special-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.special-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }

/* Tours */
.tours-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 50px; }
.tour-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s;
  height: 100%; display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-warm); }
.tour-header { position: relative; overflow: hidden; }
.tour-image { width: 100%; height: 220px; object-fit: cover; object-position: center; display: block; }
.tour-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(10px);
  color: white; font-size: 11px; padding: 4px 10px; border-radius: 12px;
}
.tour-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tour-body h3 { font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.tour-body p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.tour-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tour-inc { background: var(--warm-white); color: var(--slate); font-size: 12px; padding: 3px 10px; border-radius: 20px; }
.tour-body .btn { margin-top: auto; }

/* SEO content section */
.seo-section { background: white; }
.seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.seo-text h2 { font-size: clamp(28px,3.5vw,44px); color: var(--navy); margin-bottom: 20px; }
.seo-text h2 span { color: var(--saffron); }
.seo-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.seo-list { list-style: none; padding: 0; }
.seo-list li {
  padding: 8px 0 8px 28px; position: relative;
  color: var(--slate); font-size: 15px; border-bottom: 1px solid var(--border);
}
.seo-list li::before { content: '→'; position: absolute; left: 0; color: var(--saffron); font-weight: 700; }
.seo-right { display: flex; flex-direction: column; gap: 16px; }
.seo-box { background: var(--warm-white); border-radius: var(--radius-sm); padding: 22px; border: 1px solid var(--border); }
.seo-box h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.seo-box p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 800px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; gap: 16px; }
.faq-q h3 { font-family: 'Outfit', sans-serif; font-size: 17px; font-weight: 500; color: var(--navy); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--warm-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: 0.3s; color: var(--saffron); font-size: 18px;
}
.faq-item.open .faq-icon { background: var(--saffron); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { color: var(--text-muted); line-height: 1.8; padding-bottom: 20px; font-size: 15px; }
.faq-item.open .faq-a { max-height: 300px; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.testi-card { background: white; border-radius: var(--radius); padding: 30px; border: 1px solid var(--border); }
.testi-quote { font-size: 56px; line-height: 0.8; color: var(--saffron); opacity: 0.3; font-family: 'Cormorant Garamond', serif; font-weight: 700; margin-bottom: 10px; }
.testi-text { color: var(--slate); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--saffron), var(--gold)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; }
.testi-name { font-weight: 600; color: var(--navy); font-size: 15px; }
.testi-loc { font-size: 12px; color: var(--text-muted); }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }

/* CTA Band */
.cta-band {
  background: #ea580c;
  padding: 70px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.cta-band h2 { font-size: clamp(28px,4vw,52px); color: white; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 36px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Contact Strip */
.contact-strip { background: var(--navy); padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.contact-box { padding: 20px; }
.contact-icon { color: var(--saffron); margin-bottom: 12px; }
.contact-label { color: #64748B; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.contact-value { color: white; font-size: 16px; font-weight: 600; }
.contact-value a { color: inherit; transition: color 0.2s; }
.contact-value a:hover { color: var(--saffron); }

/* Scroll-reveal */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==============================================
   RESPONSIVE — PAGE CONTENT
   ============================================== */
@media (max-width: 1024px) {
  .dest-grid, .special-grid, .contact-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar-grid { grid-template-columns: repeat(3,1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .why-grid, .fleet-grid, .tours-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .seo-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .dest-grid, .special-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .dest-grid, .special-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
}
