/* ================= ROOT SYSTEM ================= */
:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --secondary: #202124;
  --bg: #f8f9fa;
  --text: #3c4043;
  --card: #ffffff;
  --success: #34a853;
  --warning: #fbbc04;
  --danger: #ea4335;

  --gradient: linear-gradient(135deg, #1a73e8, #4fc3f7);
  --gradient-soft: linear-gradient(180deg, rgba(26,115,232,.08), rgba(79,195,247,.02));
  --gradient-success: linear-gradient(135deg, #34a853, #7cbb00);

  --shadow-lg: 0 30px 70px rgba(0,0,0,.12);
  --shadow-md: 0 18px 40px rgba(0,0,0,.1);
  --shadow-sm: 0 8px 20px rgba(0,0,0,.08);

  --radius: 14px;
  --radius-sm: 10px;

  --transition: all .3s ease;
}

/* ================= BASE ================= */
body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(79,195,247,.12), transparent 40%),
    radial-gradient(circle at bottom left, rgba(26,115,232,.10), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* TOPBAR */
.topbar {
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar a {
  color: #fff;
  opacity: 0.8;
  transition: opacity .3s;
}

.topbar a:hover {
  opacity: 1;
}

.topbar span {
  opacity: 0.5;
}

/* NAVBAR */
.main-navbar {
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 12px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.02em;
}

.navbar-brand span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 8px;
  transition: color .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* GRID LAYOUT */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 60px;
}

/* TEXT */
.hero-text {
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 18px;
  opacity: .95;
  max-width: 480px;
}

/* SEARCH FORM */
.search-form-vertical {
  display: flex;
  justify-content: flex-end;
}

.search-form-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  padding: 32px;
  border-radius: var(--radius);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.search-form-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.form-group-vertical {
  margin-bottom: 18px;
}

.form-group-vertical label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.input-icon-wrapper input {
  padding-left: 42px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid #e8eaed;
}

.input-icon-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26,115,232,.12);
}

/* BUTTON */
.btn-lg-custom {
  height: 48px;
  font-weight: 600;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .search-form-vertical {
    justify-content: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto;
  }
}


.btn-lg-custom {
  height: 44px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}

