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

:root {
  --primary-yellow: #FFB800;
  --primary-yellow-hover: #e6a600;
  --dark-black: #111111;
  --dark-navy: #071A2D;
  --white: #FFFFFF;
  --light-bg: #F7F7F7;
  --text-dark: #222222;
  --text-muted: #777777;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
  --border-radius: 10px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-yellow);
}

img {
  max-width: 100%;
  height: auto;
}

/* Utilities */
.text-yellow { color: var(--primary-yellow) !important; }
.bg-yellow { background-color: var(--primary-yellow) !important; color: var(--dark-black) !important; }
.bg-dark-navy { background-color: var(--dark-navy) !important; color: var(--white) !important; }
.bg-light-gray { background-color: var(--light-bg) !important; }
.section-padding { padding: 80px 0; }
.section-title { font-weight: 700; margin-bottom: 40px; font-size: 2.5rem; text-align: center; }

/* Buttons */
.btn-primary-yellow {
  background-color: var(--primary-yellow);
  color: var(--dark-black);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-primary-yellow:hover {
  background-color: var(--primary-yellow-hover);
  color: var(--dark-black);
  transform: translateY(-2px);
}
.btn-dark {
  background-color: var(--dark-black);
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 5px;
  border: none;
  transition: var(--transition);
}
.btn-dark:hover {
  background-color: #333;
  color: var(--white);
  transform: translateY(-2px);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}
.navbar-brand img {
  height: 50px;
}
.nav-link {
  font-weight: 500;
  color: var(--dark-black) !important;
  margin: 0 10px;
  font-size: 1rem;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary-yellow) !important;
}
.new-badge {
  background-color: var(--primary-yellow);
  color: var(--dark-black);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  vertical-align: top;
}
.phone-cta {
  background-color: var(--dark-black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.phone-cta:hover {
  background-color: var(--primary-yellow);
  color: var(--dark-black);
  text-decoration: none;
}
.phone-cta i { color: var(--primary-yellow); }
.phone-cta:hover i { color: var(--dark-black); }

/* Hero Section */
.hero-section {
  position: relative;
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 100px 0 180px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 30px;
}
.hero-features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}
.hero-feature-item i {
  color: var(--primary-yellow);
  font-size: 1.2rem;
}
.hero-car {
  position: absolute;
  bottom: 0;
  right: -5%;
  max-width: 60%;
  z-index: 1;
}

/* Booking Widget */
.booking-widget-container {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}
.booking-widget {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
}
.booking-tabs {
  display: flex;
  background: var(--light-bg);
  border-bottom: 1px solid #eee;
}
.booking-tab {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.booking-tab.active {
  background: var(--white);
  color: var(--dark-black);
  border-bottom: 3px solid var(--primary-yellow);
}
.booking-form-area {
  padding: 30px;
}
.booking-form-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
}
.form-group {
  flex: 1;
  position: relative;
}
.form-group i {
  position: absolute;
  left: 15px;
  top: 40px;
  color: var(--text-muted);
}
.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-black);
  margin-bottom: 8px;
}
.form-control {
  padding-left: 40px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--primary-yellow);
}
.btn-search-cabs {
  height: 50px;
  width: 100%;
  border-radius: 5px;
  font-size: 1.1rem;
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Trust Strip */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  padding: 15px;
}
.trust-icon {
  background: var(--light-bg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-yellow);
}
.trust-text {
  font-weight: 600;
  color: var(--dark-black);
  line-height: 1.2;
}

