/* ============================================
   CabRaj — Industrial Business Design
   Clean • Corporate • Flutter-Solid • Trust
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  /* Brand Colors */
  --primary: #E8480A;
  --primary-dark: #C73D08;
  --primary-light: #F26432;
  --primary-bg: #FFF3EE;
  --accent: #F5A623;
  --accent-dark: #D4891A;

  /* Neutrals - Light Theme */
  --white: #FFFFFF;
  --bg: #F6F7F9;
  --bg2: #ECEEF2;
  --surface: #FFFFFF;
  --border: #DDE1E9;
  --border-light: #EEF0F4;

  /* Text */
  --text-heading: #0D1117;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;

  /* Dark Section */
  --dark-bg: #0D1117;
  --dark-surface: #161B22;
  --dark-border: #30363D;
  --dark-text: #E6EDF3;
  --dark-muted: #8B949E;

  /* Semantic */
  --success: #16A34A;
  --success-bg: #DCFCE7;
  --wa-green: #25D366;
  --wa-dark: #128C7E;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-primary: 0 4px 20px rgba(232,72,10,0.30);

  /* Layout */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text-body); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::selection { background: rgba(232,72,10,0.12); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', sans-serif; color: var(--text-heading); line-height: 1.15; letter-spacing: -0.01em; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Section Label ── */
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; background: var(--primary-bg);
  border: 1px solid rgba(232,72,10,0.2);
  border-radius: 4px; font-size: 11px; font-weight: 700;
  color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-heading { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--text-heading); margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 560px; }

/* ── Divider ── */
.divider { width: 40px; height: 3px; background: var(--primary); border-radius: 2px; margin: 14px 0 20px; }

/* ════════════════
   BUTTONS
════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none;
  transition: var(--transition); white-space: nowrap; letter-spacing: 0.2px;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(232,72,10,0.38); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--dark-bg); color: #fff; }
.btn-dark:hover { background: #1C2531; }
.btn-outline { background: transparent; border: 2px solid var(--border); color: var(--text-body); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--primary-bg); }
.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-xs { padding: 6px 14px; font-size: 12px; border-radius: 6px; }
.btn-block { width: 100%; }

/* ════════════════
   HEADER
════════════════ */
#mainHeader {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
#mainHeader.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 38px; height: 38px; background: var(--primary);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.logo-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; color: var(--text-heading); letter-spacing: -0.5px; }
.logo-name span { color: var(--primary); }
nav.main-nav { display: flex; align-items: center; gap: 4px; }
nav.main-nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--text-body); text-decoration: none; font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
nav.main-nav a:hover { background: var(--bg); color: var(--primary); }
nav.main-nav a.active { background: var(--primary-bg); color: var(--primary); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-heading); text-decoration: none;
  font-size: 13px; font-weight: 700; transition: var(--transition);
}
.header-phone:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }

/* Mobile hamburger */
.hamburger-btn { display: none; padding: 8px; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; }
.hamburger-btn span { display: block; width: 20px; height: 2px; background: var(--text-heading); margin: 4px 0; border-radius: 2px; transition: var(--transition); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 999; padding: 24px; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 14px 16px; border-radius: var(--radius); color: var(--text-body); text-decoration: none; font-size: 15px; font-weight: 600; border-bottom: 1px solid var(--border-light); }
.mobile-nav a:hover { color: var(--primary); background: var(--primary-bg); }

@media(max-width:900px) {
  nav.main-nav, .header-actions .btn-wa, .header-phone { display: none; }
  .hamburger-btn { display: block; }
}

/* ════════════════
   HERO
════════════════ */
.hero-section {
  padding: 108px 0 0;
  background: var(--dark-bg);
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1400&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(13,17,23,0.7) 0%, rgba(13,17,23,0.92) 60%, rgba(13,17,23,1) 100%); }
.hero-content { position: relative; z-index: 2; padding: 60px 0 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,72,10,0.15); border: 1px solid rgba(232,72,10,0.35); border-radius: 4px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: #FF8C5A; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.hero-eyebrow span { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; display: inline-block; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.hero-title { font-size: clamp(38px,5.5vw,68px); font-weight: 900; color: #FFFFFF; line-height: 1.05; margin-bottom: 16px; }
.hero-title .accent { color: var(--primary); }
.hero-subtitle { font-size: 16px; color: var(--dark-muted); max-width: 560px; margin-bottom: 32px; line-height: 1.65; }
.hero-trust-bar { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #8B949E; font-weight: 500; }
.trust-dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }

