/* =====================================================
   SERVICE PAGE REDESIGN — Al Tawfeeq Transport
   Applied globally to all pages/*.html
   ===================================================== */

/* ── Variables (mirror homepage) ───────────────────── */
:root {
  --sp-gold:    #db9c28;
  --sp-gold2:   #e8b84b;
  --sp-dark:    #0b0b0f;
  --sp-card:    rgba(16,16,22,0.96);
  --sp-border:  rgba(219,156,40,0.18);
  --sp-muted:   rgba(255,255,255,0.48);
  --sp-tr:      0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Body ───────────────────────────────────────────── */
body {
  background: #0b0b0f;
  color: rgba(255,255,255,0.82);
  font-family: 'Inter', sans-serif;
}

/* ── HERO SECTION ───────────────────────────────────── */
section.relative {
  min-height: 480px !important;
}

/* Gradient overlay — richer than the plain bg-black/50 */
section.relative > .absolute[class*="bg-black"] {
  background: linear-gradient(
    to top,
    rgba(5,5,8,0.92) 0%,
    rgba(5,5,8,0.55) 45%,
    rgba(5,5,8,0.2)  100%
  ) !important;
  opacity: 1 !important;
}

/* Hero title */
section.relative h1 {
  font-size: clamp(2rem, 5vw, 3.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  background: linear-gradient(135deg, #fff 30%, var(--sp-gold2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.6));
  padding: 0 1.5rem !important;
}

/* Gold accent rule under hero title */
section.relative .relative::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--sp-gold);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* Hero image — subtle zoom-in on load */
section.relative > img.absolute {
  transform-origin: center;
  animation: spHeroZoom 8s ease-in-out infinite alternate;
}

@keyframes spHeroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

/* ── MAIN CONTENT WRAPPER ───────────────────────────── */
div.max-w-7xl.mx-auto.px-4.py-10,
div.max-w-7xl.mx-auto.px-6.py-10,
div.max-w-7xl.mx-auto.px-4.py-12 {
  background: transparent;
}

/* ── HEADINGS ───────────────────────────────────────── */
.lg\:col-span-2 h2,
.space-y-8 h2,
main h2,
article h2 {
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding-left: 1rem !important;
  border-left: 3px solid var(--sp-gold) !important;
  margin: 2.2rem 0 1rem !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
}

.lg\:col-span-2 h3,
.space-y-8 h3 {
  color: var(--sp-gold) !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

section h2.text-3xl,
section h2.text-4xl,
div h2.text-3xl,
div h2.text-4xl {
  color: var(--sp-gold) !important;
}

/* ── PARAGRAPHS ─────────────────────────────────────── */
.lg\:col-span-2 p,
.space-y-8 p {
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.85 !important;
  font-size: 0.95rem !important;
}

/* ── FEATURE LISTS ──────────────────────────────────── */
.lg\:col-span-2 ul,
.space-y-8 ul {
  list-style: none !important;
  padding-left: 0 !important;
}

.lg\:col-span-2 ul li,
.space-y-8 ul li {
  position: relative;
  padding: 0.6rem 0.8rem 0.6rem 2.2rem !important;
  margin-bottom: 0.4rem !important;
  color: rgba(255,255,255,0.8) !important;
  background: rgba(219,156,40,0.04);
  border-radius: 8px;
  border: 1px solid rgba(219,156,40,0.08);
  transition: background var(--sp-tr), border-color var(--sp-tr);
  font-size: 0.9rem !important;
}

.lg\:col-span-2 ul li:hover,
.space-y-8 ul li:hover {
  background: rgba(219,156,40,0.08);
  border-color: rgba(219,156,40,0.22);
}

.lg\:col-span-2 ul li::before,
.space-y-8 ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sp-gold);
  font-size: 0.75rem;
}

/* ── GALLERY IMAGES ─────────────────────────────────── */
.grid img.rounded-lg,
.gallery-img {
  transition: transform 0.4s var(--sp-tr), box-shadow 0.4s, border-color 0.4s !important;
  border: 1px solid rgba(219,156,40,0.1) !important;
  border-radius: 10px !important;
}

.grid img.rounded-lg:hover,
.gallery-img:hover {
  transform: scale(1.045) !important;
  border-color: rgba(219,156,40,0.45) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.55) !important;
}

