/* Root Variable Design Tokens */
:root {
  --primary: #f5b700;
  --primary-hover: #e0a600;
  --primary-glow: rgba(245, 183, 0, 0.4);
  --dark-bg: #0b0c10;
  --dark-card: #1f2833;
  --dark-card-lighter: #2c3540;
  --text-white: #ffffff;
  --text-gray: #c5c6c7;
  --text-dark: #1f2833;
  --whatsapp-color: #25d366;
  --whatsapp-hover: #20ba5a;
  --phone-color: #007bff;
  --phone-hover: #0056b3;
  --border-radius: 12px;
  --transition-speed: 0.3s;
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  --box-shadow-hover: 0 15px 35px rgba(245, 183, 0, 0.15);
}

/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--text-white);
  font-weight: 700;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.highlight {
  color: var(--primary);
  background: linear-gradient(120deg, var(--primary) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark-bg);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 0 15px var(--primary-glow);
  transform: translateY(-2px);
}

.btn-success {
  background-color: var(--whatsapp-color);
  color: var(--text-white);
}

.btn-success:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--dark-card-lighter);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--dark-bg);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* Pulse animation for CTA button */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 183, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(245, 183, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 183, 0, 0);
  }
}

.btn-pulse {
  animation: pulse 2s infinite;
}

/* Header & Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-speed) ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background-color: var(--dark-bg);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 80px 40px;
  gap: 25px;
  transition: right 0.4s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.mobile-menu.open {
  right: 0;
}

.menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-white);
}

.mobile-link:hover {
  color: var(--primary);
}

/* Section Common Label/Title Styling */
.section-label {
  display: inline-block;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 85px);
  margin-top: 85px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: radial-gradient(circle at 10% 20%, rgba(31, 40, 51, 0.4) 0%, rgba(11, 12, 16, 1) 90%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.badge-724 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 183, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(245, 183, 0, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-card-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 4px solid var(--primary);
  max-width: 100%;
}

.hero-taxi-img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-taxi-img {
  transform: scale(1.05);
}

/* Highlight Banner Strip */
.banner-strip {
  background-color: var(--primary);
  color: var(--dark-bg);
  padding: 30px 0;
}

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

.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.strip-item i {
  font-size: 2.2rem;
}

.strip-item h3 {
  font-size: 1.1rem;
  color: var(--dark-bg);
  margin-bottom: 2px;
  font-weight: 800;
}

.strip-item p {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* About Us Section */
.about {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.about-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 480px;
}

.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 4px solid var(--dark-card-lighter);
  box-shadow: var(--box-shadow);
}

.img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  border: 4px solid var(--primary);
  box-shadow: var(--box-shadow);
  z-index: 2;
}

.about-text-side .lead {
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text-side p {
  margin-bottom: 25px;
}

.about-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.feat-box {
  background-color: var(--dark-card);
  border-left: 4px solid var(--primary);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  flex: 1;
}

.feat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.feat-txt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: rgba(31, 40, 51, 0.2);
}

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

.service-card {
  background-color: var(--dark-card);
  border-radius: var(--border-radius);
  padding: 40px 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-speed) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(245, 183, 0, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(245, 183, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--dark-bg);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 30px;
  flex-grow: 1;
}

.service-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  margin-top: auto;
  opacity: 0.85;
  transition: opacity var(--transition-speed) ease;
}

.service-card:hover .service-img {
  opacity: 1;
}

/* Call To Action Banner */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--text-white);
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 5s ease;
}

.cta-banner:hover .cta-banner-bg {
  transform: scale(1.03);
}

.cta-relative {
  position: relative;
  z-index: 2;
}

.cta-relative h2 {
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 20px;
}

.cta-relative p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* Reviews Section */
.reviews {
  padding: 100px 0;
  background-color: var(--dark-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.review-card {
  background-color: var(--dark-card);
  padding: 30px 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  transition: transform var(--transition-speed) ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 183, 0, 0.15);
}

.stars {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-gray);
  flex-grow: 1;
}

.reviewer-name {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: rgba(31, 40, 51, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-card {
  background-color: var(--dark-card);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info-card p {
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(0, 123, 255, 0.1);
  color: var(--phone-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}

.info-icon.info-whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp-color);
}

.info-item:hover .info-icon {
  transform: scale(1.1);
}

.info-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.info-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.contact-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 4px solid var(--dark-card-lighter);
}

/* Footer Section */
.footer-bottom {
  background-color: #050608;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
  height: 55px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  max-width: 350px;
}

.footer-grid h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-grid h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-links ul, .footer-services-list ul {
  list-style: none;
}

.footer-links li, .footer-services-list li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

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

.footer-copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

/* Sticky Action Buttons */
.sticky-actions {
  position: fixed;
  bottom: 25px;
  left: 25px;
  right: 25px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 999;
}

.sticky-btn {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-speed) ease;
}

.sticky-btn span {
  display: none;
}

.sticky-btn i {
  font-size: 1.6rem;
}

.sticky-call {
  background-color: var(--phone-color);
}

.sticky-call:hover {
  background-color: var(--phone-hover);
  transform: translateY(-3px);
}

.sticky-whatsapp {
  background-color: var(--whatsapp-color);
}

.sticky-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .image-stack {
    height: 420px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (min-width: 769px) {
  /* On Desktop, stack the buttons vertically in the bottom right corner */
  .sticky-actions {
    left: auto;
    right: 30px;
    bottom: 30px;
    flex-direction: column;
    width: auto;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu, .header-cta {
    display: none;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-taxi-img {
    height: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .about {
    padding: 60px 0;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .reviews {
    padding: 60px 0;
  }
  
  .contact {
    padding: 60px 0;
  }
}
