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

:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --accent: #0f3460;
  --gold: #f5c518;
  --light: #f8f9fa;
  --dark: #16213e;
  --text: #333;
  --text-light: #777;
  --white: #fff;
  --shadow: 0 5px 25px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }

img { max-width: 100%; }

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

.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: #d63850;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

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

.btn-gold:hover {
  background: #e0b010;
  transform: translateY(-2px);
}

/* Header / Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.logo span { color: var(--secondary); }

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

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--secondary); }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.nav-phone:hover {
  background: #d63850;
  transform: scale(1.05);
}

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

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 50%, var(--accent) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(circle, rgba(233,69,96,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span { color: var(--secondary); }

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 550px;
  margin: 0 auto;
}

.section-title .title-accent {
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Fleet */
.fleet { background: var(--light); }

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

.car-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.car-image {
  height: 200px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.car-image .car-emoji {
  font-size: 80px;
  color: rgba(255,255,255,0.4);
}

.car-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.car-info {
  padding: 25px;
}

.car-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.car-info .car-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.5;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.car-features span {
  background: var(--light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--text-light);
}

.car-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.car-price .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
}

.car-price .price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}

.car-price .btn {
  padding: 8px 20px;
  font-size: 13px;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 25px;
  border-radius: 16px;
  transition: var(--transition);
  border: 1px solid #eee;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(233,69,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 20px;
}

/* Contact Section */
.contact-section { background: var(--light); }

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

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item .ci-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  flex-shrink: 0;
}

.contact-item .ci-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3px;
}

.contact-item .ci-text p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

/* Footer */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

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

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col .logo {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-contact .fc-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover { color: var(--secondary); }

/* Page Header */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* Subpages */
.page-content { padding: 80px 0; }

/* Fleet page */
.fleet-categories {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.fleet-cat-btn {
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid #e5e5e5;
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text);
}

.fleet-cat-btn:hover,
.fleet-cat-btn.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

/* Contact page */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  height: 350px;
  background: #e5e5e5;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.location-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.06);
  border: 1px solid #eee;
}

.location-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.location-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text p { margin: 0 auto 35px; }
  .hero-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }

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

  .nav-phone { display: none; }

  .hero-text h1 { font-size: 32px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .section-title h2 { font-size: 28px; }
  .section { padding: 60px 0; }

  .contact-grid,
  .contact-page-grid { grid-template-columns: 1fr; }

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

  .contact-form { padding: 25px; }

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

  .footer-bottom { flex-direction: column; text-align: center; }

  .page-header h1 { font-size: 30px; }

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

  .cta-section h2 { font-size: 28px; }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

.cookie-consent.show { transform: translateY(0); }

.cookie-consent .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-consent p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-consent .btn {
  flex-shrink: 0;
  padding: 10px 28px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cookie-consent .container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .stat-card { padding: 20px; }
}