/* ── DARK CARDS (bg-gray-800 / bg-gray-900) ─────────── */
.bg-gray-800.rounded-lg,
.bg-gray-900.rounded-lg {
  background: linear-gradient(135deg, rgba(14,14,20,0.97) 0%, rgba(20,18,12,0.97) 100%) !important;
  border: 1px solid var(--sp-border) !important;
  backdrop-filter: blur(6px);
  transition: transform var(--sp-tr), border-color var(--sp-tr), box-shadow var(--sp-tr);
}

.bg-gray-800.rounded-lg:hover,
.bg-gray-900.rounded-lg:hover {
  transform: translateY(-3px);
  border-color: rgba(219,156,40,0.35) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(219,156,40,0.12) !important;
}

/* White bg cards — convert to dark */
.bg-white.rounded-lg {
  background: linear-gradient(135deg, rgba(14,14,20,0.98) 0%, rgba(20,18,12,0.98) 100%) !important;
  border: 1px solid var(--sp-border) !important;
  color: rgba(255,255,255,0.85) !important;
  transition: transform var(--sp-tr), border-color var(--sp-tr), box-shadow var(--sp-tr);
}

.bg-white.rounded-lg:hover {
  transform: translateY(-3px);
  border-color: rgba(219,156,40,0.4) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
}

.bg-white.rounded-lg p,
.bg-white.rounded-lg h3,
.bg-white.rounded-lg span,
.bg-white.rounded-lg a {
  color: rgba(255,255,255,0.8) !important;
}

.bg-white.rounded-lg h3 {
  color: var(--sp-gold) !important;
}

/* ── ASIDE / SIDEBAR ────────────────────────────────── */
aside {
  position: relative;
}

aside > div {
  background: linear-gradient(160deg, rgba(12,12,18,0.99) 0%, rgba(18,16,10,0.99) 100%) !important;
  border: 1px solid rgba(219,156,40,0.28) !important;
  border-top: 3px solid var(--sp-gold) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(219,156,40,0.1) !important;
}

aside h3 {
  color: var(--sp-gold) !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.03em !important;
}

aside label {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── FLEET CAROUSEL ─────────────────────────────────── */
#fleet-carousel {
  padding: 3rem 0;
}

#fleet-carousel .text-center h4 {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: var(--sp-gold) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#fleet-carousel .text-center p {
  color: var(--sp-muted) !important;
  font-size: 0.85rem !important;
}

.fleet-item {
  background: linear-gradient(160deg, rgba(14,14,20,0.97) 0%, rgba(22,18,10,0.97) 100%) !important;
  border: 1px solid rgba(219,156,40,0.18) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
  transition: transform 0.32s var(--sp-tr), border-color 0.28s, box-shadow 0.32s !important;
  overflow: hidden;
}

.fleet-item:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: rgba(219,156,40,0.5) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(219,156,40,0.08) !important;
}

.fleet-item img {
  border-radius: 10px 10px 0 0 !important;
  transition: transform 0.5s var(--sp-tr) !important;
}

.fleet-item:hover img {
  transform: scale(1.05) !important;
}

.fleet-item h3 {
  color: var(--sp-gold) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  margin-top: 0.75rem !important;
}

/* ── FEATURE GRID CARDS (icon boxes) ───────────────── */
.grid [class*="flex-col"][class*="bg-gray"] {
  background: linear-gradient(145deg, rgba(14,14,20,0.97) 0%, rgba(20,18,12,0.97) 100%) !important;
  border: 1px solid rgba(219,156,40,0.12) !important;
  transition: transform var(--sp-tr), border-color var(--sp-tr), box-shadow var(--sp-tr);
  border-radius: 14px !important;
}