/* BUTTON */
.btn-gradient {
  background: var(--gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(26,115,232,.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(26,115,232,.45);
  color: #fff;
}

.btn-gradient:active {
  transform: translateY(-1px);
}

/* SECTION */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}

.section-subtitle {
  text-align: center;
  color: #5f6368;
  font-size: 16px;
  margin-bottom: 0;
}

/* ================= FEATURED CARS SECTION ================= */
.featured-cars {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

/* CAR CARD */
.car-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.car-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(26,115,232,.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.car-badge.popular {
  background: rgba(251,188,4,.9);
  color: #333;
}

.car-badge.eco {
  background: rgba(52,168,83,.9);
}

.car-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.car-card:hover img {
  transform: scale(1.05);
}

.car-body {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-body h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.car-category {
  font-size: 13px;
  color: #5f6368;
  margin-bottom: 12px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 12px 0;
  font-size: 13px;
  color: #5f6368;
}

.specs li {
  display: flex;
  align-items: center;
  gap: 4px;
}

.specs i {
  color: var(--primary);
  font-size: 16px;
}

.price-section {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e8eaed;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.price span {
  font-size: 13px;
  color: #5f6368;
}

/* ================= REVIEWS ================= */
.reviews {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  padding: 90px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin: 20px 0;
}

.rating-score {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}

.rating-stars {
  font-size: 20px;
  color: #fbbc04;
}

.rating-stars span {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.review-platforms img {
  height: 28px;
  opacity: 0.7;
  transition: opacity .3s;
}

.review-platforms img:hover {
  opacity: 1;
}

/* REVIEWS SLIDER */
.reviews-slider {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.review-card {
  display: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: opacity .5s ease;
  animation: fadeIn .5s ease;
}

.review-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.review-stars {
  color: #fbbc04;
  font-size: 20px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.review-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.review-user span {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-card {
    padding: 28px;
  }

  .rating-summary {
    flex-direction: column;
    gap: 16px;
  }

  .review-platforms {
    gap: 20px;
  }
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.how-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.how-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 0;
}

.how-step:hover::before {
  opacity: 0.06;
}

.how-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.how-step * {
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 12px 35px rgba(26,115,232,.35);
}

.step-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.how-step h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.how-step p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

.step-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.step-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CTA SECTION ================= */
.cta-section {
  padding: 80px 0;
  background: var(--gradient);
  color: #fff;
}

.cta-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.cta-card p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-card .btn {
  padding: 14px 40px;
  font-weight: 600;
}

/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

.section-head h2 {
  font-weight: 700;
  letter-spacing: -.02em;
}

.section-head p {
  max-width: 700px;
  margin: 16px auto 0;
  color: #5f6368;
  font-size: 16px;
}

.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .3s ease;
}

.why-card:hover::before {
  opacity: 0.06;
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.why-card * {
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 35px rgba(26,115,232,.35);
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.7;
}

.why-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.why-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.faq-item {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.faq-item h6 {
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.faq-item h6 i {
  color: var(--primary);
  font-size: 18px;
}

.faq-item p {
  font-size: 14px;
  color: #5f6368;
  margin: 0;
  line-height: 1.7;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--secondary);
  color: #fff;
  padding: 50px 0 20px;
}

.footer h6 {
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-text {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-text i {
  margin-right: 6px;
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  font-size: 13px;
  transition: opacity .3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
}

.footer-bottom a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity .3s;
}

.footer-bottom a:hover {
  opacity: 1;
}

/* ================= CAR DETAILS PAGE ================= */
.car-details-section {
  padding: 80px 0;
}

/* RATING BADGE */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52,168,83,.1);
  color: var(--success);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.rating-badge i {
  color: #fbbc04;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0;
}

.availability-badge.success {
  background: rgba(52,168,83,.1);
  color: var(--success);
}

/* GALLERY */
.car-gallery {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.main-img {
  width: 100%;
  height: 450px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  margin-bottom: 16px;
}

.thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.thumbs img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
  flex-shrink: 0;
}

.thumbs img:hover {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* SUMMARY CARD */
.car-summary {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.car-summary h2 {
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.car-subtitle {
  color: #5f6368;
  font-size: 14px;
  margin-bottom: 16px;
}

/* PRICE BOX */
.price-box {
  font-size: 42px;
  font-weight: 700;
  margin: 20px 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-box small {
  font-size: 16px;
  opacity: 0.7;
}

/* SPEC GRID */
.spec-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.spec-grid li {
  font-size: 13px;
  background: var(--gradient-soft);
  padding: 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
}

.spec-grid i {
  color: var(--primary);
  font-size: 16px;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e8eaed;
  font-size: 14px;
  color: var(--text);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list strong {
  color: var(--secondary);
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #dadce0, transparent);
  margin: 24px 0;
}

/* BOOKING BOX */
.booking-box {
  background: linear-gradient(135deg, rgba(26,115,232,.02), rgba(79,195,247,.02));
  border: 1px solid rgba(26,115,232,.1);
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.booking-header {
  background: linear-gradient(135deg, #1a73e8, #4fc3f7);
  color: #fff;
  padding: 18px 24px;
  border-bottom: none;
}

.booking-header h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}

.booking-section {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(26,115,232,.08);
}

.booking-section:last-of-type {
  border-bottom: none;
}

.section-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.section-label i {
  color: var(--primary);
  font-size: 16px;
}

/* DATES GRID */
.dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.date-input-group label {
  font-size: 12px;
  color: #5f6368;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.date-input-group .form-control {
  border: 2px solid #e8eaed;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  transition: var(--transition);
  height: 40px;
}

.date-input-group .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,.1);
}

/* INSURANCE CARDS */
.insurance-card {
  margin-bottom: 10px;
  background: #fff;
  border: 2px solid #e8eaed;
  border-radius: var(--radius-sm);
  padding: 14px;
  transition: var(--transition);
}

.insurance-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,.08);
}

.insurance-card:last-child {
  margin-bottom: 0;
}

.insurance-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 0;
}

.insurance-option input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.option-content strong {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.option-content small {
  font-size: 12px;
  color: #5f6368;
}

.insurance-option .badge {
  background: #e8f0fe;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
}

.insurance-option .price-badge {
  background: #fff3cd;
  color: #856404;
}

/* PRICE BREAKDOWN */
.price-breakdown {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: var(--radius-sm);
  padding: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
}

.price-item span {
  color: #5f6368;
  font-weight: 500;
}

.price-item strong {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.divider-price {
  height: 1px;
  background: #e8eaed;
  margin: 8px 0;
}

.price-item.total-price {
  padding: 12px 0 0 0;
  border-top: 2px solid #e8eaed;
  font-size: 16px;
}

.price-item.total-price span {
  color: var(--text);
  font-weight: 700;
}

.price-item.total-price strong {
  color: var(--primary);
  font-size: 18px;
}

/* BOOKING ACTIONS */
.booking-actions {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-book-now {
  height: 44px;
  font-size: 15px;
  font-weight: 600;
}

.btn-wishlist {
  height: 44px;
  font-size: 15px;
  font-weight: 600;
}

/* TRUST BADGES */
.trust-badges {
  background: rgba(26,115,232,.03);
  padding: 16px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(26,115,232,.08);
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.badge-item i {
  font-size: 20px;
  color: var(--primary);
}

.badge-item small {
  font-size: 11px;
  color: #5f6368;
  font-weight: 500;
  line-height: 1.3;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 10px 0;
  font-size: 14px;
  color: #5f6368;
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* TABS */
.car-tabs .nav-tabs {
  border-bottom: 2px solid #e8eaed;
  gap: 8px;
}

.car-tabs .nav-link {
  border: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: transparent;
  color: #5f6368;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.car-tabs .nav-link:hover {
  color: var(--primary);
  background: rgba(26,115,232,.05);
}

.car-tabs .nav-link.active {
  background: transparent;
  color: #fff;
  border-bottom-color: var(--primary);
  background: var(--gradient);
  box-shadow: 0 4px 12px rgba(26,115,232,.2);
}

.car-tabs .tab-content {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-radius: 0 0 var(--radius) var(--radius);
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid #e8eaed;
}

.review-item:last-child {
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}

.review-header > div:first-child {
  flex: 1;
}

.review-header strong {
  display: block;
  font-size: 14px;
  color: var(--secondary);
}

.review-date {
  font-size: 12px;
  color: #5f6368;
  display: block;
  margin-top: 3px;
}

.review-stars {
  color: #fbbc04;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.6;
  margin: 0;
}

/* ================= SEARCH RESULTS PAGE ================= */
.search-summary {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #e8eaed;
  position: sticky;
  top: 70px;
  z-index: 50;
}

.summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.summary-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-info p {
  font-size: 13px;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
}

/* FILTERS SIDEBAR */
.filters {
  position: sticky;
  top: 180px;
  height: fit-content;
}

.filter-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8eaed;
}

.filter-head h5 {
  margin: 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-reset {
  border: none;
  background: none;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}

.btn-reset:hover {
  color: var(--primary-dark);
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group h6 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--secondary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #5f6368;
  transition: color .3s;
  user-select: none;
}

.filter-checkbox:hover {
  color: var(--primary);
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-range {
  height: 6px;
  accent-color: var(--primary);
}

.price-value {
  margin-top: 12px;
  font-size: 13px;
  color: #5f6368;
}

.price-value strong {
  color: var(--primary);
  font-weight: 700;
}

.filter-divider {
  height: 1px;
  background: #e8eaed;
  margin: 16px 0;
}

/* RESULTS */
.search-page {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  padding: 40px 0;
}

.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  gap: 16px;
}

.results-count h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 13px;
  font-weight: 600;
  color: #5f6368;
}

#sortBy {
  padding: 6px 10px;
  font-size: 13px;
  border: 1px solid #e8eaed;
  border-radius: 6px;
}

.car-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.car-card:hover img {
  transform: scale(1.05);
}

.car-info {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.specs {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.specs i {
  color: var(--primary);
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0;
}

.car-info .btn {
  margin-top: auto;
  padding: 10px;
  font-size: 13px;
}

/* NO RESULTS */
.no-results-box {
  text-align: center;
  padding: 80px 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.no-results-box i {
  font-size: 60px;
  color: #dadce0;
  display: block;
  margin-bottom: 16px;
}

.no-results-box h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.no-results-box p {
  color: #5f6368;
  margin-bottom: 24px;
}

/* MODAL */
.modal-content {
  border: none;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  border-bottom: 1px solid #e8eaed;
}

.modal-title {
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .filters {
    position: relative;
    top: auto;
  }

  .search-summary {
    position: relative;
    top: auto;
  }

  .summary-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .search-box {
    padding: 16px;
  }

  .search-box .row {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .car-gallery {
    padding: 12px;
  }

  .main-img {
    height: 300px;
  }

  .thumbs img {
    width: 70px;
    height: 55px;
  }

  .car-summary {
    padding: 24px;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-step,
  .why-card {
    padding: 24px;
  }

  .step-icon,
  .why-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .review-card {
    padding: 20px;
  }

  .rating-summary {
    flex-direction: column;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .faq-item {
    padding: 20px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .section-title {
    font-size: 24px;
  }
}
.price span {
  font-size: 14px;
  color: #666;
}
.specs {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

/* ================= REVIEWS ================= */
.reviews {
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
  padding: 90px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 16px 0;
}

.rating-score {
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
}

.rating-stars {
  font-size: 18px;
  color: #fbbc04;
}

.rating-stars span {
  display: block;
  font-size: 13px;
  color: #6b7280;
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 18px;
}

.review-platforms img {
  height: 26px;
  opacity: .75;
}

/* REVIEWS SLIDER */
.reviews-slider {
  max-width: 820px;
  margin: auto;
  position: relative;
}

.review-card {
  display: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: opacity .5s ease;
}

.review-card.active {
  display: block;
}

.review-stars {
  color: #fbbc04;
  font-size: 18px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* USER */
.review-user {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.review-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user h6 {
  margin: 0;
  font-size: 15px;
}

.review-user span {
  font-size: 13px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .review-card {
    padding: 24px;
  }

  .rating-summary {
    flex-direction: column;
  }
}

/* FOOTER */
.footer {
  background: var(--secondary);
  color: #fff;
  padding: 20px 0;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  padding: 90px 0;
  background: linear-gradient(180deg, #f8f9fa, #ffffff);
}

.how-it-works .section-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 60px;
}

.how-step {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 25px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}

.how-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}

.how-step:hover::before {
  opacity: .06;
}

.how-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.how-step * {
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(26,115,232,.35);
}

.step-number {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.how-step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.how-step p {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.6;
}

/* ========= SCROLL ANIMATION ========= */
.step-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.step-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========= RESPONSIVE TUNING ========= */
@media (min-width: 992px) {
  .how-step {
    padding: 40px 30px;
  }
}

/* ================= SECTION ================= */
.car-details-section {
  padding: 80px 0;
}

/* ================= GALLERY ================= */
.car-gallery {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.main-img {
  width: 100%;
  height: 420px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.thumbs img {
  width: 92px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: .65;
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
}

.thumbs img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ================= SUMMARY CARD ================= */
.car-summary {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.car-summary h2 {
  font-weight: 600;
  letter-spacing: -.02em;
}

.car-subtitle {
  color: #5f6368;
  font-size: 14px;
}

/* ================= PRICE ================= */
.price-box {
  font-size: 36px;
  font-weight: 700;
  margin: 22px 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================= SPECS ================= */
.spec-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.spec-grid li {
  font-size: 14px;
  background: var(--gradient-soft);
  padding: 10px 14px;
  border-radius: 10px;
}

.spec-grid li i {
  color: var(--primary);
  margin-right: 6px;
}

/* ================= DIVIDER ================= */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #dadce0, transparent);
  margin: 28px 0;
}

/* ================= BOOKING ================= */
.booking-box h6 {
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-box label {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 4px;
}

/* ================= BUTTON ================= */
.btn-gradient {
  background: var(--gradient);
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 14px;
  border-radius: 12px;
  box-shadow:
    0 10px 25px rgba(26,115,232,.35),
    inset 0 -2px 0 rgba(0,0,0,.15);
  transition: all .35s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 45px rgba(26,115,232,.45),
    inset 0 -1px 0 rgba(0,0,0,.2);
}

/* ================= TABS ================= */
.car-tabs .nav-tabs {
  border-bottom: none;
  gap: 12px;
}

.car-tabs .nav-link {
  border: none;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  background: #f1f3f4;
  color: #5f6368;
}

.car-tabs .nav-link.active {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.car-tabs .tab-content {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

/* ================= FEATURES ================= */
.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .main-img {
    height: 300px;
  }

  .car-summary {
    padding: 26px;
  }
}


/* ================= WHY CHOOSE US ================= */
.why-choose-us {
  padding: 90px 0;
  background:
    linear-gradient(180deg, #ffffff, #f8f9fa);
}

.section-head h2 {
  font-weight: 600;
  letter-spacing: -.02em;
}

.section-head p {
  max-width: 680px;
  margin: 12px auto 0;
  color: #5f6368;
  font-size: 16px;
}

/* CARD */
.why-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .4s ease;
}

.why-card:hover::before {
  opacity: .06;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.why-card * {
  position: relative;
  z-index: 1;
}

/* ICON */
.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 14px 35px rgba(26,115,232,.35);
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.6;
}

/* SCROLL ANIMATION */
.why-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}

.why-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE TUNING */
@media (min-width: 992px) {
  .why-card {
    padding: 44px 34px;
  }
}




/* SEARCH PAGE RESULTS */
.search-summary {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

/* FILTERS */
.filters {
  position: sticky;
  top: 90px;
}

.filter-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.filter-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.filter-head button {
  border: none;
  background: none;
  color: var(--primary);
}

.filter-group {
  margin-bottom: 22px;
}

.filter-group h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

/* RESULTS */
.results-toolbar {
  margin-bottom: 18px;
  font-weight: 500;
}

/* CARD */
.car-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0,0,0,.12);
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.car-info {
  padding: 16px;
}

.car-info h5 {
  font-size: 17px;
  margin-bottom: 6px;
}

.specs {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .filters {
    position: relative;
    top: 0;
  }
}


    .about-hero {
      background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 100%);
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .about-hero h1 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .about-hero p {
      font-size: 18px;
      opacity: 0.95;
      margin-bottom: 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .about-content {
      padding: 80px 0;
    }

    .story-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      margin-bottom: 80px;
    }

    .story-text h2 {
      font-weight: 700;
      font-size: 36px;
      margin-bottom: 20px;
      color: var(--secondary);
      line-height: 1.3;
    }

    .story-text p {
      font-size: 15px;
      color: #5f6368;
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .story-text .highlight {
      background: rgba(26,115,232,.1);
      color: var(--primary);
      font-weight: 600;
      padding: 2px 4px;
      border-radius: 4px;
    }

    .story-image {
      background: linear-gradient(135deg, rgba(26,115,232,.1), rgba(79,195,247,.1));
      border-radius: 14px;
      padding: 20px;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin: 60px 0;
    }

    .value-card {
      background: #fff;
      padding: 32px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      text-align: center;
      transition: all .3s;
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }

    .value-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 32px;
      margin: 0 auto 20px;
    }

    .value-card h4 {
      font-weight: 700;
      font-size: 18px;
      margin-bottom: 12px;
      color: var(--secondary);
    }

    .value-card p {
      font-size: 14px;
      color: #5f6368;
      margin-bottom: 0;
      line-height: 1.6;
    }

    .stats-section {
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      color: #fff;
      padding: 60px 0;
      margin: 80px 0;
      border-radius: 14px;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
    }

    .stat-number {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 15px;
      opacity: 0.95;
    }

    .team-section {
      padding: 80px 0;
    }

    .team-section h2 {
      font-weight: 700;
      font-size: 36px;
      text-align: center;
      margin-bottom: 50px;
      color: var(--secondary);
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .team-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      transition: all .3s;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }

    .team-image {
      height: 280px;
      background: linear-gradient(135deg, rgba(26,115,232,.1), rgba(79,195,247,.1));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      color: rgba(26,115,232,.2);
    }

    .team-info {
      padding: 24px;
      text-align: center;
    }

    .team-name {
      font-weight: 700;
      font-size: 17px;
      color: var(--secondary);
      margin-bottom: 6px;
    }

    .team-role {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: .05em;
    }

    .team-bio {
      font-size: 13px;
      color: #5f6368;
      line-height: 1.5;
    }

    .timeline {
      position: relative;
      padding: 40px 0;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 40px;
      margin-bottom: 40px;
      align-items: start;
    }

    .timeline-year {
      text-align: right;
      padding-right: 20px;
      border-right: 3px solid var(--primary);
      position: relative;
      font-weight: 700;
      font-size: 18px;
      color: var(--primary);
    }

    .timeline-year::after {
      content: '';
      position: absolute;
      right: -12px;
      top: 0;
      width: 24px;
      height: 24px;
      background: var(--primary);
      border-radius: 50%;
      border: 4px solid #fff;
    }

    .timeline-content h4 {
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--secondary);
    }

    .timeline-content p {
      font-size: 14px;
      color: #5f6368;
      line-height: 1.6;
    }

    .testimonials-section {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(26,115,232,.02), rgba(79,195,247,.02));
    }

    .testimonial-card {
      background: #fff;
      padding: 28px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      margin-bottom: 30px;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 16px;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 24px;
    }

    .testimonial-info h5 {
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 2px;
      font-size: 14px;
    }

    .testimonial-info p {
      font-size: 12px;
      color: #5f6368;
      margin-bottom: 0;
    }

    .stars {
      color: #fbbc04;
      font-size: 14px;
      margin-bottom: 12px;
    }

    .testimonial-text {
      font-size: 14px;
      color: #5f6368;
      font-style: italic;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .story-section {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .story-image {
        height: 250px;
      }

      .story-text h2 {
        font-size: 28px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .timeline-year {
        text-align: left;
        border-right: none;
        border-bottom: 3px solid var(--primary);
        padding-right: 0;
        padding-bottom: 16px;
      }

      .timeline-year::after {
        right: auto;
        bottom: -12px;
        top: auto;
      }

      .about-hero {
        padding: 40px 0;
      }

      .about-hero h1 {
        font-size: 28px;
      }

      .about-content {
        padding: 60px 0;
      }

      .stat-number {
        font-size: 32px;
      }
    }



        .contact-hero {
      background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 100%);
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }

    .contact-hero h1 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .contact-hero p {
      font-size: 18px;
      opacity: 0.95;
      margin-bottom: 0;
    }

    .contact-section {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .contact-info-box {
      background: #fff;
      padding: 32px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .contact-form {
      background: #fff;
      padding: 32px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .contact-form h3,
    .contact-info-box h3 {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 24px;
      color: var(--secondary);
    }

    .contact-item {
      display: flex;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-item:last-child {
      margin-bottom: 0;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-content h5 {
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 6px;
      font-size: 15px;
    }

    .contact-content p {
      color: #5f6368;
      margin-bottom: 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .contact-content a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: all .3s;
    }

    .contact-content a:hover {
      text-decoration: underline;
    }

    .working-hours {
      background: rgba(26,115,232,.05);
      padding: 18px;
      border-radius: 10px;
      border-left: 4px solid var(--primary);
    }

    .working-hours p {
      font-size: 13px;
      margin-bottom: 6px;
      color: #5f6368;
    }

    .working-hours p strong {
      color: var(--secondary);
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      font-weight: 600;
      font-size: 13px;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 8px;
      display: block;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      border: 2px solid #e8eaed;
      border-radius: 10px;
      padding: 12px 14px;
      font-family: inherit;
      transition: all .3s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(26,115,232,.1);
      outline: none;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .btn-submit {
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      color: #fff;
      border: none;
      padding: 14px 32px;
      font-weight: 600;
      border-radius: 10px;
      transition: all .3s;
      width: 100%;
      font-size: 15px;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(26,115,232,.35);
      color: #fff;
    }

    .faq-section {
      padding: 80px 0;
      background: #fff;
    }

    .faq-item {
      background: #f8f9fa;
      border: 1px solid #e8eaed;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
      cursor: pointer;
      transition: all .3s;
    }

    .faq-item:hover {
      border-color: var(--primary);
      background: rgba(26,115,232,.02);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-question h6 {
      font-weight: 700;
      margin-bottom: 0;
      color: var(--secondary);
      cursor: pointer;
    }

    .faq-icon {
      color: var(--primary);
      font-weight: 700;
      transition: transform .3s;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      color: #5f6368;
      font-size: 14px;
      margin-top: 16px;
      line-height: 1.6;
      display: none;
      border-top: 1px solid #e8eaed;
      padding-top: 16px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .follow-section {
      background: linear-gradient(135deg, rgba(26,115,232,.02), rgba(79,195,247,.02));
      padding: 40px;
      border-radius: 14px;
      text-align: center;
      margin-top: 40px;
    }

    .follow-section h3 {
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 16px;
      color: var(--secondary);
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .social-links a {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: all .3s;
    }

    .social-links a:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(26,115,232,.35);
    }

    @media (max-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-hero {
        padding: 40px 0;
      }

      .contact-hero h1 {
        font-size: 28px;
      }

      .contact-section {
        padding: 60px 0;
      }

      .faq-section {
        padding: 60px 0;
      }

      .contact-info-box,
      .contact-form {
        padding: 24px;
      }

      .faq-item {
        padding: 16px;
        margin-bottom: 12px;
      }
    }

        .deals-hero {
      background: linear-gradient(135deg, #1a73e8 0%, #4fc3f7 100%);
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }

    .deals-hero h1 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 700;
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .deals-hero p {
      font-size: 18px;
      opacity: 0.95;
      margin-bottom: 0;
    }

    .deals-grid {
      padding: 80px 0;
      background: #f8f9fa;
    }

    .deal-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      transition: all .3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      margin-bottom: 30px;
    }

    .deal-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 70px rgba(0,0,0,.12);
    }

    .deal-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: linear-gradient(135deg, #ea4335, #fbbc04);
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      z-index: 10;
    }

    .deal-image {
      position: relative;
      height: 240px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(26,115,232,.1), rgba(79,195,247,.1));
    }

    .deal-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .deal-content {
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .deal-title {
      font-weight: 700;
      font-size: 18px;
      color: var(--secondary);
      margin-bottom: 8px;
    }

    .deal-description {
      font-size: 14px;
      color: #5f6368;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .deal-highlights {
      list-style: none;
      padding: 0;
      margin-bottom: 16px;
      font-size: 13px;
    }

    .deal-highlights li {
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #5f6368;
    }

    .deal-highlights i {
      color: #34a853;
      font-weight: 700;
    }

    .deal-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 16px;
      border-top: 1px solid #e8eaed;
      margin-top: auto;
    }

    .deal-discount {
      font-size: 24px;
      font-weight: 700;
      color: #ea4335;
    }

    .deal-discount small {
      font-size: 12px;
      display: block;
      color: #5f6368;
      font-weight: 500;
    }

    .btn-claim-deal {
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      color: #fff;
      border: none;
      padding: 10px 18px;
      font-weight: 600;
      border-radius: 10px;
      transition: all .3s;
      font-size: 14px;
    }

    .btn-claim-deal:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(26,115,232,.35);
      color: #fff;
    }

    .countdown-timer {
      background: rgba(234, 67, 53, .1);
      color: #ea4335;
      padding: 12px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 16px;
      font-weight: 600;
      font-size: 13px;
    }

    .countdown-timer i {
      margin-right: 6px;
    }

    .testimonials-section {
      padding: 80px 0;
      background: linear-gradient(135deg, rgba(26,115,232,.02), rgba(79,195,247,.02));
    }

    .testimonial-card {
      background: #fff;
      padding: 28px;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,.08);
      text-align: center;
      margin-bottom: 30px;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 24px;
    }

    .testimonial-text {
      font-size: 15px;
      color: #5f6368;
      margin-bottom: 14px;
      line-height: 1.6;
      font-style: italic;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 4px;
    }

    .testimonial-role {
      font-size: 12px;
      color: #5f6368;
    }

    .stars {
      color: #fbbc04;
      margin-bottom: 12px;
    }

    .promo-banner {
      background: linear-gradient(135deg, #1a73e8, #4fc3f7);
      color: #fff;
      padding: 40px;
      border-radius: 14px;
      text-align: center;
      margin: 80px 0;
    }

    .promo-banner h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .promo-banner p {
      font-size: 16px;
      margin-bottom: 24px;
      opacity: 0.95;
    }

    .promo-code {
      background: rgba(255,255,255,.2);
      border: 2px solid rgba(255,255,255,.3);
      color: #fff;
      padding: 14px 20px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .1em;
      text-align: center;
      margin-bottom: 20px;
      cursor: pointer;
      transition: all .3s;
    }

    .promo-code:hover {
      background: rgba(255,255,255,.3);
    }

    @media (max-width: 768px) {
      .deals-hero {
        padding: 40px 0;
      }

      .deals-hero h1 {
        font-size: 28px;
      }

      .deal-card {
        margin-bottom: 20px;
      }

      .deal-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
      }

      .btn-claim-deal {
        width: 100%;
      }

      .promo-banner {
        padding: 30px 20px;
        margin: 50px 0;
      }

      .promo-banner h2 {
        font-size: 24px;
      }

      .testimonial-card {
        padding: 20px;
      }
    }
