/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #0b3d91;
  --blue-dark: #082d6e;
  --blue-light: #1a56db;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --white: #ffffff;
  --gray: #f5f7fa;
  --gray2: #e8ecf0;
  --text: #1a1a2e;
  --text-light: #5a6478;
  --shadow: 0 8px 32px rgba(11, 61, 145, .12);
  --shadow-lg: 0 16px 48px rgba(11, 61, 145, .18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.navbar .container {
  max-width: 100%;
  margin: 0;
  padding: 0 5%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column
}

.logo-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #0b3d91;
  line-height: 1;
  letter-spacing: 1px
}

.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2ecc71;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-link {
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition)
}

.nav-link:hover,
.nav-link.active {
  color: #0b3d91;
  background: rgba(11, 61, 145, 0.05);
}

.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.call-now-btn {
  display: none;
}

.hide-mobile {
  display: inline-flex;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  text-align: center
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 204, 113, .4)
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46, 204, 113, .5)
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #fff;
  box-shadow: 0 4px 16px rgba(11, 61, 145, .3)
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 61, 145, .4)
}

.btn-outline {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px)
}

.btn-outline:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-3px)
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue)
}

.btn-outline-dark:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-3px)
}

.btn-sm {
  padding: 10px 22px;
  font-size: .9rem
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .3)
}

.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .4)
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden
}

.ripple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width .5s, height .5s, opacity .5s;
  opacity: 1
}

.ripple:active::after {
  width: 200px;
  height: 200px;
  opacity: 0
}

/* ===== SECTIONS ===== */
.section {
  padding: 90px 0
}

.section-header {
  text-align: center;
  margin-bottom: 56px
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f4fd, #d4e8ff);
  color: var(--blue);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px
}

.section-badge.light {
  background: rgba(255, 255, 255, .2);
  color: #fff
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px
}

.section-title.light {
  color: #fff
}

.section-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0.9) 30%, transparent 70%), 
              url('../images/landing-banner.png') right center/cover no-repeat;
  z-index: 0;
}

.hero .container {
  max-width: 100%;
  margin: 0;
  padding: 0 5%;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0 140px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-accent-script {
  font-family: 'Caveat', cursive;
  color: #2ecc71;
  font-size: 1.4em;
  display: block;
  margin-top: -10px;
}

.hero-sub {
  color: #5a6478;
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 0 40px;
  line-height: 1.6
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px
}

.hero-floating-stats {
  display: flex;
  background: #fff;
  padding: 25px 40px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  gap: 40px;
  max-width: fit-content;
  flex-wrap: wrap;
  margin: 0;
}

.f-stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.f-stat-icon {
  width: 45px;
  height: 45px;
  background: #f0fdf4;
  color: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid #dcfce7;
}

.f-stat-text {
  display: flex;
  flex-direction: column;
}

.f-stat-text strong {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-weight: 800;
}

.f-stat-text span {
  font-size: 0.85rem;
  color: #5a6478;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15)
}

.stat {
  text-align: center;
  padding: 8px 24px;
  color: #fff
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1
}

.stat span:not(.stat-num, .stat-label) {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green)
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  margin-top: 6px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .25)
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3
}

.hero-scroll a {
  color: rgba(255, 255, 255, .7);
  font-size: 1.5rem;
  animation: bounce 2s infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(8px)
  }
}

/* ===== CALL STRIP ===== */
.call-strip {
  background: var(--green);
  padding: 16px 0;
  color: #fff
}

.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.call-strip span {
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif
}

.call-numbers {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.call-num {
  background: rgba(255, 255, 255, .2);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap
}

.call-num:hover {
  background: #fff;
  color: var(--green)
}

/* ===== SERVICES ===== */
#services {
  background: var(--gray)
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px
}

.svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray2);
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c);
  opacity: 0;
  transition: var(--transition)
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.svc-card:hover::before {
  opacity: 1
}

.svc-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .8));
  background-color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.svc-icon i {
  font-size: 1.8rem;
  color: #fff
}

.svc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text)
}

.svc-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px
}

.svc-link {
  color: var(--c);
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition)
}

.svc-link:hover {
  gap: 12px
}

/* ===== FLEET PREVIEW ===== */
.fleet-preview {
  background: #fff
}

.fleet-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px
}

.fleet-mini-card {
  background: var(--gray);
  border: 1px solid var(--gray2);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  width: calc(25% - 15px);
  min-width: 180px;
  transition: var(--transition)
}

.fleet-mini-card:hover {
  background: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-5px)
}

.fmc-icon {
  font-size: 2.5rem;
  margin-bottom: 12px
}

.fleet-mini-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.fleet-mini-card span {
  font-size: .85rem;
  color: var(--text-light);
  background: #e8ecf0;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-block
}

