/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Urbanist', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}
body {
  overflow-x: hidden;
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 4%;
  background-color: #111;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between text and image */
}


.logo-combo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0fffcc;
  letter-spacing: 1px;
}

.logo-img {
  height: 32px; /* Adjust size as needed */
  width: auto;
}



.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.cta-link {
  color: #00ffcc;
  font-weight: 700;
}

/* Hide desktop nav on small screens */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide main nav items on mobile */
  }

  .hamburger {
    display: block; /* Ensure hamburger shows on mobile */
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10004;
  }

  .close-icon {
    display: block; /* Close icon visible when menu is open */
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10004;
  }
  .logo-combo {
    margin-left: 2.8rem;
  }
  body {
    padding-top: 70px;
  }
}

/* Default state - hide hamburger on desktop */
.hamburger, .close-icon {
  display: none;
}


/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(150%);
}



.hero-content {
  z-index: 1;
  max-width: 700px;
  padding: 1rem;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffccaa;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  color: #ddd;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #00ffcc;
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 8px 15px rgba(0, 255, 204, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: #00d8b3;
  box-shadow: 0 10px 20px rgba(0, 216, 179, 0.7);
}

/* Fleet Section */
.fleet {
  padding: 4rem 8%;
  background-color: #111;
  text-align: center;
}

.fleet h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffccaa;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.car {
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.car:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 255, 204, 0.35);
}

.car img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #333;
}

.car h3 {
  margin: 1rem 1.2rem 0.6rem;
  color: #00ffcc;
}

.car p {
  color: #ccc;
  font-size: 1rem;
  padding: 0 1.2rem 1.2rem;
  line-height: 1.4;
}

.btn-secondary {
  display: inline-block;
  margin: 0 0 1.6rem 1.2rem;
  padding: 0.7rem 2rem;
  background: #00ffcc;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 255, 204, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
  background: #00d8b3;
  box-shadow: 0 8px 25px rgba(0, 216, 179, 0.5);
}

/* Badge */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #00ffcc;
  color: #000;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(0, 255, 204, 0.3);
  user-select: none;
}

/* Why Us Section */
.why-us {
  background: #000;
  padding: 4rem 8%;
  text-align: center;
}

.why-us h2 {
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffccaa;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.feature {
  background: #111;
  padding: 1.8rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.15);
  transition: transform 0.3s ease;
  color: #ccc;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.feature h3 {
  color: #00ffcc;
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

/* Reviews Section */
.reviews {
  padding: 4rem 8%;
  background-color: #111;
  text-align: center;
}

.reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 2.2rem;
  color: #00ffcc;
  text-shadow: 0 0 8px #00ffccaa;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.review {
  background: #1a1a1a;
  padding: 1.8rem;
  border-radius: 10px;
  font-size: 1rem;
  color: #ccc;
  font-style: italic;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.1);
  transition: box-shadow 0.3s ease;
}

.review:hover {
  box-shadow: 0 0 35px rgba(0, 255, 204, 0.3);
}

.review span {
  display: block;
  margin-top: 1.2rem;
  font-weight: 700;
  color: #00ffcc;
  font-style: normal;
}

/* Footer */
.footer {
  background: #000;
  padding: 2rem 4%;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  user-select: none;
}

.footer .socials {
  margin-top: 1rem;
}

.footer .socials a {
  color: #fff;
  margin: 0 0.7rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer .socials a:hover {
  color: #00ffcc;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .car img {
    height: 160px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Social Media Icons Styling */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gray-light);
  color: var(--gray-dark);
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Platform-specific hover colors */
.social-icon.instagram:hover {
  background: #E1306C; /* Instagram pink-red */
}

.social-icon.twitter:hover {
  background: #1DA1F2; /* Twitter blue */
}

.social-icon.tiktok:hover {
  background: #000000; /* TikTok black */
}

/* Optional: Spacing below for layout */
.social-icons-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}



/* Sidebar and Overlay Styles */

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  padding-top: 4rem;
  transition: left 0.3s ease;
  z-index: 10002;
}

/* Sidebar list */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 1rem;
}

.sidebar ul li a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 0.8rem 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}

.sidebar ul li a i {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #00ffcc;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar ul li a:hover {
  background-color: #00ffcc1a;
  color: #00ffcc;
}

.sidebar ul li a:hover i {
  color: #00ffcc;
  transform: scale(1.2) rotate(-5deg);
}

/* Sidebar Active */
.sidebar.active {
  left: 0;
}

/* Hamburger and Close Icons */
.hamburger, .close-icon {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  outline: none;
}

.close-icon {
  display: none;
}

.menu-open .hamburger {
  display: none !important;
}

.menu-open .close-icon {
  display: block !important;
}

@media (min-width: 769px) {
  .hamburger, .close-icon {
    display: none !important;
  }
  .sidebar {
    display: none;
  }
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10000;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Left Nav */
.left-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Mobile Hamburger & Sidebar (new) --- */
@media (max-width: 768px) {
  .logo-combo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0;
  }
  .hamburger-btn {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 2rem;
    margin-right: 0.5rem;
    cursor: pointer;
    z-index: 10004;
    display: flex;
    align-items: center;
  }
  .mobile-nav {
    display: none !important;
  }
  .sidebar-menu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 250px;
    height: 100vh;
    background: #111;
    z-index: 10010;
    transition: left 0.3s cubic-bezier(.77,0,.18,1);
    box-shadow: 2px 0 16px rgba(0,0,0,0.2);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    overflow-y: auto;
  }
  .sidebar-menu.active {
    left: 0;
  }
  .sidebar-menu .close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10011;
  }
  .sidebar-menu ul {
    list-style: none;
    padding: 2.5rem 0 0 0;
    margin: 0;
    width: 100%;
  }
  .sidebar-menu ul li {
    margin-bottom: 1.2rem;
  }
  .sidebar-menu ul li a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.15rem;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    gap: 1rem;
  }
  .sidebar-menu ul li a i {
    font-size: 1.3rem;
    color: #00ffcc;
    min-width: 24px;
    text-align: center;
    transition: color 0.2s;
  }
  .sidebar-menu ul li a:hover {
    background: #00ffcc22;
    color: #00ffcc;
  }
  .sidebar-menu ul li a:hover i {
    color: #00ffcc;
  }
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 10009;
    transition: opacity 0.3s;
  }
  .sidebar-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
  body.sidebar-open {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .desktop-nav {
    display: flex !important;
    gap: 1rem;
    list-style: none;
    align-items: center;
    margin-left: auto;
    margin-right: 0;
  }
  .desktop-nav li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
  }
  .desktop-nav li a:hover,
  .desktop-nav li a:focus {
    color: #00ffcc;
    background: #222;
    font-weight: 700;
  }
  .desktop-nav li a i {
    font-size: 1.1rem;
    color: #00ffcc;
    margin-right: 0.5em;
    vertical-align: middle;
    transition: color 0.2s;
  }
  .desktop-nav li a:hover i {
    color: #00ffcc;
  }
  .mobile-nav,
  .sidebar-menu,
  .sidebar-overlay {
    display: none !important;
  }
  .hamburger-btn {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-menu.active {
    max-height: 80vh;
    overflow-y: auto;
  }
}
