/* ===== XLNC Car Hire - Premium Styles ===== */
:root {
  --black: #000;
  --dark: #111;
  --darker: #0a0a0a;
  --card: #1a1a1a;
  --gold: #d4af37;
  --gold-light: #e8c740;
  --gold-dark: #b8962e;
  --gold-gradient: linear-gradient(135deg, #d4af37, #e8c740, #d4af37);
  --white: #fff;
  --light: #e0e0e0;
  --grey: #888;
  --dark-grey: #333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark-grey); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  padding: 10px 40px;
  box-shadow: 0 2px 30px rgba(212, 175, 55, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 45px;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
  height: 38px;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

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

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

.nav-cta {
  background: var(--gold-gradient);
  color: var(--black) !important;
  padding: 10px 25px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
  color: var(--black) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  pointer-events: none;
}

.hero-video-bg iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  height: 100px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.btn {
  padding: 14px 35px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero .scroll-indicator svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--card);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ===== Section Styles ===== */
.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2 .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-header p {
  color: var(--grey);
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

/* ===== Featured Cars Grid ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.car-card {
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.car-card:nth-child(1) { animation-delay: 0.1s; }
.car-card:nth-child(2) { animation-delay: 0.2s; }
.car-card:nth-child(3) { animation-delay: 0.3s; }
.car-card:nth-child(4) { animation-delay: 0.4s; }
.car-card:nth-child(5) { animation-delay: 0.5s; }
.car-card:nth-child(6) { animation-delay: 0.6s; }

.car-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.08);
}

.car-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.car-card:hover .car-card-overlay {
  opacity: 1;
}

.car-card-overlay .btn {
  padding: 10px 25px;
  font-size: 0.8rem;
}

.car-card-details {
  padding: 20px;
}

.car-card-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.car-card-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.car-card-specs span {
  font-size: 0.8rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-card-specs span::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
}

.car-card-specs span:first-child::before { content: ''; }

.car-card-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.car-card-price .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.car-card-price .price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--grey);
}

.car-card-price .cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  background: rgba(255,255,255,0.05);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--gold-gradient);
  transform: scale(1.1);
}

.service-card:hover .service-icon svg { color: #000; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonial-section {
  background: linear-gradient(135deg, var(--darker), var(--dark));
  padding: 100px 40px;
}

.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 5px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--light);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--grey);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-grey);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ===== Footer ===== */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 60px 40px 30px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

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

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

.footer-links a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
}

/* ===== Page Header ===== */
.page-header {
  padding: 160px 40px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--darker), var(--black));
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-header h1 .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== Fleet Page ===== */
.fleet-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 25px;
  background: var(--card);
  color: var(--grey);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 600;
  border-color: transparent;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.fleet-grid .car-card {
  animation: fadeInUp 0.4s ease forwards;
}

/* ===== Services Page ===== */
.services-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.service-detailed {
  background: var(--card);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
  transition: all 0.4s;
}

.service-detailed:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(212, 175, 55, 0.08);
}

.service-detailed-body {
  padding: 35px;
}

.service-detailed .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.service-detailed h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-detailed p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 8px 0;
  color: var(--light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== About Page ===== */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text h2 .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 35px;
  text-align: center;
  transition: all 0.4s;
}

.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.value-card p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== Contact Page ===== */
.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

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

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-info h2 .gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info > p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  color: var(--gold);
}

.contact-method h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-method p, .contact-method a {
  color: var(--grey);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-method a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

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

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

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Page Transition ===== */
.page-transition {
  animation: pageIn 0.6s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    padding: 100px 40px;
    gap: 25px;
    transition: 0.3s ease;
    backdrop-filter: blur(20px);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .hero-logo { height: 70px; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

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

  .about-values { grid-template-columns: 1fr 1fr; }

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

  .section { padding: 70px 20px; }
}

@media (max-width: 600px) {
  .navbar { padding: 12px 20px; }
  .nav-logo span { display: none; }
  
  .hero h1 { font-size: 1.8rem; }
  .hero-logo { height: 50px; }
  
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 25px 15px; }
  .stat-number { font-size: 2rem; }

  .section-header h2 { font-size: 1.8rem; }
  .featured-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }

  .about-values { grid-template-columns: 1fr; }
  .contact-form { padding: 25px; }

  .footer-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
}