/* Hero Booking Form — bottom attached */
.booking-bar {
  position: relative; z-index: 2;
  background: #fff;
  border-top: 3px solid var(--primary);
  padding: 28px 0;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  margin-top: 40px;
}
.booking-bar-inner { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.booking-field { flex: 1; min-width: 160px; }
.booking-field label { display: block; font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 6px; }
.booking-input {
  width: 100%; height: 46px; padding: 0 14px 0 38px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-heading);
  background: var(--bg); outline: none; transition: var(--transition);
}
.booking-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(232,72,10,0.08); }
.booking-input-wrap { position: relative; }
.booking-input-wrap .field-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 15px; pointer-events: none; }
.booking-select { width: 100%; height: 46px; padding: 0 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-heading); background: var(--bg); outline: none; transition: var(--transition); cursor: pointer; }
.booking-select:focus { border-color: var(--primary); }
.booking-tabs { display: flex; gap: 0; background: var(--bg2); border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid var(--border); margin-bottom: 16px; }
.booking-tab { flex: 1; padding: 9px 10px; background: transparent; border: none; font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: var(--transition); border-right: 1px solid var(--border); text-align: center; }
.booking-tab:last-child { border-right: none; }
.booking-tab.active { background: var(--primary); color: #fff; }
.booking-submit { height: 46px; padding: 0 28px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
.booking-submit:hover { background: var(--primary-dark); }

@media(max-width: 768px) {
  .booking-bar-inner { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .booking-submit { width: 100%; justify-content: center; height: 50px; }
  .hero-title { font-size: 36px; }
}

/* ════════════════
   STATS STRIP
════════════════ */
.stats-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.stats-strip-inner { display: flex; justify-content: space-between; }
.stat-block { flex: 1; padding: 28px 20px; display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--border-light); }
.stat-block:last-child { border-right: none; }
.stat-icon { width: 48px; height: 48px; background: var(--primary-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--text-heading); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
@media(max-width:768px) { .stats-strip-inner { flex-wrap: wrap; } .stat-block { width: 50%; flex: none; border-right: 1px solid var(--border-light); } }

/* ════════════════
   CARDS — GENERAL
════════════════ */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); box-shadow: var(--shadow-xs);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(232,72,10,0.2); }

/* ════════════════
   CAR CARDS
════════════════ */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 20px; }
.car-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-xs); }
.car-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(232,72,10,0.2); }
.car-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}
.car-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.4s; display: block; }
.car-card:hover .car-img { transform: scale(1.04); }
.car-no-img { font-size: 70px; color: var(--border); }
.car-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: var(--primary); color: #fff; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.car-body { padding: 18px 20px; }
.car-name { font-size: 20px; font-weight: 800; color: var(--text-heading); margin-bottom: 8px; }
.car-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.car-spec { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.car-spec svg { color: var(--primary); }
.car-divider { height: 1px; background: var(--border-light); margin: 14px 0; }
.car-footer { display: flex; justify-content: space-between; align-items: center; }
.car-price-wrap .price-from { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.car-price-wrap .price-val { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--text-heading); }
.car-price-wrap .price-val.wa-price { font-size: 13px; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 500; }

/* ════════════════
   ROUTE CARDS
════════════════ */
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.route-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; text-decoration: none; color: var(--text-body); transition: var(--transition);
  display: flex; flex-direction: column; gap: 8px;
}
.route-card:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.route-cities { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.route-city-name { font-size: 14px; font-weight: 700; }
.route-arr { font-size: 12px; color: var(--primary); transition: var(--transition); }
.route-card:hover .route-arr { color: rgba(255,255,255,0.8); }
.route-price-tag { font-size: 12px; font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.route-card:hover .route-price-tag { color: rgba(255,255,255,0.85); }

/* ════════════════
   TOUR PACKAGES
════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.pkg-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-xs); }
.pkg-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(232,72,10,0.2); }
.pkg-img-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
}
.pkg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.pkg-card:hover .pkg-img { transform: scale(1.04); }
.pkg-no-img { font-size: 64px; color: var(--border); }
.pkg-ribbon { position: absolute; top: 0; right: 0; background: var(--primary); color: #fff; font-size: 11px; font-weight: 800; padding: 6px 14px; border-bottom-left-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.pkg-category { position: absolute; bottom: 12px; left: 12px; padding: 4px 10px; background: rgba(13,17,23,0.75); backdrop-filter: blur(6px); color: #fff; border-radius: var(--radius-sm); font-size: 11px; font-weight: 600; }
.pkg-body { padding: 20px; }
.pkg-name { font-size: 19px; font-weight: 800; color: var(--text-heading); margin-bottom: 6px; line-height: 1.3; }
.pkg-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.pkg-meta-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.pkg-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pkg-tag { padding: 3px 10px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 11px; color: var(--text-muted); font-weight: 500; }
.pkg-divider { height: 1px; background: var(--border-light); margin-bottom: 16px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; }
.pkg-price-from { font-size: 10px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.pkg-price { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--primary); }
.pkg-price sup { font-size: 14px; }
.pkg-price-note { font-size: 11px; color: var(--text-light); }

/* ════════════════
   WHY US
════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.why-card { padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.why-icon-wrap { width: 52px; height: 52px; background: var(--primary-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.why-title { font-size: 16px; font-weight: 800; color: var(--text-heading); margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ════════════════
   TESTIMONIALS
════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card { padding: 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.testimonial-card:hover { border-color: rgba(232,72,10,0.2); box-shadow: var(--shadow-md); }
.stars-row { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--accent); font-size: 15px; }
.testimonial-text { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; color: #fff; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--text-heading); }
.author-city { font-size: 12px; color: var(--text-muted); }

/* ════════════════
   BLOG
════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: var(--text-body); transition: var(--transition); box-shadow: var(--shadow-xs); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: rgba(232,72,10,0.2); }
.blog-img-wrap { height: 190px; overflow: hidden; background: var(--bg2); display: flex; align-items: center; justify-content: center; }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-no-img { font-size: 52px; color: var(--border); }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { display: inline-block; padding: 3px 10px; background: var(--primary-bg); border-radius: var(--radius-sm); font-size: 10px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-title { font-size: 17px; font-weight: 800; color: var(--text-heading); margin-bottom: 8px; line-height: 1.35; }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-meta { display: flex; gap: 14px; margin-top: 14px; font-size: 12px; color: var(--text-light); }

/* ════════════════
   SECTION — DARK BG
════════════════ */
.section-dark { background: var(--dark-bg); }
.section-dark .section-heading { color: var(--dark-text); }
.section-dark .section-sub { color: var(--dark-muted); }
.section-dark .divider { background: var(--primary); }
.section-dark .label-tag { background: rgba(232,72,10,0.15); border-color: rgba(232,72,10,0.3); color: #FF8C5A; }

/* ════════════════
   FOOTER
════════════════ */
footer { background: var(--dark-bg); border-top: 3px solid var(--primary); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-desc { font-size: 13px; color: var(--dark-muted); line-height: 1.75; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link { width: 36px; height: 36px; background: var(--dark-surface); border: 1px solid var(--dark-border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--dark-muted); text-decoration: none; font-size: 14px; font-weight: 700; transition: var(--transition); }
.social-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(232,72,10,0.1); }
.footer-col-title { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; color: var(--dark-text); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--dark-muted); text-decoration: none; font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-contact-row { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { color: var(--primary); font-size: 15px; margin-top: 1px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; color: var(--dark-muted); }
.footer-contact-text a { color: inherit; text-decoration: none; }
.footer-contact-text a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--dark-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--dark-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--primary); }

@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } }

/* ════════════════
   FLOATING BTNS
════════════════ */
.floating-actions { position: fixed; right: 20px; bottom: 28px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-action { display: flex; align-items: center; gap: 0; text-decoration: none; transition: var(--transition); }
.float-label { background: var(--dark-bg); color: #fff; font-size: 12px; font-weight: 700; padding: 7px 12px; border-radius: 6px 0 0 6px; opacity: 0; transform: translateX(8px); transition: var(--transition); pointer-events: none; white-space: nowrap; }
.float-action:hover .float-label { opacity: 1; transform: translateX(0); }
.float-icon { width: 50px; height: 50px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: var(--shadow-lg); transition: var(--transition); }
.float-icon:hover { transform: scale(1.08); }
.float-wa .float-icon { background: var(--wa-green); color: #fff; }
.float-call .float-icon { background: var(--primary); color: #fff; }

/* ════════════════
   ROUTE PAGE
════════════════ */
.page-hero { background: var(--dark-bg); padding: 100px 0 48px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary); }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { font-size: 13px; color: var(--dark-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--dark-border); font-size: 12px; }
.breadcrumb-current { font-size: 13px; color: var(--dark-muted); }
.page-hero-title { font-size: clamp(28px,4vw,50px); font-weight: 900; color: var(--dark-text); margin-bottom: 16px; }
.route-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--dark-surface); border: 1px solid var(--dark-border); border-radius: 4px; font-size: 13px; font-weight: 600; color: var(--dark-muted); }
.chip.chip-primary { background: rgba(232,72,10,0.15); border-color: rgba(232,72,10,0.3); color: #FF8C5A; }
.route-content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; padding: 48px 0; }
.content-article h2 { font-size: 26px; font-weight: 800; margin: 36px 0 14px; color: var(--text-heading); }
.content-article h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; color: var(--text-heading); }
.content-article p { color: var(--text-body); line-height: 1.8; margin-bottom: 16px; }
.content-article ul { padding-left: 20px; color: var(--text-body); line-height: 2; margin-bottom: 16px; }

/* FAQ */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-q { padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; color: var(--text-heading); background: var(--surface); transition: var(--transition); }
.faq-q:hover { background: var(--bg); color: var(--primary); }
.faq-arrow { font-size: 11px; color: var(--text-muted); transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.25s; font-size: 13px; color: var(--text-muted); line-height: 1.75; background: var(--bg); }
.faq-item.open .faq-a { max-height: 200px; padding: 14px 20px 18px; }

/* Sidebar */
.sticky-sidebar { position: sticky; top: 88px; }
.sidebar-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-xs); }
.sidebar-box-title { font-size: 17px; font-weight: 800; color: var(--text-heading); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.price-highlight { background: var(--primary-bg); border: 1px solid rgba(232,72,10,0.2); border-radius: var(--radius); padding: 16px; text-align: center; margin-top: 16px; }
.price-highlight .from { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.price-highlight .amount { font-family: 'Barlow Condensed', sans-serif; font-size: 38px; font-weight: 900; color: var(--primary); }

@media(max-width:900px) { .route-content-layout { grid-template-columns: 1fr; } .sticky-sidebar { position: static; } }

/* ════════════════
   FORMS — Inline
════════════════ */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 7px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text-heading); background: var(--bg); outline: none; transition: var(--transition); }
.form-control:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(232,72,10,0.08); }

