/* =========================================
   TG CABS – Global Design System
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #111111;
  --primary-dark: #000000;
  --primary-light: #333333;
  --accent: #FBBF24;
  --accent-dark: #E5A800;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --muted: #6b7280;
  --light: #fafafa;
  --white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --gradient-hero: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fffef5 100%);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  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: inherit;
}

/* ── Utility Classes ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
}

/* ── Section Header ── */
.section-header {
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--accent-dark);
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center .section-desc {
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.6), 0 0 15px rgba(251, 191, 36, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 95px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  object-position: left bottom;
  /* Ensure it stays aligned to the left and bottom */
  flex-shrink: 0;
  /* margin-top: 10px; */
  margin-left: 0;
  /* Pulls the image left to offset transparent padding inside the PNG */
  margin-bottom: -15px;
  /* Negative margin to pull tagline up into the gap */
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Aligns both logo and tagline to the left */
}

.nav-logo-text .brand {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.nav-logo-text .tagline {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: -12px;
}

.navbar.scrolled .nav-logo-text .brand {
  color: var(--dark);
}

/* on transparent navbar, logo text is white */
.navbar:not(.scrolled) .nav-logo-text .brand {
  color: var(--white);
}

.navbar:not(.scrolled) .nav-logo-text .tagline {
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-dark);
  background: rgba(251, 191, 36, 0.10);
}

.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--accent);
  background: rgba(251, 191, 36, 0.15);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  transition: var(--transition);
  margin-right: auto;
  margin-left: 20px;
  white-space: nowrap;
}

.navbar.scrolled .nav-phone {
  color: var(--dark);
}

.nav-phone:hover {
  color: var(--accent-dark);
}

.navbar:not(.scrolled) .nav-phone:hover {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .hamburger span {
  background: var(--white);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px 30px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent-dark);
  background: rgba(251, 191, 36, 0.08);
}

.mobile-menu .nav-cta {
  border: none;
  border-bottom: none;
  background: var(--accent) !important;
  color: var(--dark) !important;
  text-align: center;
  font-weight: 700 !important;
  margin-top: 10px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 50vh;
  /* Reduced from 100vh to half height */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.90) 0%, rgba(17, 17, 17, 0.80) 50%, rgba(45, 45, 45, 0.75) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  min-height: 50vh;
  /* Also reduced to half height here */
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 auto 30px auto;
  color: #fde68a;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-title .highlight {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-serif);
}

.hero-stat .label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Inquiry Card */
.hero-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  padding: 24px;
  /* Reduced padding from 36px */
  box-shadow: var(--shadow-xl);
  color: var(--dark);
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.hero-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 12px;
  /* Reduced from 16px */
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  /* Reduced from 13px 16px */
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 15px;
  font-weight: 700;
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator svg {
  color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(-10px)
  }
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(251, 191, 36, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fffef5, #fef3c7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-hero);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg {
  color: white;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 16px;
  padding: 10px 18px;
  background-color: var(--accent);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  background-color: #e5a71a;
  /* slightly darker accent */
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

/* ── Why Choose Us ── */
.why-section {
  background: var(--dark);
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 18px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.why-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-title span {
  color: var(--accent);
}

/* ── Packages ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.06);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.package-body {
  padding: 24px;
}

.package-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.package-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.package-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.package-card p {
  font-size: 14.5px;
  color: #111111;
  line-height: 1.7;
  margin-bottom: 18px;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.package-highlights span {
  font-size: 11px;
  padding: 4px 10px;
  background: #fffef5;
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.package-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

.package-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  font-family: var(--font-sans);
}

/* ── Fleet ── */
.fleet-section {
  background: #f5f5f5;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.fleet-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #fafafa);
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform: scaleX(-1);
}

.fleet-card:hover .fleet-img img {
  transform: scaleX(-1) scale(1.05);
}

.fleet-body {
  padding: 22px;
}

.fleet-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.fleet-body .fleet-type {
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.fleet-features span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 50px;
}

.fleet-book {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.fleet-capacity {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.fleet-capacity span {
  color: var(--muted);
  font-weight: 400;
}

/* ── Testimonials (Slider Ready) ── */
.testimonials-section {
  background: var(--light);
}

.testimonials-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 350px;
  max-width: 350px;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent-dark);
  transform: scale(1.3);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 80px;
  color: #fef3c7;
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars span {
  color: var(--accent);
  font-size: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author .name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.testimonial-author .city {
  font-size: 12px;
  color: var(--muted);
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--gradient-hero);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 24px;
}

.trust-item {
  color: var(--white);
}

.trust-item .num {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-item .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  font-weight: 500;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 70%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 70%);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
}

.cta-banner .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #070f1a;
  color: rgba(255, 255, 255, 0.8);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 16px;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ── Floating Actions ── */
.call-float {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.call-float:hover {
  transform: scale(1.1);
  background: var(--white);
  color: var(--accent-dark);
}

.call-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(251, 191, 36, 0.4);
  animation: wa-pulse 2.5s infinite;
  animation-delay: 1.25s;
}

/* ── Floating WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-chat-bubble {
  position: fixed;
  bottom: 176px;
  right: 28px;
  width: max-content;
  background: #ffffff;
  color: #111111;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  border: 1px solid var(--border);
}

.whatsapp-chat-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 24px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--gradient-hero);
  padding: 160px 0 80px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  color: var(--accent);
}

/* ── About Page Specifics ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.about-img-tag {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-img-tag .big {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-dark);
  font-family: var(--font-serif);
  display: block;
}

.about-img-tag .sm {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  padding-left: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-value {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-value-icon {
  font-size: 22px;
}

.about-value h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 12px;
  color: var(--muted);
}

/* ── Services Detailed ── */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  gap: 22px;
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fffef5, #fef3c7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.service-detail-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-detail-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-detail-list li {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
}

.contact-info-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--font-serif);
}