/* ===== WHY US ===== */
.why-section {
  position: relative;
  background: var(--blue-dark);
  color: #fff
}

.why-bg {
  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.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  z-index: 1
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px)
}

.why-card:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, .2)
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(46, 204, 113, .3)
}

.why-icon i {
  font-size: 1.8rem;
  color: #fff
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px
}

.why-card p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  line-height: 1.6
}

/* ===== POPULAR DESTINATIONS ===== */
.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-badge-alt {
  color: #2ecc71;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.section-title-alt {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.section-sub-alt {
  color: #5a6478;
  font-size: 1rem;
}

.dest-nav {
  display: flex;
  gap: 15px;
}

.dest-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #e8ecf0;
  background: #fff;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.dest-nav-btn:hover {
  background: #0b3d91;
  color: #fff;
  border-color: #0b3d91;
}

.dest-nav-btn.next {
  background: #0b3d91;
  color: #fff;
  border-color: #0b3d91;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
}

.dest-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.dest-card-content p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.dest-card-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  color: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--gray), #e6f0ff);
  padding: 80px 0
}

.cta-inner {
  background: #fff;
  border-radius: var(--radius);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray2)
}

.cta-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px
}

.cta-text p {
  font-size: 1.1rem;
  color: var(--text-light)
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0
}

/* ===== PAGE HERO (Subpages) ===== */
.page-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600&q=80') center/cover
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 145, .85)
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding-top: 60px
}

.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 10px
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 20px
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .15);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  font-size: .9rem
}

.breadcrumb a:hover {
  color: var(--green)
}

.breadcrumb i {
  font-size: .7rem;
  opacity: .7
}

/* ===== FLEET PAGE ===== */
.filter-section {
  background: var(--gray);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray2)
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.ftab {
  background: #fff;
  border: 1px solid var(--gray2);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition)
}

.ftab:hover {
  border-color: var(--blue);
  color: var(--blue)
}

.ftab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 61, 145, .2)
}

.fleet-page-section {
  background: #fff;
  min-height: 600px
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px
}

.fcard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg)
}

.fcard-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8f9fa; /* Light background for contain fit */
  display: flex;
  align-items: center;
  justify-content: center;
}

.fcard-img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Changed from cover to show full car */
  transition: transform .5s ease;
  padding: 10px; /* Slight padding for contain fit */
}

/* Custom Card Styling */
.fcard-custom .custom-img-bg {
  background: linear-gradient(135deg, #0b3d91, #1a56db);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 240px; /* Match standard card height */
}

.custom-icon-wrap {
  position: relative;
  font-size: 5rem;
  transition: var(--transition);
}

.fcard-custom:hover .custom-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.plus-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background: var(--green);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.fcard:hover .fcard-img img {
  transform: scale(1.08)
}

.fcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 145, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition)
}

.fcard:hover .fcard-overlay {
  opacity: 1
}

.fcard-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif
}

.fcard-tag-gold {
  background: linear-gradient(135deg, #f6a622, #e8890a)
}

.fcard-tag-green {
  background: var(--green)
}

.fcard-tag-blue {
  background: #1a56db
}

.fcard-body {
  padding: 24px
}

.fcard-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px
}

.fcard-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray2)
}

.fcard-specs span {
  font-size: .85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500
}

.fcard-specs i {
  color: var(--blue);
  font-size: .9rem
}

.fcard-body p {
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 20px
}

.fcard-footer {
  display: flex;
  gap: 10px
}

.btn-wa-sm {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition)
}

.btn-wa-sm:hover {
  background: #1ebe5c;
  transform: translateY(-3px)
}

/* ===== CONTACT PAGE ===== */
.phones-banner {
  margin-top: -50px;
  position: relative;
  z-index: 10
}

.phones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px
}

.phone-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray2);
  transition: var(--transition)
}

.phone-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue)
}

.phone-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0
}

.phone-label {
  display: block;
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  font-weight: 500
}

.phone-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text)
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px
}

.info-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(var(--c), .1);
  background-color: var(--gray);
  border: 1px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
  flex-shrink: 0
}

.info-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.info-card p,
.info-card a {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6
}

.info-card a:hover {
  color: var(--blue)
}

.wa-block {
  background: var(--gray);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray2);
  margin-top: 20px
}

.wa-block p {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text)
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2)
}

.map-directions {
  background: var(--blue-dark);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px
}

.map-directions i.fa-map-location-dot {
  font-size: 2rem;
  color: var(--green)
}

.map-directions p {
  font-size: .9rem;
  opacity: .8;
  margin-top: 4px
}

/* FORM */
.form-section {
  background: var(--gray)
}

