/* =========================================
   Top Trip jo - الموقع الرسمي
   style.css - التصميم الكامل
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@300;400;600;700;900&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #1a2f4a;
  --navy-light: #223b5e;
  --gold:       #c9a84c;
  --gold-light: #e8c97e;
  --gold-pale:  #f5e9c8;
  --sand:       #f2e8d5;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --green:      #2e7d5e;
  --green-light:#3da57a;
  --gray-dark:  #2d3748;
  --gray:       #4a5568;
  --gray-light: #718096;
  --gray-pale:  #e2e8f0;
  --text:       #1a202c;
  --text-light: #4a5568;

  --font-main:  'Tajawal', 'Cairo', sans-serif;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:0 8px 30px rgba(201,168,76,0.25);
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-main); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Titles --- */
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-title span { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-main);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* =========================================
   TOP BAR
   ========================================= */
#topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-brand strong { color: var(--gold); font-size: 1rem; }
.topbar-tagline { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: var(--transition);
}

.topbar-phone:hover { color: var(--gold); }
.topbar-phone i { color: var(--gold); }

.topbar-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.topbar-wa:hover { background: #128C7E; transform: scale(1.03); }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(13,27,42,0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 900;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { color: var(--white); font-weight: 800; font-size: 1.05rem; }
.logo-name span { color: var(--gold); }
.logo-sub { color: rgba(255,255,255,0.5); font-size: 0.7rem; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(201,168,76,0.1) !important;
  color: var(--gold) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
  transition: opacity 1s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.75) 50%,
    rgba(13,27,42,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: fadeInRight 0.9s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}

.trust-item i { color: var(--gold); font-size: 1rem; }

.hero-visual { animation: fadeInLeft 0.9s ease 0.2s both; }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  padding: 20px 16px;
  text-align: center;
  background: rgba(13,27,42,0.5);
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  animation: bounce 2s infinite;
}

.hero-scroll i { font-size: 1.2rem; }

/* =========================================
   ABOUT SECTION
   ========================================= */
#about {
  padding: 100px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-imgs {
  position: relative;
  height: 500px;
}

.about-img-main {
  width: 70%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  right: 0;
}

.about-img-second {
  width: 58%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  position: absolute;
  bottom: 0;
  left: 0;
  border: 4px solid var(--white);
}

.about-badge-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 5;
  min-width: 120px;
}

.about-badge-img .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-badge-img .lbl { font-size: 0.72rem; font-weight: 600; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-pale), #f7ead4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.value-item p  { font-size: 0.78rem; color: var(--gray-light); }

/* =========================================
   SERVICES SECTION
   ========================================= */
#services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-pale);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-pale); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 24px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(13,27,42,0.2);
}

.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.service-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }

/* =========================================
   DAY TRIPS - ACCORDION
   ========================================= */
#day-trips {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--sand) 100%);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.acc-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.acc-item:hover { box-shadow: var(--shadow-md); }

.acc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.acc-header:hover { background: var(--off-white); }

.acc-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.acc-title-wrap { flex: 1; }
.acc-title-wrap h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); }
.acc-title-wrap span { font-size: 0.8rem; color: var(--gray-light); }

.acc-icon {
  width: 34px;
  height: 34px;
  background: var(--gray-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray);
  flex-shrink: 0;
}

.acc-item.open .acc-icon { background: var(--gold-pale); color: var(--gold); transform: rotate(180deg); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-body-inner {
  padding: 0 28px 28px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
}

.acc-stops { display: flex; flex-direction: column; gap: 12px; }

.stop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stop-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--gold-pale);
}

.stop-item p { font-size: 0.92rem; color: var(--gray); }

.acc-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* =========================================
   OVERNIGHT TRIPS
   ========================================= */
#overnight {
  padding: 100px 0;
  background: var(--navy);
}