.contact-info-card>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  display: block;
}

.contact-item a:hover {
  color: var(--accent);
}

.wa-btn-lg {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  width: fit-content;
  transition: var(--transition);
}

.wa-btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-form-card>p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 340px;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Booking Page ── */
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.step.active .step-circle {
  background: var(--accent);
  color: var(--dark);
}

.step.done .step-circle {
  background: var(--success);
  color: white;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.step.active .step-label {
  color: var(--dark);
}

.step-connector {
  width: 50px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
  flex-shrink: 0;
}

.trip-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.trip-type-btn {
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.trip-type-btn:hover {
  border-color: var(--accent);
  background: #fffef5;
}

/* Each type gets its own dark highlight color when selected */
.trip-type-btn.selected[data-type="local"] {
  border-color: #1d4ed8;
  background: #1d4ed8;
  color: #ffffff;
}

.trip-type-btn.selected[data-type="outstation"] {
  border-color: #047857;
  background: #047857;
  color: #ffffff;
}

.trip-type-btn.selected[data-type="airport"] {
  border-color: #6d28d9;
  background: #6d28d9;
  color: #ffffff;
}

.trip-type-btn.selected[data-type="tour"] {
  border-color: #b45309;
  background: #b45309;
  color: #ffffff;
}

.trip-type-btn.selected[data-type="pilgrimage"] {
  border-color: #b91c1c;
  background: #b91c1c;
  color: #ffffff;
}

.trip-type-btn.selected[data-type="corporate"] {
  border-color: #1e40af;
  background: #1e40af;
  color: #ffffff;
}

.trip-type-btn.selected svg {
  stroke: #ffffff;
}

.trip-type-btn .icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.trip-type-btn .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  display: block;
}

/* ── Packages Filter ── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 22px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--muted);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--accent);
}

/* ── Animations (AOS-like) ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-card {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 64px;
    margin-left: 0;
    /* Reset custom desktop margin on mobile to avoid overflow */
  }

  .nav-logo-text .tagline {
    font-size: 9px;
  }

  .section-pad {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: flex;
    margin-left: auto;
    margin-right: 15px;
    font-size: 13px;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-card {
    padding: 28px 20px;
  }

  .trip-type-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-img-tag {
    right: 0;
    bottom: -50px;
  }

  .about-text {
    padding-left: 0;
    padding-top: 70px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 22px;
  }

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .nav-phone span {
    display: none;
  }

  .nav-phone {
    margin-right: 10px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item .num {
    font-size: 36px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .call-float {
    bottom: 84px;
    right: 20px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .whatsapp-chat-bubble {
    bottom: 148px;
    right: 20px;
  }

  .booking-steps {
    overflow-x: auto;
  }
}

/* ── One Way Routes Section ── */
.oneway-routes-card {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.oneway-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  background: linear-gradient(135deg, #1a3fa8 0%, #1e4bd4 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.oneway-table-body {
  background: var(--white);
}

.oneway-route-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
  cursor: pointer;
}

.oneway-route-row:last-child {
  border-bottom: none;
}

.oneway-route-row:nth-child(even) {
  background: #f8f9fc;
}

.oneway-route-row:hover {
  background: #fffef5;
  padding-left: 36px;
}

.oneway-route-row:hover .route-name {
  color: #1a3fa8;
  text-decoration: underline;
}

.oneway-route-row:hover .route-arrow {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.route-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.route-name {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #1a3fa8;
  transition: var(--transition);
}

.route-arrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
  transition: var(--transition);
}

@media (max-width: 600px) {
  .oneway-table-header {
    padding: 14px 18px;
    font-size: 14px;
  }

  .oneway-route-row {
    padding: 13px 16px;
    gap: 10px;
  }

  .oneway-route-row:hover {
    padding-left: 20px;
  }

  .route-name {
    font-size: 14px;
  }

  .route-arrow {
    font-size: 12px;
  }
}