.enquiry-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray2);
  max-width: 800px;
  margin: 0 auto
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.form-group {
  margin-bottom: 20px
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: .95rem;
  color: var(--text)
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d9e6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #f8faff;
  transition: var(--transition)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11, 61, 145, .1)
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  max-width: 800px;
  margin: 20px auto 0
}

.form-success i {
  font-size: 1.5rem
}

/* ===== FOOTER ===== */
.footer-main {
  background: var(--blue-dark);
  padding: 70px 0 40px;
  color: rgba(255, 255, 255, .7)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px
}

.footer-brand .logo {
  margin-bottom: 20px
}

.footer-brand .logo-brand {
  color: #fff
}

.footer-brand p {
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: .95rem
}

.social-links {
  display: flex;
  gap: 12px
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  transition: var(--transition)
}

.social-links a:hover {
  background: var(--green);
  transform: translateY(-3px)
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition)
}

.footer-col a:hover {
  color: var(--green);
  padding-left: 5px
}

.footer-col a i {
  font-size: .7rem;
  color: var(--green)
}

.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.5
}

.footer-col p i {
  color: var(--green);
  margin-top: 4px
}

.footer-col p a:hover {
  color: var(--green)
}

.footer-bottom {
  background: #061e4a;
  padding: 20px 0;
  text-align: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .5)
}

/* ===== FAB WHATSAPP ===== */
.fab-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse 2s infinite
}

.fab-wa:hover {
  transform: scale(1.1)
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1200px) {
  .container {
    padding: 0 30px
  }
}

@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }

  .contact-layout {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px
  }

  .cta-buttons {
    justify-content: center
  }

  .hero-title {
    font-size: 3.5rem
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 20px
  }

  .navbar {
    backdrop-filter: none; /* Prevent containing block issue for fixed children */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-inner {
    flex-wrap: nowrap;
    width: 100%;
  }

  .nav-mobile-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .call-now-btn {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
  }

  .hamburger {
    display: flex;
    padding: 10px;
    z-index: 1001;
  }

  .hamburger span {
    width: 28px;
    background: #1a1a2e !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    left: auto;
    width: 280px;
    max-width: 85%;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, .1)
  }

  .nav-links.open {
    transform: translateX(0)
  }

  .nav-link {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #f5f7fa;
  }

  .nav-cta {
    font-size: 1.1rem;
    padding: 14px 32px;
    margin-top: 30px;
    width: 80%;
    display: flex;
    justify-content: center;
  }

  .logo-img {
    height: 42px;
  }

  .logo-brand {
    font-size: 1.2rem;
  }

  .logo-sub {
    font-size: 0.65rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 70px;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: 350px;
    order: 2;
    background-position: center bottom;
    background-size: contain;
  }

  .hero-content {
    order: 1;
    padding-top: 20px;
    text-align: left;
  }

  .hide-mobile {
    display: none !important;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 1rem;
    margin: 10px 0 20px 0;
  }

  .hero-btns {
    flex-direction: column;
    width: auto;
    margin-top: 16px;
  }

  .call-strip-inner {
    flex-direction: column;
    text-align: center
  }

  .call-numbers {
    justify-content: center;
    flex-direction: column;
    gap: 15px
  }

  .section {
    padding: 60px 0
  }

  .fleet-mini-card {
    width: 100%
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center
  }

  .footer-col p {
    justify-content: center
  }

  .footer-col a {
    justify-content: center
  }

  .social-links {
    justify-content: center
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .phones-grid {
    grid-template-columns: 1fr
  }

  .logo-brand {
    font-size: 1.3rem
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 1rem;
    margin: 10px 0 20px 0;
  }

  .hero-btns {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-bg {
    position: relative;
    width: 100%;
    height: 320px;
    background: url('../images/mobilebanner.png') center/contain no-repeat;
    order: 2;
    margin-top: 20px;
  }

  .hero-content {
    order: 1;
    padding-top: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
  }

  .call-now-btn {
    display: flex !important;
    background: var(--green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    align-items: center;
    gap: 5px;
    text-decoration: none;
  }

  .hero-floating-stats {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px 20px;
    margin: -40px 20px 40px 20px; /* Overlap the image bottom */
    border-radius: 24px;
    position: relative;
    z-index: 5;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  }
}

  .f-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 15px 5px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .f-stat-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .hero-floating-stats .f-stat:nth-child(3),
  .hero-floating-stats .f-stat:nth-child(4) {
    border-bottom: none;
  }

  .f-stat-text span {
    font-size: 0.8rem;
  }

  .stat-sep {
    width: 60px;
    height: 1px;
    margin: 0 auto
  }

  .fcard-img {
    height: 180px
  }

  .enquiry-form {
    padding: 30px 20px
  }

  .filter-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
  }

  .ftab {
    padding: 8px 16px;
    font-size: .9rem
  }
}