#overnight .section-title { color: var(--white); }
#overnight .section-desc  { color: rgba(255,255,255,0.65); }
#overnight .section-tag   { background: rgba(201,168,76,0.15); color: var(--gold-light); }

.overnight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.overnight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.overnight-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.oc-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  position: relative;
}

.oc-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.oc-img-wrap { position: relative; }

.oc-body { padding: 28px; }
.oc-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }

.timeline { display: flex; flex-direction: column; gap: 12px; }

.tl-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.tl-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.tl-item span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* =========================================
   DRIVER / TRANSFER SERVICE
   ========================================= */
#driver {
  padding: 100px 0;
  background: var(--white);
}

.driver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.driver-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.driver-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }

.feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-dark);
  font-weight: 500;
}

.feat-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

/* =========================================
   FLEET SECTION
   ========================================= */
#fleet {
  padding: 100px 0;
  background: var(--off-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.fleet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-body { padding: 24px; }
.fleet-body h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.fleet-body p  { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; }

.fleet-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.fleet-tag {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.fleet-note {
  text-align: center;
  margin-top: 36px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.fleet-note i { color: var(--gold); font-size: 1.2rem; }

/* =========================================
   WHY US
   ========================================= */
#why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

#why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

#why-us .section-title { color: var(--white); }
#why-us .section-desc  { color: rgba(255,255,255,0.6); }
#why-us .section-tag   { background: rgba(201,168,76,0.15); color: var(--gold-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 34px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
}

.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* =========================================
   GALLERY
   ========================================= */
#gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 600; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#lightbox.active { display: flex; }

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

#lightbox-close {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

#lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* =========================================
   TESTIMONIALS
   ========================================= */
#testimonials {
  padding: 100px 0;
  background: var(--off-white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-quote {
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-meta { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testi-info h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.testi-info span { font-size: 0.78rem; color: var(--gray-light); }

.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 4px; }

/* =========================================
   FAQ
   ========================================= */
#faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-pale);
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold-pale); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
  user-select: none;
}

.faq-q:hover { color: var(--gold); }

.faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
#contact {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

#contact .section-title { color: var(--white); }
#contact .section-desc { color: rgba(255,255,255,0.6); }
#contact .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info { padding-top: 10px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}

.contact-card:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.06); }

.cc-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cc-text h4 { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.cc-text a, .cc-text span { font-size: 0.98rem; color: var(--white); font-weight: 600; transition: var(--transition); }
.cc-text a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-main);
  transition: var(--transition);
  direction: rtl;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form-group select option { background: var(--navy); color: var(--white); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.form-btns .btn { flex: 1; justify-content: center; }

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
}

.footer-brand .logo-name { font-size: 1.2rem; margin-bottom: 8px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin: 14px 0 22px; max-width: 310px; }
.footer-brand .social-links { gap: 10px; }

.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 32px; height: 2px; background: var(--gold); border-radius: 2px; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold); padding-right: 4px; }
.footer-links a::before { content: '›'; font-size: 1rem; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom span { color: var(--gold); }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); animation: none; }

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-3px) scale(1.05); }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes pulse-wa {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-content { padding: 80px 0 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-imgs { height: 350px; }
  .driver-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .overnight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,27,42,0.98); padding: 20px; gap: 4px; border-bottom: 2px solid rgba(201,168,76,0.2); }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.95rem; }
  #navbar { position: relative; }
  .nav-toggle { display: flex; }
  .topbar-tagline { display: none; }

  .hero-title { font-size: 1.8rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  .about-values { grid-template-columns: 1fr; }
  .about-imgs { height: 280px; }
  .about-img-main { width: 80%; height: 260px; }
  .about-img-second { width: 60%; height: 180px; }

  .acc-body-inner { grid-template-columns: 1fr; }
  .acc-img { display: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
  .form-btns { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .driver-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topbar-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-trust { gap: 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .float-wa { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .scroll-top { bottom: 20px; right: 20px; }
  .container { padding: 0 14px; }
}
