/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

.text-primary {
  color: #d4af37;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: #d4af37;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #e5e5e5;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 0;
  position: relative;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.image-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.8;
}

/* Section Styles */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
  background: linear-gradient(135deg, #fefefe, #f9f9f9);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  color: #d4af37;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
}

.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.feature-description {
  color: #666666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
}

.services .section-title {
  color: #ffffff;
}

.services .section-title::after {
  background: linear-gradient(90deg, #d4af37, #f4d03f);
}

.services .section-description {
  color: #b8b8b8;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.car-card {
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.car-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.4);
}

.car-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.08);
}

.car-type {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.car-info {
  padding: 30px;
}

.car-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.car-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
}

.period {
  color: #b8b8b8;
  font-size: 1rem;
}

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.feature {
  font-size: 0.95rem;
  color: #e5e5e5;
  display: flex;
  align-items: center;
}

.feature::before {
  content: "✓";
  color: #d4af37;
  font-weight: bold;
  margin-right: 8px;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-container {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  padding: 60px 50px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.1);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.stars {
  font-size: 1.8rem;
  color: #d4af37;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.7;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.3);
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: serif;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.testimonial-author span {
  color: #666666;
  font-size: 1rem;
  font-weight: 500;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.slider-btn {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  pointer-events: all;
  font-weight: bold;
}

.slider-btn:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.prev-btn {
  transform: translateX(-28px);
}

.next-btn {
  transform: translateX(28px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

/* Booking Section */
.booking {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
}

.booking .section-title {
  color: #ffffff;
}

.booking .section-title::after {
  background: linear-gradient(90deg, #d4af37, #f4d03f);
}

.booking .section-description {
  color: #b8b8b8;
}

.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2d2d2d, #3a3a3a);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.05rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder {
  color: #b8b8b8;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
  background: #2d2d2d;
  color: #ffffff;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
  color: #d4af37;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #d4af37;
}

.footer-section p {
  color: #b8b8b8;
  line-height: 1.7;
  font-size: 1.05rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #e5e5e5;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.footer-section ul li a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: #d4af37;
}

.contact-item span {
  color: #e5e5e5;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.2));
  border-radius: 12px;
  color: #d4af37;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-link:hover {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #b8b8b8;
  font-size: 1.05rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .booking-form-container {
    padding: 40px 30px;
    margin: 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .slider-controls {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .booking-form-container {
    padding: 30px 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
}