.grid [class*="flex-col"][class*="bg-gray"]:hover {
  transform: translateY(-4px);
  border-color: rgba(219,156,40,0.35) !important;
  box-shadow: 0 12px 35px rgba(0,0,0,0.45) !important;
}

.grid [class*="flex-col"][class*="bg-gray"] h3 {
  color: var(--sp-gold) !important;
}

.grid [class*="flex-col"][class*="bg-gray"] p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.85rem !important;
}

/* ── BADGE / TAG ELEMENTS ───────────────────────────── */
span[class*="bg-yellow"],
span[class*="text-yellow"] {
  background: rgba(219,156,40,0.15) !important;
  color: var(--sp-gold) !important;
  border: 1px solid rgba(219,156,40,0.3) !important;
  border-radius: 100px !important;
}

/* ── SECTION HEADERS IN BODY ────────────────────────── */
section.bg-gray-900 {
  background: linear-gradient(180deg, rgba(11,11,16,0) 0%, rgba(14,14,20,0.6) 100%) !important;
  border-top: 1px solid rgba(219,156,40,0.08);
}

section.bg-gray-900 h2 {
  color: #fff !important;
}

/* ── ZIYARAT / TOUR GRID CARDS ──────────────────────── */
.container div[class*="overflow-hidden"][class*="rounded"],
.mx-auto div[class*="overflow-hidden"][class*="rounded"] {
  border: 1px solid rgba(219,156,40,0.12) !important;
  transition: transform var(--sp-tr), border-color var(--sp-tr), box-shadow var(--sp-tr);
  border-radius: 14px !important;
  overflow: hidden;
}

.container div[class*="overflow-hidden"][class*="rounded"]:hover,
.mx-auto div[class*="overflow-hidden"][class*="rounded"]:hover {
  transform: translateY(-4px);
  border-color: rgba(219,156,40,0.4) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5) !important;
}

/* ── VEHICLE DETAIL PAGE ────────────────────────────── */
.order-2.lg\:order-1 .relative {
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid rgba(219,156,40,0.15) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
}

/* Vehicle thumbnail gallery */
div[class*="overflow-hidden"][class*="rounded-lg"][class*="shadow-lg"] img {
  transition: transform 0.45s var(--sp-tr) !important;
}

div[class*="overflow-hidden"][class*="rounded-lg"][class*="shadow-lg"]:hover img {
  transform: scale(1.08) !important;
}

/* Feature check icons */
.fa-check-circle {
  color: var(--sp-gold) !important;
}

/* ── CONTACT / INFO CARDS ───────────────────────────── */
.office-card,
div[class*="office-card"] {
  background: linear-gradient(145deg, rgba(14,14,20,0.97) 0%, rgba(20,18,12,0.97) 100%) !important;
  border: 1px solid rgba(219,156,40,0.15) !important;
  border-radius: 14px !important;
  transition: transform var(--sp-tr), border-color var(--sp-tr);
}

.office-card:hover {
  transform: translateY(-3px);
  border-color: rgba(219,156,40,0.38) !important;
}

/* ── SCROLLBAR ──────────────────────────────────────── */
.fleet-carousel::-webkit-scrollbar { height: 4px; }
.fleet-carousel::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 2px; }
.fleet-carousel::-webkit-scrollbar-thumb { background: rgba(219,156,40,0.4); border-radius: 2px; }

/* ── CHECK CIRCLE ICONS ─────────────────────────────── */
div[class*="flex"][class*="items-center"][class*="space-x"] .fa-check-circle,
div[class*="flex"][class*="items-center"][class*="space-x"] .fas.fa-check-circle {
  color: var(--sp-gold) !important;
}

/* ── PAGE SECTION SEPARATOR ─────────────────────────── */
hr,
div[style*="height:1px"],
div[style*="height: 1px"] {
  border-color: rgba(219,156,40,0.12) !important;
  background: rgba(219,156,40,0.12) !important;
}

