/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.top-bar {
  background: linear-gradient(135deg, #0096e2 0%, #0077b3 100%);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.top-bar-link:hover {
  opacity: 0.8;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-link:hover {
  background: white;
  color: #0096e2;
  transform: translateY(-2px);
}

.main-nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s;
}

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

.logo-wrapper {
  flex-shrink: 0;
}

.site-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}

.site-logo:hover {
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #0096e2;
  transition: all 0.3s;
  border-radius: 2px;
}

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

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 0;
  display: block;
  position: relative;
  transition: color 0.3s;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0096e2;
  transition: width 0.3s;
}

.nav-list a:hover,
.nav-list .current-menu-item a {
  color: #0096e2;
}

.nav-list a:hover::after,
.nav-list .current-menu-item a::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
  font-size: 14px;
}

/* ==========================================
   FOOTER
   ========================================== */

.main-footer {
  background: #1a1a1a;
  color: #e0e0e0;
  margin-top: 80px;
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 20px;
  background: white !important;
  padding: 12px !important;
  border-radius: 10px !important;
  
}

.footer-description {
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 150, 226, 0.1);
  border-radius: 50%;
  color: #0096e2;
  transition: all 0.3s;
}

.social-icon:hover {
  background: #0096e2;
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #0096e2;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #0096e2;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: #0096e2;
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
}

.footer-contact strong {
  color: white;
  display: block;
  margin-bottom: 5px;
}

.footer-contact p {
  margin: 0;
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact a {
  color: #b0b0b0;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #0096e2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  margin: 0;
  color: #b0b0b0;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 14px;
}

.footer-bottom-links a {
  color: #b0b0b0;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #0096e2;
}

.separator {
  color: #666;
}

/* ==========================================
   FLOATING ELEMENTS
   ========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  animation: pulse 2s infinite;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 50px;
  height: 50px;
  background: #0096e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #0077b3;
  transform: translateY(-5px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 150, 226, 0.95) 0%, rgba(0, 119, 179, 0.95) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 35px;
  line-height: 1.7;
}

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

.btn-white {
  background: white;
  color: #0096e2;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: white;
  color: #0096e2;
  transform: translateY(-2px);
}

/* ==========================================
   SECTIONS
   ========================================== */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: #0096e2;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section-description {
  font-size: 17px;
  color: #777777;
  line-height: 1.7;
}

/* ==========================================
   FEATURES
   ========================================== */

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

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 150, 226, 0.08);
  transition: all 0.4s;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 150, 226, 0.15);
  border-color: #0096e2;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0096e2 0%, #0077b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.feature-description {
  color: #777777;
  line-height: 1.6;
}

/* ==========================================
   VEHICLE CARDS
   ========================================== */

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.1);
}

.vehicle-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0096e2;
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.vehicle-body {
  padding: 25px;
}

.vehicle-title {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.vehicle-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777777;
  font-size: 14px;
}

.vehicle-spec i {
  color: #0096e2;
  width: 20px;
}

.vehicle-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vehicle-price {
  font-size: 28px;
  font-weight: 700;
  color: #0096e2;
}

.vehicle-price span {
  font-size: 14px;
  font-weight: 400;
  color: #777777;
}

.btn-rent {
  background: #0096e2;
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-rent:hover {
  background: #0077b3;
  transform: translateX(3px);
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0096e2;
  box-shadow: 0 0 0 3px rgba(0, 150, 226, 0.1);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.4s;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  .nav-list li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .nav-list a {
    padding: 15px 0;
  }
  
  .nav-cta {
    width: 100%;
    margin-top: 20px;
  }
  
  .btn-nav {
    width: 100%;
    justify-content: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
  
  .scroll-top {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-white,
  .hero-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
