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

:root {
  --primary-orange: #FF5722;
  --secondary-blue: #2196F3;
  --text-dark: #0A0A0A;
  --text-light: #FFFFFF;
  --text-muted: #A0A0A0;
  --bg-dark: #050505;
  --bg-light: #FFFFFF;
  --bg-alt: #121212;
  --font-main: 'Poppins', sans-serif;
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header & Nav */
header {
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  position: fixed;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

.hero-tag {
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 45px;
  max-width: 700px;
  margin-inline: auto;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: var(--primary-orange);
  color: white;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #e64a19;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background-color: white;
  color: black;
}

/* Services Grid */
.section-padding {
  padding: 120px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--primary-orange);
  transform: translateY(-10px);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Vehicle Selector Integrated */
.card-selectors {
  margin-bottom: 25px;
}

.vehicle-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.vehicle-select:hover {
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.12);
}

.vehicle-select option {
  background-color: #fff !important;
  color: #000 !important;
  padding: 10px;
}

.card-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  margin-bottom: 25px;
}

/* Stats/Badges */
.hero-badges {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.badge i {
  color: var(--secondary-blue);
}

/* Footer */
footer {
  background: #000;
  padding: 100px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero-btns {
    flex-direction: column;
  }

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