/* ════════════════
   CTA SECTION
════════════════ */
.cta-section { background: var(--primary); padding: 72px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-title { font-size: clamp(26px,3.5vw,42px); font-weight: 900; color: #fff; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.8); margin-top: 8px; }
.cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════
   ADMIN PANEL
════════════════ */
.admin-body { background: #F4F5F7; color: #1E293B; font-family: 'Inter', sans-serif; min-height: 100vh; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 248px; flex-shrink: 0; background: #0D1117; position: fixed; top: 0; left: 0; bottom: 0; overflow-y: auto; display: flex; flex-direction: column; z-index: 100; }
.admin-sidebar-logo { padding: 20px; border-bottom: 1px solid #21262D; display: flex; align-items: center; gap: 10px; }
.admin-logo-mark { width: 34px; height: 34px; background: var(--primary); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.admin-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; color: #E6EDF3; }
.admin-logo-text span { color: var(--primary); }
.admin-sidebar-nav { padding: 16px 12px; flex: 1; }
.nav-section-label { font-size: 9px; font-weight: 700; color: #484F58; letter-spacing: 1.8px; text-transform: uppercase; padding: 8px 8px 4px; margin-top: 8px; }
.nav-link { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 6px; color: #8B949E; text-decoration: none; font-size: 13px; font-weight: 500; transition: var(--transition); margin-bottom: 2px; }
.nav-link:hover { background: #161B22; color: #E6EDF3; }
.nav-link.active { background: rgba(232,72,10,0.12); color: var(--primary); font-weight: 600; }
.nav-link svg { flex-shrink: 0; width: 16px; height: 16px; }
.nav-link .nav-badge { margin-left: auto; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 20px; }
.admin-main { margin-left: 248px; flex: 1; display: flex; flex-direction: column; }
.admin-topbar { background: #fff; border-bottom: 1px solid #E5E7EB; padding: 0 28px; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-page-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: #0D1117; }
.admin-user-area { display: flex; align-items: center; gap: 10px; }
.admin-avatar { width: 32px; height: 32px; background: var(--primary); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: #fff; }
.admin-username { font-size: 13px; font-weight: 600; color: #374151; }
.admin-content { padding: 28px; flex: 1; }
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 10px; padding: 20px; transition: var(--transition); }
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.stat-card-icon { width: 42px; height: 42px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; }
.stat-card-number { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 900; color: #0D1117; }
.stat-card-label { font-size: 12px; color: #9CA3AF; font-weight: 600; margin-top: 2px; }
.panel-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.panel-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #F3F4F6; }
.panel-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; color: #0D1117; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 10px 14px; font-size: 10px; font-weight: 700; color: #9CA3AF; text-transform: uppercase; letter-spacing: 1px; background: #F9FAFB; border-bottom: 1px solid #E5E7EB; }
.data-table td { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid #F3F4F6; vertical-align: middle; }
.data-table tr:hover td { background: #FAFAFA; }
.data-table tr:last-child td { border-bottom: none; }
.badge-status { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-new { background: #DCFCE7; color: #15803D; }
.badge-contacted { background: #FEF9C3; color: #A16207; }
.badge-confirmed { background: #DBEAFE; color: #1D4ED8; }
.badge-completed { background: #F3F4F6; color: #6B7280; }
.badge-cancelled { background: #FEE2E2; color: #DC2626; }
.badge-published { background: #DCFCE7; color: #15803D; }
.badge-draft { background: #F3F4F6; color: #6B7280; }
.badge-active { background: #DBEAFE; color: #1D4ED8; }
.badge-inactive { background: #FEE2E2; color: #DC2626; }
.admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: var(--transition); font-family: 'Inter', sans-serif; }
.admin-btn-primary { background: var(--primary); color: #fff; }
.admin-btn-primary:hover { background: var(--primary-dark); }
.admin-btn-secondary { background: #F3F4F6; color: #374151; border: 1px solid #E5E7EB; }
.admin-btn-secondary:hover { background: #E5E7EB; }
.admin-btn-danger { background: #FEE2E2; color: #DC2626; border: 1px solid #FECACA; }
.admin-btn-danger:hover { background: #FECACA; }
.admin-btn-wa { background: #DCFCE7; color: #15803D; border: 1px solid #BBF7D0; }
.admin-btn-wa:hover { background: #BBF7D0; }
.admin-input { width: 100%; padding: 9px 13px; border: 1.5px solid #E5E7EB; border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 13px; color: #1E293B; background: #fff; outline: none; transition: var(--transition); }
.admin-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,72,10,0.08); }
.admin-label { display: block; font-size: 11px; font-weight: 700; color: #6B7280; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 6px; }
.admin-form-group { margin-bottom: 18px; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 13px; font-weight: 600; }
.admin-alert-success { background: #DCFCE7; border: 1px solid #BBF7D0; color: #15803D; }
.admin-alert-error { background: #FEE2E2; border: 1px solid #FECACA; color: #DC2626; }
.admin-section-divider { font-size: 12px; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 1.2px; padding: 14px 0 8px; border-bottom: 1px solid #F3F4F6; margin-bottom: 18px; }
@media(max-width:768px) { .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; } .admin-sidebar.open { transform: translateX(0); } .admin-main { margin-left: 0; } .admin-content { padding: 18px; } .admin-grid-2 { grid-template-columns: 1fr; } }

/* ════════════════
   PACKAGE DETAIL PAGE
════════════════ */
.pkg-detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 36px; }
.itinerary-day { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.itinerary-day-header { padding: 14px 18px; display: flex; align-items: center; gap: 14px; cursor: pointer; background: var(--surface); transition: var(--transition); }
.itinerary-day-header:hover { background: var(--bg); }
.day-num { width: 36px; height: 36px; background: var(--primary); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.day-title { font-size: 15px; font-weight: 700; color: var(--text-heading); }
.day-body { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.itinerary-day.open .day-body { max-height: 400px; padding: 14px 18px 18px; }
.inclusion-list { list-style: none; }
.inclusion-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 13px; color: var(--text-body); }
.inclusion-list li:last-child { border-bottom: none; }
.incl-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.incl-yes { background: var(--success-bg); color: var(--success); }
.incl-no { background: #FEE2E2; color: #DC2626; }
@media(max-width:900px) { .pkg-detail-grid { grid-template-columns: 1fr; } }

/* ════════════════
   UTILITIES
════════════════ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-success { color: var(--success); }
.hidden { display: none !important; }
.overflow-x { overflow-x: auto; }

/* Animate on scroll */
.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: 0.08s; }
.anim-d2 { transition-delay: 0.16s; }
.anim-d3 { transition-delay: 0.24s; }
.anim-d4 { transition-delay: 0.32s; }

/* Autocomplete dropdown */
.ac-dropdown { position: absolute; z-index: 9999; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); max-height: 220px; overflow-y: auto; width: 100%; top: calc(100% + 4px); left: 0; }
.ac-item { padding: 11px 14px; font-size: 13px; color: var(--text-body); cursor: pointer; border-bottom: 1px solid var(--border-light); transition: var(--transition); }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--primary-bg); color: var(--primary); }
