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

:root {
  /* Colors */
  --bg-dark: #0A1128;
  --bg-darker: #050914;
  --bg-light: #F8F9FA;
  --primary: #FFB703;
  --primary-hover: #FB8500;
  --text-dark: #1F2937;
  --text-light: #E5E7EB;
  --text-muted: #9CA3AF;
  
  --surface-white: #FFFFFF;
  --surface-dark: #111827;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(255, 183, 3, 0.3);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* ================== COMPONENTS ================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-darker);
  box-shadow: var(--shadow-sm);
}

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

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-darker);
  transform: translateY(-2px);
}

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

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

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  background: rgba(255, 183, 3, 0.15);
  color: var(--primary-hover);
  border: 1px solid rgba(255, 183, 3, 0.3);
  margin-bottom: 1rem;
}

.badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Section Title */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

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

/* ================== HEADER ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--bg-dark);
  line-height: 1;
}

.logo-text span {
  color: var(--primary-hover);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--bg-dark);
  background: none;
  border: none;
  cursor: pointer;
}

/* ================== HERO ================== */
.hero {
  padding-top: 120px;
  padding-bottom: 6rem;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 183, 3, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--surface-white);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.hf-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.hf-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* Booking Card */
.booking-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.bc-header {
  margin-bottom: 2rem;
}

.bc-title {
  font-size: 1.5rem;
  color: var(--bg-dark);
}

.bc-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.input-group {
  margin-bottom: 1.5rem;
}

.input-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.input-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.input-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2);
  background: var(--surface-white);
}

.input-field i {
  color: var(--primary-hover);
}

.input-field input, .input-field select {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  outline: none;
}

.input-swap {
  display: flex;
  justify-content: center;
  margin: -1rem 0;
  position: relative;
  z-index: 2;
}

.swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-white);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.swap-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
  transform: rotate(180deg);
}

.book-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1.25rem;
  font-size: 1.125rem;
}

/* ================== SERVICES ================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--surface-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 183, 3, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-hover);
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-hover);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.75rem;
}

/* ================== FLEET ================== */
.fleet {
  background: var(--bg-dark);
  color: var(--surface-white);
}

.fleet .section-title {
  color: var(--surface-white);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.fleet-card {
  background: var(--surface-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 3, 0.3);
  box-shadow: var(--shadow-glow);
}

.fleet-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.1);
}

.fleet-content {
  padding: 1.5rem;
}

.fleet-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fleet-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.fleet-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.fleet-price span {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ================== HOW IT WORKS ================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 50%, transparent 50%);
  background-size: 15px 15px;
  z-index: 0;
  opacity: 0.5;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  background: var(--surface-white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--bg-dark);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 1.25rem;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.step-desc {
  color: var(--text-muted);
}

/* ================== FOOTER ================== */
.footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding-top: 5rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  background: var(--primary);
  color: var(--bg-darker);
}

.footer-logo .logo-text {
  color: var(--surface-white);
}

.footer-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  color: var(--bg-darker);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  color: var(--surface-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fc-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 183, 3, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
}

.fc-text h4 {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.fc-text p {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--surface-white);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--surface-white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-wa {
  background-color: #25D366;
}

.float-call {
  background-color: var(--bg-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a2a4f 100%);
  color: var(--surface-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,183,3,0.15) 0%, transparent 70%);
}

.cta-section::before {
  top: -50px; left: -50px;
}
.cta-section::after {
  bottom: -50px; right: -50px;
}

.cta-section .section-title {
  color: var(--surface-white);
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions, .hero-features {
    justify-content: center;
  }
  
  .booking-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-actions .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--surface-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 999;
}

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

.mobile-nav .nav-link {
  font-size: 1.25rem;
  display: block;
}

/* ================== MODAL ================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 17, 40, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--surface-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-hover);
  transform: rotate(90deg);
}