/* ── RESPONSIVE HERO ────────────────────────────────── */
@media (max-width: 640px) {
  section.relative {
    min-height: 320px !important;
  }
  section.relative h1 {
    font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
  }
}


/* ================================================================
   FULL PAGE REDESIGN — sp-* classes (5 service pages)
   ================================================================ */
.sp-hero {
  position: relative; min-height: 100vh;
  background-size: cover; background-position: center; background-attachment: fixed;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,4,8,0.92) 0%, rgba(11,8,2,0.78) 55%, rgba(219,156,40,0.08) 100%);
}
.sp-hero-content {
  position: relative; z-index: 10; text-align: center;
  padding: 2rem; max-width: 920px; margin: 0 auto;
}
.sp-hero-badge {
  display: inline-block;
  background: rgba(219,156,40,0.12); border: 1px solid rgba(219,156,40,0.38);
  color: #db9c28; font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.35rem 1.1rem; border-radius: 100px; margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.sp-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
  font-weight: 900 !important; line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, #fff 0%, #f5e0a0 55%, #db9c28 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important; margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 28px rgba(219,156,40,0.2));
  padding: 0 !important; border-left: none !important;
}
.sp-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.78;
}
.sp-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.sp-scroll-hint { color: rgba(255,255,255,0.32); font-size: 1.1rem; animation: spBounce 1.8s ease-in-out infinite; }
@keyframes spBounce {
  0%,100% { transform: translateY(0); opacity: .32; }
  50% { transform: translateY(8px); opacity: .85; }
}

