
/* ================================ */
/* GLOBAL STYLES                    */
/* ================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}
a { color: inherit; }

/* ================================ */
/* TOP CONTACT BAR                  */
/* ================================ */
.top-bar {
  background: #1a1a1a;
  padding: 8px 40px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar a:hover { color: #4ade80; }
.top-bar svg { width: 14px; height: 14px; fill: #4ade80; }

/* ================================ */
/* HEADER                           */
/* ================================ */
.header-wrap {
  background: #fff;
  border-bottom: 2px solid #166534;
}
.header {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  letter-spacing: -0.5px;
}
.logo span { color: #333; }
.nav { display: flex; gap: 0; }
.nav-link {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 3px solid transparent;
  transition: all 0.15s ease;
  text-decoration: none;
}
.nav-link:hover { color: #166534; border-bottom-color: #166534; }
.nav-link.active {
  color: #166534;
  border-bottom-color: #166534;
  font-weight: 600;
}

/* ================================ */
/* BANNER                           */
/* ================================ */
.banner {
  position: relative;
  height: 650px;
  overflow: hidden;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
.banner-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.banner-content {
  max-width: 600px;
  text-align: right;
}
.banner-content p {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.banner-btn {
  display: inline-block;
  background: #166534;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
.banner-btn:hover { background: #15803d; }

/* ================================ */
/* SECTIONS                         */
/* ================================ */

/* Intro */
.section-intro {
  background: #f8faf8;
  padding: 50px 40px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.section-intro p {
  font-size: 18px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Olelon Battery Banner */
.olelon-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.olelon-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.olelon-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.olelon-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.olelon-content h2 span { color: #4ade80; }
.olelon-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
}
.olelon-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.olelon-badge {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.olelon-btn {
  display: inline-block;
  background: #4ade80;
  color: #0f172a;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.olelon-link {
  color: #4ade80;
  text-decoration: none;
  transition: color 0.15s ease;
}
.olelon-link:hover {
  color: #86efac;
  text-decoration: underline;
}
.olelon-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.olelon-feature {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.olelon-feature svg { width: 28px; height: 28px; fill: #4ade80; margin-bottom: 8px; }
.olelon-feature h4 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.olelon-feature p { font-size: 12px; color: #94a3b8; margin: 0; }

/* Upgrade Section */
.section-upgrade {
  padding: 70px 40px;
  text-align: center;
  background: #fff;
}
.section-upgrade h2 {
  font-size: 28px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 16px;
}
.section-upgrade p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.section-upgrade-img {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.section-upgrade-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Sectors */
.section-sectors {
  background: #166534;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}
.section-sectors h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sectors p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 32px;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.sector-item {
  background: rgba(255,255,255,0.1);
  padding: 20px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
}
.sector-item svg { width: 32px; height: 32px; fill: #4ade80; margin-bottom: 8px; }
.sector-item span { display: block; font-size: 13px; font-weight: 500; }

/* Featured Products */
.section-featured {
  padding: 70px 40px;
  background: #f9fafb;
}
.section-featured h2 {
  font-size: 28px;
  font-weight: 700;
  color: #166534;
  text-align: center;
  margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.15s ease;
}
.product-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.product-thumb {
  height: 150px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e7eb;
}
.product-thumb svg { width: 56px; height: 56px; fill: #166534; opacity: 0.6; }
.product-details { padding: 16px; }
.product-details h3 { font-size: 15px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.product-details p { font-size: 13px; color: #666; margin-bottom: 12px; }
.find-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #166534;
  cursor: pointer;
  text-decoration: none;
}
.find-more:hover { text-decoration: underline; }
.find-more svg { width: 12px; height: 12px; fill: #166534; }

/* Finance */
.section-finance {
  background: #1a1a1a;
  padding: 50px 40px;
  text-align: center;
  color: #fff;
}
.section-finance h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.section-finance p { font-size: 15px; opacity: 0.8; margin-bottom: 20px; }
.finance-btn {
  display: inline-block;
  background: #166534;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

/* ================================ */
/* CONTACT SECTION                  */
/* ================================ */
.section-contact {
  padding: 70px 40px;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-left h2 {
  font-size: 26px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 12px;
}
.contact-left > p {
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
}
.address-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.address-icon {
  width: 40px;
  height: 40px;
  background: #f0fdf4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.address-icon svg { width: 18px; height: 18px; fill: #166534; }
.address-info h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #166534; margin-bottom: 4px; }
.address-info p, .address-info a { font-size: 14px; color: #555; text-decoration: none; display: block; }

/* Contact Form */
.contact-form {
  background: #f8faf8;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-full { margin-bottom: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  background: #fff;
}
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #166534; }
.submit-btn {
  background: #166534;
  color: #fff;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 8px;
}
.submit-btn:hover { background: #15803d; }

/* ================================ */
/* ABOUT PAGE                       */
/* ================================ */
.about-hero {
  position: relative;
  height: 500px;
  overflow: visible;
  margin-bottom: 0;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.about-content-wrap {
  position: relative;
  max-width: 1100px;
  margin: -200px auto 0;
  padding: 0 40px;
  z-index: 2;
}
.about-tab {
  display: inline-block;
  background: #166534;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px 8px 0 0;
  position: relative;
  z-index: 3;
}
.about-section {
  position: relative;
  padding: 50px 60px;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 2;
}
.about-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 16px;
}
.about-section p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Testimonials */
.testimonials-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
}
.testimonials-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #166534;
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #f8faf8;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 3px solid #166534;
}
.testimonial-quote svg {
  width: 28px;
  height: 28px;
  fill: #4ade80;
  margin-bottom: 12px;
  opacity: 0.8;
}
.testimonial-quote p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-author {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
}
.testimonial-author span {
  font-size: 13px;
  color: #166534;
  font-weight: 500;
}

/* ================================ */
/* VEHICLES PAGE                    */
/* ================================ */
.vehicles-hero {
  position: relative;
  height: 500px;
  overflow: visible;
}
.vehicles-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicles-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.vehicles-content-wrap {
  position: relative;
  max-width: 1100px;
  margin: -80px auto 0;
  padding: 0 40px;
  z-index: 2;
}
.vehicles-tab {
  display: inline-block;
  background: #166534;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px 8px 0 0;
  position: relative;
  z-index: 3;
}
.vehicles-listing {
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 40px;
}

/* Vehicle Grid */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}
.vehicle-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.vehicle-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f0fdf4;
}
.vehicle-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vehicle-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-card-placeholder svg {
  width: 60px;
  height: 60px;
  fill: #166534;
  opacity: 0.4;
}
.vehicle-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.vehicle-badge.sold {
  background: #dc2626;
  color: #fff;
}
.vehicle-badge.reserved {
  background: #f59e0b;
  color: #fff;
}
.vehicle-card-info {
  padding: 20px;
}
.vehicle-card-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.vehicle-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.vehicle-card-meta span {
  font-size: 12px;
  color: #166534;
  background: #f0fdf4;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}
.vehicle-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #166534;
}
.no-vehicles {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  font-size: 16px;
  padding: 40px;
}

/* ================================ */
/* SINGLE VEHICLE DETAIL            */
/* ================================ */
.vehicle-detail {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 40px;
}

/* Image Gallery */
.vehicle-gallery {
  margin-bottom: 40px;
}
.gallery-main {
  position: relative;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
}
.gallery-slides {
  width: 100%;
  height: 100%;
}
.gallery-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.gallery-slide.active {
  display: block;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22, 101, 52, 0.8);
  color: #fff;
  border: none;
  padding: 16px 20px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.gallery-prev:hover,
.gallery-next:hover {
  background: #166534;
}
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: #166534;
  opacity: 1;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vehicle Info */
.vehicle-info {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}
.vehicle-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.vehicle-info-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
}
.vehicle-status {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.vehicle-status.available {
  background: #f0fdf4;
  color: #166534;
}
.vehicle-status.sold {
  background: #fef2f2;
  color: #dc2626;
}
.vehicle-status.reserved {
  background: #fffbeb;
  color: #d97706;
}
.vehicle-price {
  font-size: 24px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.vehicle-description {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Specifications Grid */
.vehicle-specs {
  margin-bottom: 32px;
}
.vehicle-specs h2 {
  font-size: 20px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 16px;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8faf8;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}
.spec-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.spec-value {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 600;
}

/* Documents Grid */
.vehicle-documents {
  margin-bottom: 32px;
}
.vehicle-documents h2 {
  font-size: 20px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 16px;
}
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.document-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f8faf8;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.15s ease;
}
.document-card:hover {
  background: #f0fdf4;
  border-color: #166534;
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.1);
}
.document-icon svg {
  width: 32px;
  height: 32px;
  fill: #166534;
}
.document-info {
  flex: 1;
}
.document-type {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.document-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.document-download svg {
  width: 20px;
  height: 20px;
  fill: #166534;
  opacity: 0.6;
}
.document-card:hover .document-download svg {
  opacity: 1;
}

/* Enquiry Section */
.vehicle-enquiry {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}
.enquiry-btn {
  display: inline-block;
  background: #166534;
  color: #fff;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.enquiry-btn:hover { background: #15803d; }
.back-btn {
  font-size: 14px;
  color: #166534;
  font-weight: 500;
  text-decoration: none;
}
.back-btn:hover { text-decoration: underline; }

/* ================================ */
/* FOOTER                           */
/* ================================ */
.footer {
  background: #1a1a1a;
  padding: 50px 40px;
  color: #aaa;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.footer h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.footer-links li a:hover { color: #4ade80; }
.footer-contact p, .footer-contact a {
  font-size: 14px;
  color: #aaa;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}
.footer-contact a:hover { color: #4ade80; }
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #666;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================ */
/* ANIMATIONS                       */
/* ================================ */
.fade-in { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeIn 0.5s ease-out both; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
}

/* ================================ */
/* RESPONSIVE                       */
/* ================================ */
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .banner-content p { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .olelon-inner { grid-template-columns: 1fr; }
  .olelon-features { grid-template-columns: 1fr 1fr; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .documents-grid { grid-template-columns: 1fr; }
  .gallery-main { height: 300px; }
  .vehicle-info-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .vehicle-enquiry { flex-direction: column; align-items: flex-start; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