/* About Section */
.about-image-wrapper {
  position: relative;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-card {
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card.highlight {
  background: var(--primary-yellow);
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-black);
}
.stat-text {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Services */
.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.service-content {
  padding: 25px;
  position: relative;
}
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  color: var(--dark-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: -25px;
  left: 25px;
  box-shadow: var(--shadow-sm);
}
.service-title {
  margin-top: 15px;
  font-weight: 700;
  font-size: 1.25rem;
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.service-link {
  font-weight: 600;
  color: var(--dark-black);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-link:hover {
  color: var(--primary-yellow);
}

/* Fleet */
.fleet-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fleet-card:hover {
  box-shadow: var(--shadow-md);
}
.fleet-img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}
.fleet-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.fleet-model {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.fleet-capacity {
  font-size: 0.9rem;
  color: var(--dark-black);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fleet-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-black);
  margin-bottom: 20px;
  margin-top: auto;
}
.fleet-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Traffic Packages */
.traffic-packages-section {
  background-color: var(--light-bg);
}
.package-table-container {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 30px;
}
.package-header {
  background: var(--dark-navy);
  color: var(--white);
  padding: 20px;
  text-align: center;
}
.package-header h3 {
  margin: 0;
  font-weight: 700;
  font-size: 1.5rem;
}
.package-header p {
  margin: 5px 0 0 0;
  color: var(--primary-yellow);
  font-weight: 500;
}
.package-table {
  width: 100%;
  border-collapse: collapse;
}
.package-table th {
  background: #f1f1f1;
  padding: 15px;
  font-weight: 600;
  color: var(--dark-black);
  text-align: left;
}
.package-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.package-table tbody tr:last-child td {
  border-bottom: none;
}
.package-table tbody tr:hover {
  background-color: var(--light-bg);
}
.price-cell {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark-black);
}
.package-conditions {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}
.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.condition-item i.fa-check-circle { color: #28a745; }
.condition-item i.fa-times-circle { color: #dc3545; }

/* Responsive Table / Cards for Mobile */
@media (max-width: 768px) {
  .package-table thead { display: none; }
  .package-table, .package-table tbody, .package-table tr, .package-table td {
    display: block;
    width: 100%;
  }
  .package-table tr {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background: var(--white);
  }
  .package-table td {
    text-align: right;
    padding: 8px 0;
    position: relative;
    border: none;
  }
  .package-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 45%;
    padding-right: 10px;
    text-align: left;
    font-weight: 600;
  }
}

/* Destinations */
.destination-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 300px;
  display: block;
}
.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover img {
  transform: scale(1.1);
}
.destination-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}
.destination-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.destination-price {
  color: var(--primary-yellow);
  font-weight: 600;
}
.destinations-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.destinations-carousel::-webkit-scrollbar {
  height: 8px;
}
.destinations-carousel::-webkit-scrollbar-thumb {
  background-color: var(--primary-yellow);
  border-radius: 10px;
}
.destinations-carousel .col-md-3 {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Testimonials */
.testimonial-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  height: 100%;
}
.testimonial-stars {
  color: var(--primary-yellow);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.testimonial-name {
  font-weight: 700;
  color: var(--dark-black);
}

/* CTA Section */
.cta-section {
  background-image: linear-gradient(rgba(7, 26, 45, 0.9), rgba(7, 26, 45, 0.9)), url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

/* Footer */
.footer {
  background: var(--dark-black);
  color: #bbb;
  padding: 80px 0 20px 0;
}
.footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 25px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--primary-yellow);
  color: var(--dark-black);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #bbb;
}
.footer-links a:hover {
  color: var(--primary-yellow);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-contact i {
  color: var(--primary-yellow);
  margin-top: 5px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

/* Floating Buttons */
.floating-btn {
  position: fixed;
  bottom: 20px;
  z-index: 100;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.floating-btn:hover {
  transform: scale(1.1);
  color: white;
}
.floating-whatsapp {
  right: 20px;
  background-color: #25D366;
}
.floating-call {
  right: 80px;
  background-color: var(--dark-navy);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .hero-car { display: none; }
  .hero-title { font-size: 2.5rem; }
  .booking-widget-container { margin-top: -50px; }
  .booking-form-row { flex-direction: column; align-items: stretch; }
  .booking-tab { font-size: 0.85rem; padding: 10px 5px; }
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}

/* Enhanced Interactions */
.card.h-100 {
  transition: var(--transition) !important;
}
.card.h-100:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg) !important;
}

/* Exempt specific cards from hover float */
.booking-widget:hover, .cta-section .card:hover {
  transform: none !important;
}

.fleet-card {
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-card {
  transition: var(--transition);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.btn {
  transition: var(--transition) !important;
}
.btn:hover, .btn-primary-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15) !important;
}

.form-control {
  transition: var(--transition);
}
.form-control:focus {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.footer-links a {
  transition: var(--transition);
}
.footer-links a:hover {
  padding-left: 8px;
  color: var(--primary-yellow);
}

.nav-link {
  transition: var(--transition);
}
.nav-link:hover {
  transform: translateY(-2px);
}

.trust-item {
  transition: var(--transition);
}
.trust-item:hover {
  transform: translateY(-3px);
}
.trust-item:hover .trust-icon {
  background-color: var(--primary-yellow);
  color: var(--dark-black);
}

.service-card {
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  transition: var(--transition);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}