/* Stats */
.sp-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(12,12,18,0.99);
  border-top: 1px solid rgba(219,156,40,0.14);
  border-bottom: 1px solid rgba(219,156,40,0.1);
}
@media(max-width:600px){ .sp-stats{grid-template-columns:repeat(2,1fr);} }
.sp-stat { display: flex; flex-direction: column; align-items: center; padding: 1.5rem 1rem; border-right: 1px solid rgba(219,156,40,0.09); }
.sp-stat:last-child { border-right: none; }
.sp-stat-num {
  font-size: 1.75rem; font-weight: 900;
  background: linear-gradient(135deg,#db9c28,#f0cc6a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.sp-stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.42); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.3rem; }

/* Wrappers & headers */
.sp-sec-wrap { padding: 5rem 1.5rem; max-width: 1280px; margin: 0 auto; }
.sp-sec-head { text-align: center; margin-bottom: 3rem; }
.sp-sec-line { width: 48px; height: 3px; background: linear-gradient(90deg,#db9c28,#f0cc6a); border-radius: 2px; margin: 0 auto 1rem; }
.sp-sec-head h2 {
  font-size: clamp(1.75rem,4vw,2.75rem) !important; font-weight: 800 !important;
  background: linear-gradient(135deg,#fff 30%,#db9c28 100%) !important;
  -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important;
  background-clip: text !important; line-height: 1.2 !important;
  margin-bottom: 0.75rem !important; border-left: none !important; padding-left: 0 !important;
}
.sp-sec-head p { color: rgba(255,255,255,0.48); font-size: 0.97rem; max-width: 550px; margin: 0 auto; }

/* Buttons */
.sp-btn-wa { display:inline-flex;align-items:center;gap:.5rem;background:#25D366;color:#fff;font-weight:700;padding:.85rem 1.9rem;border-radius:50px;text-decoration:none;transition:all .25s;box-shadow:0 4px 20px rgba(37,211,102,.3); }
.sp-btn-wa:hover { background:#1da851;transform:translateY(-2px);box-shadow:0 8px 30px rgba(37,211,102,.45); }
.sp-btn-gold { display:inline-flex;align-items:center;gap:.5rem;background:linear-gradient(135deg,#db9c28,#e8b84b);color:#0b0b0f;font-weight:700;padding:.85rem 1.9rem;border-radius:50px;text-decoration:none;transition:all .25s;box-shadow:0 4px 20px rgba(219,156,40,.3); }
.sp-btn-gold:hover { transform:translateY(-2px);box-shadow:0 8px 30px rgba(219,156,40,.5);filter:brightness(1.05); }
.sp-btn-outline { display:inline-flex;align-items:center;gap:.5rem;background:transparent;color:rgba(255,255,255,.82);font-weight:600;padding:.85rem 1.9rem;border-radius:50px;border:1.5px solid rgba(255,255,255,.26);text-decoration:none;transition:all .25s; }
.sp-btn-outline:hover { border-color:#db9c28;color:#db9c28;transform:translateY(-2px); }

/* Cards */
.sp-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem; }
.sp-card { background:linear-gradient(145deg,rgba(14,14,22,.98) 0%,rgba(20,17,10,.98) 100%);border:1px solid rgba(219,156,40,.14);border-radius:16px;overflow:hidden;transition:transform .28s cubic-bezier(.4,0,.2,1),border-color .28s,box-shadow .28s;display:flex;flex-direction:column; }
.sp-card:hover { transform:translateY(-6px);border-color:rgba(219,156,40,.42);box-shadow:0 20px 50px rgba(0,0,0,.55),0 0 0 1px rgba(219,156,40,.1); }
.sp-card-img { position:relative;overflow:hidden;height:200px; }
.sp-card-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
.sp-card:hover .sp-card-img img { transform:scale(1.07); }
.sp-card-body { padding:1.25rem 1.5rem 1.5rem;flex:1;display:flex;flex-direction:column; }
.sp-tag { display:inline-block;background:rgba(219,156,40,.1);color:#db9c28;border:1px solid rgba(219,156,40,.26);font-size:.64rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.2rem .68rem;border-radius:100px;margin-bottom:.7rem; }
.sp-loc-badge { display:inline-block;background:rgba(255,255,255,.06);color:rgba(255,255,255,.55);border:1px solid rgba(255,255,255,.11);font-size:.62rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.18rem .62rem;border-radius:100px;margin-bottom:.65rem; }
.sp-card-body h3 { font-size:1.04rem;font-weight:700;color:#fff;margin-bottom:.52rem;line-height:1.3; }
.sp-card-body p { font-size:.85rem;color:rgba(255,255,255,.56);line-height:1.68;flex:1;margin-bottom:1.15rem; }
.sp-card-actions { display:flex;gap:.45rem;flex-wrap:wrap;margin-top:auto; }
.sp-btn-wa-sm { flex:1;min-width:80px;display:inline-flex;align-items:center;justify-content:center;gap:.3rem;background:#25D366;color:#fff;font-size:.77rem;font-weight:700;padding:.48rem .82rem;border-radius:8px;text-decoration:none;transition:background .2s; }
.sp-btn-wa-sm:hover { background:#1da851; }
.sp-btn-gold-sm { display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#db9c28,#e8b84b);color:#0b0b0f;font-size:.77rem;font-weight:700;padding:.48rem .82rem;border-radius:8px;text-decoration:none;transition:filter .2s; }
.sp-btn-gold-sm:hover { filter:brightness(1.1); }
.sp-btn-outline-sm { display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(219,156,40,.42);color:#db9c28;font-size:.77rem;font-weight:600;padding:.48rem .82rem;border-radius:8px;text-decoration:none;transition:all .2s; }
.sp-btn-outline-sm:hover { background:#db9c28;color:#0b0b0f; }

/* Why Choose Us */
.sp-why { background:rgba(13,13,19,.75);border-top:1px solid rgba(219,156,40,.07);border-bottom:1px solid rgba(219,156,40,.07);padding:5rem 1.5rem; }
.sp-why-grid { display:grid;grid-template-columns:repeat(auto-fill,minmax(195px,1fr));gap:1.2rem;max-width:1280px;margin:0 auto; }
.sp-why-card { background:rgba(14,14,22,.97);border:1px solid rgba(219,156,40,.1);border-radius:16px;padding:1.75rem 1.2rem;text-align:center;transition:all .28s; }
.sp-why-card:hover { border-color:rgba(219,156,40,.36);transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.45); }
.sp-why-icon { width:54px;height:54px;background:rgba(219,156,40,.1);border:1px solid rgba(219,156,40,.2);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;font-size:1.35rem;color:#db9c28;transition:all .28s; }
.sp-why-card:hover .sp-why-icon { background:rgba(219,156,40,.18);box-shadow:0 0 20px rgba(219,156,40,.2); }
.sp-why-card h3 { font-size:.92rem;font-weight:700;color:#fff;margin-bottom:.42rem; }
.sp-why-card p { font-size:.79rem;color:rgba(255,255,255,.48);line-height:1.6; }

/* CTA */
.sp-cta { background:linear-gradient(135deg,rgba(11,11,16,.99) 0%,rgba(30,22,5,.99) 100%);border-top:1px solid rgba(219,156,40,.11);padding:5rem 1.5rem;text-align:center; }
.sp-cta h2 { font-size:clamp(1.75rem,4vw,2.75rem);font-weight:800;color:#fff;margin-bottom:1rem; }
.sp-cta p { color:rgba(255,255,255,.52);font-size:.97rem;max-width:540px;margin:0 auto 2.5rem;line-height:1.75; }
.sp-cta-btns { display:flex;gap:1rem;justify-content:center;flex-wrap:wrap; }

/* Partner */
.sp-partner { background:linear-gradient(135deg,rgba(219,156,40,.07) 0%,rgba(14,14,22,.97) 100%);border:1px solid rgba(219,156,40,.17);border-radius:20px;padding:3rem 2rem;text-align:center;max-width:860px;margin:0 auto; }
.sp-partner h2 { font-size:1.7rem;font-weight:800;color:#db9c28;margin-bottom:.72rem; }
.sp-partner p { color:rgba(255,255,255,.58);font-size:.91rem;max-width:460px;margin:0 auto 1.5rem;line-height:1.72; }

/* Landmark (Travel Guide) */
.sp-landmark { background:linear-gradient(145deg,rgba(14,14,22,.98) 0%,rgba(20,17,10,.98) 100%);border:1px solid rgba(219,156,40,.12);border-radius:16px;overflow:hidden;transition:all .28s; }
.sp-landmark:hover { transform:translateY(-5px);border-color:rgba(219,156,40,.4);box-shadow:0 20px 50px rgba(0,0,0,.55); }
.sp-landmark-img { overflow:hidden;height:220px; }
.sp-landmark-img img { width:100%;height:100%;object-fit:cover;transition:transform .5s; }
.sp-landmark:hover .sp-landmark-img img { transform:scale(1.06); }
.sp-landmark-body { padding:1.4rem 1.5rem; }
.sp-landmark-body h3 { font-size:1.02rem;font-weight:700;color:#db9c28;margin-bottom:.55rem; }
.sp-landmark-body p { font-size:.83rem;color:rgba(255,255,255,.6);line-height:1.7; }

/* Gallery */
.sp-gallery { display:grid;grid-template-columns:repeat(auto-fill,minmax(170px,1fr));gap:.6rem; }
.sp-gallery img { width:100%;height:148px;object-fit:cover;border-radius:10px;border:1px solid rgba(219,156,40,.09);cursor:pointer;transition:all .3s; }
.sp-gallery img:hover { transform:scale(1.04);border-color:rgba(219,156,40,.42);box-shadow:0 8px 25px rgba(0,0,0,.5); }

/* Itinerary */
.sp-timeline { list-style:none;padding:0;margin:0;position:relative; }
.sp-timeline::before { content:'';position:absolute;left:1.05rem;top:0;bottom:0;width:2px;background:linear-gradient(to bottom,#db9c28,rgba(219,156,40,.04)); }
.sp-timeline li { position:relative;padding:.68rem 1rem .68rem 3rem;margin-bottom:.42rem;background:rgba(219,156,40,.03);border:1px solid rgba(219,156,40,.07);border-radius:10px;color:rgba(255,255,255,.7);font-size:.87rem;transition:all .22s; }
.sp-timeline li:hover { background:rgba(219,156,40,.07);border-color:rgba(219,156,40,.18); }
.sp-timeline li::before { content:'';position:absolute;left:.7rem;top:50%;transform:translateY(-50%);width:8px;height:8px;background:#db9c28;border-radius:50%;box-shadow:0 0 8px rgba(219,156,40,.55);z-index:1; }

/* FAQ */
.sp-faq-item { border:1px solid rgba(219,156,40,.1);border-radius:12px;margin-bottom:.62rem;overflow:hidden;transition:border-color .22s; }
.sp-faq-item.open { border-color:rgba(219,156,40,.3); }
.sp-faq-q { width:100%;background:rgba(14,14,22,.98);color:rgba(255,255,255,.8);font-size:.89rem;font-weight:600;padding:1rem 1.35rem;display:flex;justify-content:space-between;align-items:center;cursor:pointer;text-align:left;border:none;transition:background .2s; }
.sp-faq-q:hover { background:rgba(219,156,40,.05); }
.sp-faq-q.active { color:#db9c28;background:rgba(219,156,40,.05); }
.sp-faq-icon { color:#db9c28;font-size:.7rem;transition:transform .25s;flex-shrink:0;margin-left:1rem; }
.sp-faq-q.active .sp-faq-icon { transform:rotate(180deg); }
.sp-faq-a { display:none;padding:0 1.35rem 1rem;color:rgba(255,255,255,.56);font-size:.84rem;line-height:1.74;background:rgba(14,14,22,.98); }

/* Info box */
.sp-info-box { background:linear-gradient(145deg,rgba(14,14,22,.98) 0%,rgba(20,17,10,.98) 100%);border:1px solid rgba(219,156,40,.2);border-top:3px solid #db9c28;border-radius:16px;padding:2rem; }
.sp-info-box h2 { font-size:1.3rem;font-weight:700;color:#fff;margin-bottom:1.2rem; }
.sp-info-row { display:flex;align-items:center;gap:.8rem;padding:.62rem 0;border-bottom:1px solid rgba(219,156,40,.07);color:rgba(255,255,255,.7);font-size:.87rem; }
.sp-info-row:last-child { border-bottom:none; }
.sp-info-row i { color:#db9c28;font-size:1rem;width:18px;flex-shrink:0; }

/* Fleet row */
.sp-fleet-row { display:flex;overflow-x:auto;gap:1.25rem;padding:.5rem 0 1rem;scrollbar-width:thin;scrollbar-color:rgba(219,156,40,.3) transparent; }
.sp-fleet-row::-webkit-scrollbar { height:4px; }
.sp-fleet-row::-webkit-scrollbar-thumb { background:rgba(219,156,40,.35);border-radius:2px; }
.sp-fleet-card { flex-shrink:0;width:260px;background:linear-gradient(145deg,rgba(14,14,22,.98) 0%,rgba(20,17,10,.98) 100%);border:1px solid rgba(219,156,40,.14);border-radius:14px;overflow:hidden;transition:transform .28s,border-color .28s,box-shadow .28s; }
.sp-fleet-card:hover { transform:translateY(-5px) scale(1.02);border-color:rgba(219,156,40,.44);box-shadow:0 18px 45px rgba(0,0,0,.5); }
.sp-fleet-card img { width:100%;height:165px;object-fit:cover;transition:transform .45s; }
.sp-fleet-card:hover img { transform:scale(1.06); }
.sp-fleet-card-name { padding:.85rem 1rem;font-size:.92rem;font-weight:700;color:#db9c28;text-align:center; }

/* Responsive */
@media(max-width:768px) {
  .sp-hero { background-attachment:scroll; }
  .sp-2col { grid-template-columns:1fr !important; }
}
