/* ============================================================
   ROYAL UMRAH TAXI — theme.css
   Covers: all pages, all components, full responsive
   ============================================================ */

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

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

:root {
  --gold:        #C8960C;
  --gold-light:  #E8B520;
  --gold-pale:   #FDF3DC;
  --gold-dark:   #8B6500;
  --black:       #0A0A0A;
  --black-soft:  #111111;
  --white:       #FAF8F3;
  --text:        #1A1A1A;
  --muted:       #7A7268;
  --border:      #E8E0CC;
  --wa:          #25D366;
  --radius:      16px;
  --radius-lg:   24px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Urbanist', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,150,12,0.12);
  transition: background 0.4s;
}
nav.scrolled { background: rgba(10,10,10,0.98); }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo-img { height: 48px; width: auto; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.7); font-size:16px; font-weight: 500; position: relative; transition: color 0.25s; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--wa); color: #fff; padding: 9px 20px; border-radius: 50px;
  font-size:17px; font-weight: 700; text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3); flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.nav-cta svg { width: 15px; height: 15px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 1001; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s, background 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff; }
.mobile-menu { position: fixed; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(24px); border-bottom: 1px solid rgba(200,150,12,0.15); padding: 0 5%; max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.23,1,0.32,1), padding 0.35s; z-index: 999; }
.mobile-menu.open { max-height: 420px; padding: 20px 5% 28px; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { display: block; padding: 12px 4px; text-decoration: none; font-size:20px; font-weight: 600; color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.05); transition: color 0.2s, padding 0.2s; }
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .m-wa { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: var(--wa); color: #fff; padding: 12px 24px; border-radius: 50px; font-size:18px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }

/* ─── PAGE HERO (all inner pages) ─── */
.page-hero {
  min-height: 380px; position: relative;
  display: flex; align-items: center;
  background: var(--black); overflow: hidden;
  padding: 120px 5% 80px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 35%, rgba(200,150,12,0.13) 0%, transparent 65%),
              radial-gradient(ellipse 45% 55% at 15% 85%, rgba(200,150,12,0.07) 0%, transparent 60%),
              var(--black);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,150,12,0.055) 1px,transparent 1px), linear-gradient(90deg,rgba(200,150,12,0.055) 1px,transparent 1px);
  background-size: 80px 80px;
  
  mask-image: radial-gradient(ellipse 90% 75% at 50% 50%, black 30%, transparent 100%);
}
@keyframes gridDrift { 0% { background-position: 0 0; } 100% { background-position: 80px 80px; } }
.page-hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; width: 100%; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,150,12,0.11); border: 1px solid rgba(200,150,12,0.28); border-radius: 50px; padding: 6px 16px; margin-bottom: 20px; }
.page-hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: bPulse 2s ease-in-out infinite; }
@keyframes bPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.45; transform:scale(0.75); } }
.page-hero-badge span { font-size:14px; font-weight: 700; color: var(--gold); letter-spacing: 1.2px; text-transform: uppercase; }
.page-hero h1 { font-size: clamp(32px,5vw,58px); font-weight: 900; line-height: 1.08; color: #fff; letter-spacing: -1.2px; margin-bottom: 16px; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero h1 .italic { font-style: italic; font-weight: 300; }
.page-hero-sub { font-size:21px; font-weight: 400; color: rgba(255,255,255,0.82); line-height: 1.72; max-width: 560px; }

/* ─── SECTION BASE ─── */
section { padding: 96px 5%; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-label { font-size:14px; font-weight: 700; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(30px,3.8vw,50px); font-weight: 900; line-height: 1.1; letter-spacing: -0.8px; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size:20px; color: var(--muted); max-width: 500px; line-height: 1.72; }

/* ─── BUTTONS ─── */
.btn-wa { background: var(--wa); color: #fff; padding: 14px 34px; border-radius: 50px; font-size:18px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 26px rgba(37,211,102,0.33); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 38px rgba(37,211,102,0.48); }
.btn-wa svg { width: 19px; height: 19px; fill: #fff; }
.btn-gold { background: var(--gold); color: #000; padding: 14px 34px; border-radius: 50px; font-size:18px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 9px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 26px rgba(200,150,12,0.33); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,12,0.45); }
.btn-call { background: transparent; color: var(--text); padding: 14px 34px; border-radius: 50px; font-size:18px; font-weight: 700; text-decoration: none; border: 1.5px solid rgba(26,26,26,0.22); display: inline-flex; align-items: center; gap: 9px; transition: all 0.25s; }
.btn-call:hover { border-color: rgba(26,26,26,0.5); background: rgba(26,26,26,0.04); }
.btn-outline-white { background: transparent; color: #fff; padding: 13px 32px; border-radius: 50px; font-size:18px; font-weight: 700; text-decoration: none; border: 1.5px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; gap: 9px; transition: all 0.25s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.05); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.2,0.8,0.4,1), transform 0.65s cubic-bezier(0.2,0.8,0.4,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.26s; }
.reveal-d4 { transition-delay: 0.34s; }

/* ─── HERO BOOKING FORM ─── */
.hero-form-wrap { background: rgba(255,255,255,0.045); border: 1px solid rgba(200,150,12,0.2); border-radius: 24px; padding: 32px; backdrop-filter: blur(12px); }
.hf-title { font-size:22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.hf-sub { font-size:17px; color: rgba(255,255,255,0.80); margin-bottom: 24px; }
.hf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hf-full { grid-column: 1 / -1; }
.hf-group { display: flex; flex-direction: column; gap: 6px; }
.hf-label { font-size:14px; font-weight: 700; color: rgba(255,255,255,0.80); letter-spacing: 1px; text-transform: uppercase; }
.hf-input, .hf-select {
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,150,12,0.18);
  border-radius: 10px;
  color: #fff; font-family: 'Urbanist', sans-serif; font-size:18px; font-weight: 500;
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none; -webkit-appearance: none;
}
.hf-input::placeholder { color: rgba(255,255,255,0.65); }
.hf-input:focus, .hf-select:focus { border-color: rgba(200,150,12,0.55); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 3px rgba(200,150,12,0.1); }
.hf-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C8960C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; cursor: pointer; }
.hf-select option { background: #1a1a1a; color: #fff; }
.hf-submit { width: 100%; padding: 14px; background: var(--gold); color: #000; border: none; border-radius: 12px; font-family: 'Urbanist', sans-serif; font-size:19px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow: 0 4px 22px rgba(200,150,12,0.38); }
.hf-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,12,0.52); }
.hf-submit svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.hf-note { font-size:14px; color: rgba(255,255,255,0.65); text-align: center; margin-top: 10px; }

/* ─── WHY US ─── */
#why { background: var(--black-soft); position: relative; overflow: hidden; }
.why-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 70% at 85% 50%,rgba(200,150,12,0.07) 0%,transparent 65%); pointer-events: none; }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; }
.why-quote { font-size: clamp(15px,1.6vw,19px); font-style: italic; font-weight: 300; color: rgba(255,255,255,0.80); line-height: 1.75; padding-left: 22px; border-left: 2.5px solid var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,150,12,0.09); border-radius: var(--radius); padding: 30px 26px; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); position: relative; overflow: hidden; }
.why-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,150,12,0.07),transparent 60%); opacity: 0; transition: opacity 0.35s; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--gold),var(--gold-light)); transform: scaleX(0); transform-origin: left; transition: transform 0.38s; }
.why-card:hover { transform: translateY(-7px); border-color: rgba(200,150,12,0.32); box-shadow: 0 20px 55px rgba(0,0,0,0.4); }
.why-card:hover::before { opacity: 1; }
.why-card:hover::after { transform: scaleX(1); }
.why-num { font-size:14px; font-weight: 700; color: rgba(200,150,12,0.35); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.why-icon { width: 46px; height: 46px; background: rgba(200,150,12,0.1); border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: background 0.3s, transform 0.3s; }
.why-card:hover .why-icon { background: rgba(200,150,12,0.2); transform: scale(1.08); }
.why-icon svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.why-card-title { font-size:21px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.why-card-text { font-size:17px; color: rgba(255,255,255,0.82); line-height: 1.72; }

/* ─── SERVICES ─── */
#services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-card { border-radius: var(--radius-lg); padding: 38px; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.32s; text-decoration: none; display: block; }
.service-card:nth-child(odd) { background: var(--black-soft); }
.service-card:nth-child(even) { background: var(--gold-pale); }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,150,12,0.08),transparent 55%); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0,0,0,0.22); }
.service-card:hover::before { opacity: 1; }
.sc-inner { position: relative; z-index: 1; }
.sc-icon { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: transform 0.3s; }
.service-card:nth-child(odd) .sc-icon { background: rgba(200,150,12,0.12); }
.service-card:nth-child(even) .sc-icon { background: rgba(200,150,12,0.15); }
.service-card:hover .sc-icon { transform: scale(1.08) rotate(-4deg); }
.sc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.sc-title { font-size:25px; font-weight: 800; margin-bottom: 10px; }
.service-card:nth-child(odd) .sc-title { color: #fff; }
.service-card:nth-child(even) .sc-title { color: var(--text); }
.sc-text { font-size:18px; line-height: 1.72; margin-bottom: 18px; }
.service-card:nth-child(odd) .sc-text { color: rgba(255,255,255,0.80); }
.service-card:nth-child(even) .sc-text { color: var(--muted); }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.sc-list li { font-size:17px; font-weight: 500; padding-left: 18px; position: relative; }
.sc-list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.service-card:nth-child(odd) .sc-list li { color: rgba(255,255,255,0.55); }
.service-card:nth-child(even) .sc-list li { color: var(--muted); }
.sc-arrow { position: absolute; bottom: 28px; right: 28px; z-index: 1; transition: transform 0.28s; }
.service-card:hover .sc-arrow { transform: translate(4px,-4px); }
.sc-arrow svg { width: 20px; height: 20px; stroke: rgba(200,150,12,0.5); fill: none; stroke-width: 2; }

/* ─── FLEET ─── */
#fleet { background: var(--black-soft); position: relative; overflow: hidden; }
.fleet-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 24px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fleet-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,150,12,0.09); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.32s, border-color 0.28s; position: relative; }
.fleet-card:hover { transform: translateY(-8px); box-shadow: 0 28px 64px rgba(0,0,0,0.45); border-color: rgba(200,150,12,0.28); }
.fleet-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: rgba(255,255,255,0.03); position: relative; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #000; font-size:13px; font-weight: 800; padding: 4px 10px; border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; }
.fleet-body { padding: 24px 22px 20px; }
.fleet-type { font-size:14px; font-weight: 700; color: rgba(200,150,12,0.6); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.fleet-name { font-size:24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.fleet-desc { font-size:17px; color: rgba(255,255,255,0.80); line-height: 1.65; margin-bottom: 16px; }
.fleet-specs { display: flex; gap: 7px; margin-bottom: 20px; flex-wrap: wrap; }
.fleet-spec { background: rgba(200,150,12,0.07); border: 1px solid rgba(200,150,12,0.14); border-radius: 50px; padding: 4px 12px; font-size:14px; font-weight: 600; color: rgba(255,255,255,0.82); }
.fleet-book { display: flex; align-items: center; justify-content: space-between; background: rgba(200,150,12,0.07); border: 1px solid rgba(200,150,12,0.18); border-radius: 11px; padding: 11px 15px; text-decoration: none; transition: background 0.25s, border-color 0.25s; }
.fleet-book:hover { background: var(--gold); border-color: var(--gold); }
.fleet-book span { font-size:17px; font-weight: 700; color: var(--gold); transition: color 0.25s; }
.fleet-book:hover span { color: #000; }
.fleet-book svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; transition: stroke 0.25s, transform 0.25s; }
.fleet-book:hover svg { stroke: #000; transform: translateX(3px); }

/* ─── HOW IT WORKS ─── */
#how { background: var(--gold-pale); position: relative; overflow: hidden; }
.how-bg { position: absolute; inset: 0; background-image: radial-gradient(rgba(200,150,12,0.08) 1px, transparent 1px); background-size: 30px 30px; }
.how-header { text-align: center; margin-bottom: 68px; }
.how-header .section-sub { margin: 0 auto; }
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 50px; left: calc(16.67% + 18px); right: calc(16.67% + 18px); height: 1.5px; background: linear-gradient(90deg,var(--gold),rgba(200,150,12,0.25) 100%); z-index: 0; }
.how-step { text-align: center; padding: 0 28px; position: relative; z-index: 1; }
.how-step-num { width: 62px; height: 62px; border-radius: 50%; background: #fff; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; font-size:23px; font-weight: 900; color: var(--gold); box-shadow: 0 8px 24px rgba(200,150,12,0.18); position: relative; transition: background 0.3s, transform 0.3s; }
.how-step:hover .how-step-num { background: var(--gold); color: #000; transform: scale(1.1); }
.how-step-num::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(200,150,12,0.2); animation: ripple 2.6s ease-out infinite; }
.how-step:nth-child(2) .how-step-num::after { animation-delay: -0.85s; }
.how-step:nth-child(3) .how-step-num::after { animation-delay: -1.7s; }
@keyframes ripple { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.55); opacity: 0; } }
.how-step-title { font-size:22px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.how-step-text { font-size:18px; color: var(--muted); line-height: 1.72; }

/* ─── DESTINATIONS ─── */
#destinations { background: var(--black-soft); position: relative; overflow: hidden; }
.dest-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 0%,rgba(200,150,12,0.07) 0%,transparent 60%); pointer-events: none; }
.dest-header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; margin-bottom: 56px; }
.dest-header-right { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 16px; }
.dest-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-filter-btn { padding: 7px 18px; border-radius: 50px; font-family: 'Urbanist', sans-serif; font-size:15px; font-weight: 700; letter-spacing: 0.5px; border: 1px solid rgba(200,150,12,0.2); background: transparent; color: rgba(255,255,255,0.80); cursor: pointer; transition: all 0.25s; }
.dest-filter-btn:hover, .dest-filter-btn.active { background: rgba(200,150,12,0.12); border-color: rgba(200,150,12,0.4); color: var(--gold); }
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: auto auto; gap: 16px; }
.dest-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,150,12,0.09); border-radius: var(--radius); padding: 28px 22px; transition: all 0.32s cubic-bezier(0.34,1.56,0.64,1); cursor: pointer; position: relative; overflow: hidden; }
.dest-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(200,150,12,0.06),transparent 60%); opacity: 0; transition: opacity 0.3s; }
.dest-card:hover { transform: translateY(-6px); border-color: rgba(200,150,12,0.3); box-shadow: 0 18px 48px rgba(0,0,0,0.35); }
.dest-card:hover::before { opacity: 1; }
.dest-card.featured { grid-column: span 2; grid-row: span 2; background: rgba(200,150,12,0.07); border-color: rgba(200,150,12,0.2); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px 32px; }
.dest-card.featured::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.7); pointer-events: none; }
.dest-card.featured .dest-inner { position: relative; z-index: 1; }
.dest-card:not(.featured) { display: flex; flex-direction: column; justify-content: space-between; }
.dest-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,150,12,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: auto; transition: background 0.3s, transform 0.3s; }
.dest-card:hover .dest-icon { background: rgba(200,150,12,0.22); transform: scale(1.08) rotate(-4deg); }
.dest-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.dest-card.featured .dest-icon { width: 52px; height: 52px; margin-bottom: 16px; }
.dest-card.featured .dest-icon svg { width: 22px; height: 22px; }
.dest-bottom { margin-top: 18px; }
.dest-name { font-size:21px; font-weight: 800; color: #fff; margin-bottom: 4px; line-height: 1.2; }
.dest-card.featured .dest-name { font-size:26px; margin-bottom: 6px; }
.dest-type { font-size:15px; font-weight: 500; color: rgba(255,255,255,0.80); }
.dest-card.featured .dest-type { font-size:18px; color: rgba(255,255,255,0.82); }
.dest-tag { display: inline-block; margin-top: 10px; padding: 4px 12px; border-radius: 50px; background: rgba(200,150,12,0.15); border: 1px solid rgba(200,150,12,0.25); font-size:14px; font-weight: 700; color: var(--gold); letter-spacing: 0.5px; }
.dest-num { position: absolute; top: 18px; right: 18px; font-size:13px; font-weight: 700; color: rgba(200,150,12,0.3); letter-spacing: 1.5px; }

/* ─── TRUST STATS ─── */
#trust { background: var(--black); position: relative; overflow: hidden; }
.trust-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 50% 100%,rgba(200,150,12,0.07) 0%,transparent 60%); pointer-events: none; }
.trust-header { text-align: center; margin-bottom: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(200,150,12,0.09); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,150,12,0.09); }
.trust-stat { background: rgba(255,255,255,0.02); padding: 40px 22px; text-align: center; transition: background 0.28s; }
.trust-stat:hover { background: rgba(200,150,12,0.055); }
.trust-stat-num { font-size: clamp(34px,3.8vw,50px); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.trust-stat-label { font-size:17px; font-weight: 600; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.8px; }

/* ─── CTA BANNER ─── */
#cta-banner { background: var(--gold-pale); position: relative; overflow: hidden; padding: 80px 5%; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 55% 80% at 25% 50%,rgba(200,150,12,0.14) 0%,transparent 65%); pointer-events: none; }
.cta-inner { max-width: 660px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner .section-sub { margin: 0 auto 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid rgba(200,150,12,0.1); padding: 56px 5% 30px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { height: 100px !important; width: auto; display: block; object-fit: contain; }
.footer-tagline { font-size:17px; color: rgba(255,255,255,0.70); line-height: 1.72; margin-bottom: 18px; max-width: 230px; }
.footer-contact-item { display: flex; align-items: center; gap: 7px; font-size:17px; color: rgba(255,255,255,0.80); margin-bottom: 7px; }
.footer-contact-item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.footer-col-title { font-size:14px; font-weight: 700; color: rgba(255,255,255,0.65); letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { text-decoration: none; font-size:17px; color: rgba(255,255,255,0.80); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size:15px; color: rgba(255,255,255,0.62); }
.footer-socials { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.25s; }
.social-btn:hover { background: rgba(200,150,12,0.13); border-color: rgba(200,150,12,0.28); }
.social-btn svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.38); transition: fill 0.25s; }
.social-btn:hover svg { fill: var(--gold); }

/* ─── FLOATING WA ─── */
.float-wa { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 54px; height: 54px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 28px rgba(37,211,102,0.42); text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.float-wa:hover { transform: scale(1.13); box-shadow: 0 12px 40px rgba(37,211,102,0.58); animation: none; }
@keyframes fltBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.float-wa svg { width: 26px; height: 26px; fill: #fff; }
.float-wa-pulse { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--wa); animation: waPulse 2.8s ease-out infinite; pointer-events: none; }
@keyframes waPulse { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(1.65); opacity: 0; } }

/* ───────────────────────────────────────────────────────────
   SERVICES PAGE
─────────────────────────────────────────────────────────── */
.services-tabs-nav { display: flex; gap: 4px; background: rgba(255,255,255,0.03); border: 1px solid rgba(200,150,12,0.12); border-radius: 60px; padding: 5px; flex-wrap: wrap; }
.stab { padding: 10px 24px; border-radius: 50px; font-family: 'Urbanist',sans-serif; font-size:17px; font-weight: 700; background: none; border: none; color: rgba(255,255,255,0.80); cursor: pointer; transition: all 0.28s; white-space: nowrap; }
.stab.active { background: var(--gold); color: #000; box-shadow: 0 4px 18px rgba(200,150,12,0.35); }
.stab:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.06); }
.stab-panel { display: none; }
.stab-panel.active { display: block; }
.stab-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 64px 0 56px; }
.stab-hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.stab-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.stab-hero-content .section-label { color: var(--gold); }
.stab-hero-content h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: #fff; letter-spacing: -0.8px; margin-bottom: 16px; line-height: 1.12; }
.stab-hero-content p { font-size:20px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 28px; }
.stab-routes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.stab-routes li { display: flex; align-items: center; gap: 10px; font-size:18px; font-weight: 600; color: rgba(255,255,255,0.7); }
.stab-routes li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.stab-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding-bottom: 64px; border-bottom: 1px solid rgba(200,150,12,0.1); }
.stab-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(200,150,12,0.1); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; }
.stab-card:hover { background: rgba(200,150,12,0.05); border-color: rgba(200,150,12,0.25); transform: translateY(-4px); }
.stab-card-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,150,12,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.stab-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.stab-card h4 { font-size:18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.stab-card p { font-size:15px; color: rgba(255,255,255,0.80); line-height: 1.65; }
.stab-cta { background: rgba(255,255,255,0.03); border: 1px solid rgba(200,150,12,0.15); border-radius: var(--radius-lg); padding: 40px; display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 56px; flex-wrap: wrap; }
.stab-cta-text h3 { font-size:22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.stab-cta-text p { font-size:18px; color: rgba(255,255,255,0.80); }

/* ───────────────────────────────────────────────────────────
   FLEET PAGE
─────────────────────────────────────────────────────────── */
.fleet-page-section { background: var(--black-soft); }
.fleet-trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(200,150,12,0.09); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,150,12,0.09); margin-bottom: 64px; }
.fleet-trust-item { background: rgba(255,255,255,0.02); padding: 28px 20px; text-align: center; }
.fleet-trust-item strong { display: block; font-size:24px; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
.fleet-trust-item span { font-size:15px; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; }
.fleet-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 64px; padding-bottom: 64px; border-bottom: 1px solid rgba(200,150,12,0.1); }
.fleet-featured-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.fleet-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.fleet-featured:hover .fleet-featured-img img { transform: scale(1.04); }
.fleet-featured-content .section-label { color: var(--gold); }
.fleet-featured-content h2 { font-size: clamp(26px,3.2vw,42px); font-weight: 900; color: #fff; letter-spacing: -0.8px; margin-bottom: 14px; }
.fleet-featured-content p { font-size:19px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 24px; }
.fleet-featured-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.fleet-all-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ───────────────────────────────────────────────────────────
   BOOKING PAGE
─────────────────────────────────────────────────────────── */
.booking-section { background: var(--white); }
.booking-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
.booking-form-wrap { background: var(--black-soft); border: 1px solid rgba(200,150,12,0.15); border-radius: var(--radius-lg); padding: 40px; }
.booking-form-title { font-size:24px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.booking-form-sub { font-size:18px; color: rgba(255,255,255,0.80); margin-bottom: 32px; }
.bform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bform-full { grid-column: 1 / -1; }
.bform-group { display: flex; flex-direction: column; gap: 7px; }
.bform-label { font-size:14px; font-weight: 700; color: rgba(255,255,255,0.80); letter-spacing: 1px; text-transform: uppercase; }
.bform-input, .bform-select, .bform-textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.15);
  border-radius: 12px;
  color: #fff; font-family: 'Urbanist',sans-serif; font-size:18px; font-weight: 500;
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none; -webkit-appearance: none;
}
.bform-input::placeholder, .bform-textarea::placeholder { color: rgba(255,255,255,0.65); }
.bform-input:focus, .bform-select:focus, .bform-textarea:focus { border-color: rgba(200,150,12,0.5); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(200,150,12,0.1); }
.bform-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C8960C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.bform-select option { background: #1a1a1a; color: #fff; }
.bform-textarea { resize: vertical; min-height: 100px; }
.bform-submit { width: 100%; padding: 16px; background: var(--gold); color: #000; border: none; border-radius: 14px; font-family: 'Urbanist',sans-serif; font-size:20px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow: 0 4px 24px rgba(200,150,12,0.4); margin-top: 10px; }
.bform-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(200,150,12,0.55); }
.bform-submit svg { width: 20px; height: 20px; fill: currentColor; }
.bform-note { font-size:15px; color: rgba(255,255,255,0.65); text-align: center; margin-top: 12px; }
.booking-sidebar { position: sticky; top: 100px; }
.booking-trust-card { background: var(--black-soft); border: 1px solid rgba(200,150,12,0.12); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 22px; }
.booking-trust-title { font-size:20px; font-weight: 800; color: #fff; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid rgba(200,150,12,0.12); }
.booking-trust-items { display: flex; flex-direction: column; gap: 16px; }
.bti { display: flex; align-items: flex-start; gap: 12px; }
.bti-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(200,150,12,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bti-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.bti-text strong { display: block; font-size:18px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.bti-text span { font-size:15px; color: rgba(255,255,255,0.80); line-height: 1.55; }
.booking-wa-card { background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.2); border-radius: var(--radius-lg); padding: 28px; text-align: center; }
.booking-wa-card p { font-size:18px; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.65; }
.booking-fleet-img { border-radius: var(--radius); overflow: hidden; margin-top: 22px; }
.booking-fleet-img img { width: 100%; height: 180px; object-fit: cover; }

/* ───────────────────────────────────────────────────────────
   ABOUT PAGE
─────────────────────────────────────────────────────────── */
.about-story { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); display: block; }
.about-img-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: #000; border-radius: var(--radius); padding: 20px 24px; font-size:17px; font-weight: 800; line-height: 1.4; box-shadow: 0 12px 36px rgba(200,150,12,0.4); }
.about-img-badge strong { display: block; font-size:28px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.about-content .section-label { color: var(--gold); }
.about-content h2 { font-size: clamp(28px,3.5vw,46px); font-weight: 900; color: var(--text); letter-spacing: -0.8px; margin-bottom: 18px; line-height: 1.1; }
.about-content p { font-size:20px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-value { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.about-value strong { display: block; font-size:18px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.about-value span { font-size:17px; color: var(--muted); line-height: 1.55; }

/* About Why Us (dark) */
.about-why { background: var(--black-soft); }
.about-why .section-title { color: #fff; }

/* About Coverage */
.about-coverage { background: var(--white); }
.coverage-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
.coverage-card { background: var(--gold-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; transition: all 0.3s; text-align: center; }
.coverage-card:hover { transform: translateY(-5px); box-shadow: 0 14px 38px rgba(200,150,12,0.12); border-color: rgba(200,150,12,0.3); }
.coverage-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(200,150,12,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.coverage-icon svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.coverage-name { font-size:20px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.coverage-desc { font-size:15px; color: var(--muted); line-height: 1.55; }
.coverage-tag { display: inline-block; margin-top: 10px; padding: 3px 10px; border-radius: 50px; background: rgba(200,150,12,0.12); border: 1px solid rgba(200,150,12,0.22); font-size:13px; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.5px; }

/* ───────────────────────────────────────────────────────────
   CONTACT PAGE
─────────────────────────────────────────────────────────── */
.contact-section { background: var(--black-soft); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info .section-label { color: var(--gold); }
.contact-info h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: #fff; letter-spacing: -0.8px; margin-bottom: 16px; }
.contact-info p { font-size:20px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 36px; }
.contact-wa-block { background: rgba(37,211,102,0.07); border: 1px solid rgba(37,211,102,0.18); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 28px; }
.contact-wa-block h3 { font-size:20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.contact-wa-block p { font-size:17px; color: rgba(255,255,255,0.80); margin-bottom: 18px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(200,150,12,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.contact-detail-info strong { display: block; font-size:18px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.contact-detail-info span { font-size:17px; color: rgba(255,255,255,0.80); }
.contact-social-title { font-size:17px; font-weight: 700; color: rgba(255,255,255,0.78); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.contact-socials { display: flex; gap: 10px; }
.contact-social-btn { display: flex; align-items: center; gap: 9px; padding: 10px 18px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); text-decoration: none; font-size:17px; font-weight: 700; color: rgba(255,255,255,0.82); transition: all 0.25s; }
.contact-social-btn:hover { background: rgba(200,150,12,0.1); border-color: rgba(200,150,12,0.25); color: var(--gold); }
.contact-social-btn svg { width: 16px; height: 16px; fill: currentColor; transition: fill 0.25s; }
/* Contact form */
.contact-form-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(200,150,12,0.12); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-title { font-size:24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.contact-form-sub { font-size:17px; color: rgba(255,255,255,0.80); margin-bottom: 28px; }
.cform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cform-full { grid-column: 1 / -1; }
.cform-group { display: flex; flex-direction: column; gap: 6px; }
.cform-label { font-size:14px; font-weight: 700; color: rgba(255,255,255,0.80); letter-spacing: 1px; text-transform: uppercase; }
.cform-input, .cform-select, .cform-textarea {
  width: 100%; padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,150,12,0.14);
  border-radius: 11px;
  color: #fff; font-family: 'Urbanist',sans-serif; font-size:18px; font-weight: 500;
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none; -webkit-appearance: none;
}
.cform-input::placeholder, .cform-textarea::placeholder { color: rgba(255,255,255,0.65); }
.cform-input:focus, .cform-select:focus, .cform-textarea:focus { border-color: rgba(200,150,12,0.5); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(200,150,12,0.08); }
.cform-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C8960C' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.cform-select option { background: #1a1a1a; color: #fff; }
.cform-textarea { resize: vertical; min-height: 110px; }
.cform-submit { width: 100%; padding: 15px; background: var(--gold); color: #000; border: none; border-radius: 12px; font-family: 'Urbanist',sans-serif; font-size:19px; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; transition: background 0.25s, transform 0.2s, box-shadow 0.25s; box-shadow: 0 4px 22px rgba(200,150,12,0.38); margin-top: 8px; }
.cform-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,12,0.52); }
.cform-submit svg { width: 18px; height: 18px; fill: currentColor; }
.cform-note { font-size:14px; color: rgba(255,255,255,0.65); text-align: center; margin-top: 10px; }
.form-success-msg { display: none; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.22); border-radius: 12px; padding: 16px 20px; font-size:18px; font-weight: 600; color: #25D366; margin-top: 16px; text-align: center; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fleet-grid, .fleet-all-grid { grid-template-columns: 1fr 1fr !important; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dest-card.featured { grid-column: span 2; grid-row: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-trust { grid-template-columns: repeat(2,1fr); }
  .stab-cards { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: repeat(2,1fr); }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .stab-hero { grid-template-columns: 1fr; gap: 36px; }
  .fleet-featured { grid-template-columns: 1fr; gap: 36px; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-tabs-nav { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 4%; }
  .page-hero { padding: 100px 4% 60px; min-height: 320px; }
  .why-header { grid-template-columns: 1fr; gap: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-header { flex-direction: column; align-items: flex-start; }
  .fleet-grid, .fleet-all-grid { grid-template-columns: 1fr !important; }
  .how-steps { grid-template-columns: 1fr; gap: 36px; }
  .how-steps::before { display: none; }
  .dest-header { grid-template-columns: 1fr; gap: 20px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.featured { grid-column: span 2; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .fleet-trust { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hf-grid { grid-template-columns: 1fr; }
  .hf-full { grid-column: 1; }
  .bform-grid { grid-template-columns: 1fr; }
  .bform-full { grid-column: 1; }
  .cform-grid { grid-template-columns: 1fr; }
  .cform-full { grid-column: 1; }
  .stab-cards { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .contact-socials { flex-wrap: wrap; }
  .stab-cta { flex-direction: column; text-align: center; }
  section { padding: 72px 4%; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card.featured { grid-column: span 1; grid-row: span 1; }
  .trust-grid, .fleet-trust { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .services-tabs-nav { flex-direction: column; border-radius: 16px; }
  .stab { text-align: center; }
  .about-values { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE (page-about.php specific) ─── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  min-height: 400px;
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: #000;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 36px rgba(200,150,12,0.4);
  text-align: center;
}
.about-badge-num {
  display: block;
  font-size:30px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-label {
  display: block;
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.about-text {
  font-size:20px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gold-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.about-value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,150,12,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg {
  width: 18px;
  height: 18px;
}
.about-value-title {
  font-size:17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}
.about-value-text {
  font-size:15px;
  color: var(--muted);
  line-height: 1.55;
}
.about-coverage { background: var(--white); }
.about-coverage-header { text-align: center; margin-bottom: 52px; }
.about-coverage-header .section-sub { margin: 0 auto; }
.coverage-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(200,150,12,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.coverage-card-icon svg {
  width: 20px;
  height: 20px;
}
.coverage-card-name {
  font-size:19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.coverage-card-type {
  font-size:15px;
  color: var(--muted);
}

/* ─── CONTACT PAGE (page-contact.php specific) ─── */
.contact-section { background: var(--black-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-wa-block {
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-wa-icon {
  width: 48px;
  height: 48px;
  background: rgba(37,211,102,0.12);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-wa-icon svg {
  width: 22px;
  height: 22px;
  fill: #25D366;
}
.contact-wa-content { flex: 1; }
.contact-wa-title {
  font-size:20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.contact-wa-sub {
  font-size:17px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200,150,12,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px;
  height: 18px;
}
.contact-detail-label {
  font-size:14px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-detail-value {
  font-size:18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
a.contact-detail-value:hover { color: var(--gold); }
.contact-socials { margin-top: 32px; }
.contact-socials-label {
  font-size:14px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.contact-socials-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  font-size:17px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  transition: all 0.25s;
}
.contact-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.contact-social-btn:hover {
  background: rgba(200,150,12,0.1);
  border-color: rgba(200,150,12,0.25);
  color: var(--gold);
}
.contact-social-wa:hover {
  background: rgba(37,211,102,0.1);
  border-color: rgba(37,211,102,0.25);
  color: #25D366;
}
.contact-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(200,150,12,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-header { margin-bottom: 28px; }
.contact-form-title {
  font-size:24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size:17px;
  color: rgba(255,255,255,0.80);
}
.contact-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-success {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size:18px;
  font-weight: 600;
  color: #25D366;
  margin-bottom: 20px;
}
.hf-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Responsive additions */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-fields { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .about-values { grid-template-columns: 1fr; }
  .about-img-badge { bottom: 10px; right: 10px; }
  .contact-form-fields { grid-template-columns: 1fr; }
}
