/* =============================================
   ANASAYFA - Tasarım birebir
   ============================================= */

.home-hero {
  position: relative;
  min-height: 580px;
  background: url('../img/hero-home.jpg') center/cover no-repeat;
  padding: 110px 0 200px;
  margin-top: 0;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
}

.home-hero-copy {
  max-width: 560px;
  color: #fff;
  padding-top: 20px;
}

.home-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 18px;
}

.home-hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.home-hero-title .gold {
  color: var(--primary);
}

.home-hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
}

/* Booking Widget */
.home-booking-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -95px;
  z-index: 20;
  padding: 0 16px;
  box-sizing: border-box;
}

.home-booking {
  max-width: 1140px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.home-booking-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
  margin: 0 -20px;
  padding: 0 20px;
}

.home-booking-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  font-family: inherit;
}

.home-booking-tab i { color: var(--primary); font-size: 13px; }

.home-booking-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: var(--primary-light);
}

.home-booking-form {
  padding: 22px 0 18px;
}

.home-booking-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.home-field {
  min-width: 0;
}

.home-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 7px;
}

.home-field label i {
  color: var(--primary);
  font-size: 11px;
}

.home-field input,
.home-field select {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 12px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.home-field input:focus,
.home-field select:focus {
  outline: none;
  border-color: var(--primary);
}

.home-booking-btn {
  height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: inherit;
  transition: var(--transition);
}

.home-booking-btn:hover { background: var(--primary-dark); }

.home-booking-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px 0 18px;
  border-top: 1px solid #f0f0f0;
}

.home-booking-features div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #666;
}

.home-booking-features i {
  color: var(--primary);
  font-size: 14px;
}

/* Trust Bar */
.home-trust {
  background: #f4f5f7;
  padding: 130px 0 28px;
  border-bottom: 1px solid #ececec;
}

.home-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.home-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.home-trust-item img {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.home-trust-brand {
  font-weight: 700;
  color: #333;
  font-size: 14px;
}

.home-trust-stars {
  display: flex;
  gap: 2px;
  color: #f5b301;
  font-size: 11px;
}

.home-trust-stars.green { color: #00b67a; }

.home-trust-item strong {
  font-size: 15px;
  font-weight: 800;
  color: #222;
}

.home-trust-item > i {
  color: var(--primary);
  font-size: 16px;
}

.home-trust-divider {
  width: 1px;
  height: 28px;
  background: #ddd;
}

/* Section helpers */
.home-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.home-section-head h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.home-section-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-section-actions a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.home-slider-nav {
  display: flex;
  gap: 8px;
}

.home-slider-nav button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: var(--transition);
}

.home-slider-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.home-btn-primary:hover { background: var(--primary-dark); color: #fff; }
.home-btn-primary.full { width: 100%; }

.home-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 24px;
  transition: var(--transition);
}

.home-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Fleet */
.home-fleet {
  padding: 56px 0 70px;
  background: #fff;
}

.vehicle-slider { overflow: hidden; }

.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.home-car-card {
  min-width: 248px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.home-car-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.home-car-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}

.home-car-img img {
  max-height: 110px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.home-car-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.home-car-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.home-car-specs span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #888;
}

.home-car-specs i { color: var(--primary); font-size: 11px; }

.home-car-price small {
  display: block;
  font-size: 10px;
  color: #aaa;
  margin-bottom: 2px;
}

.home-car-price strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}

/* Services */
.home-services {
  padding: 70px 0;
  background: #fafafa;
}

.home-services-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.home-service-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 28px 12px 22px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.home-service-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217,154,78,0.12);
}

.home-service-card i {
  font-size: 28px;
  color: #222;
  margin-bottom: 14px;
  display: block;
  font-weight: 300;
}

.home-service-card span {
  font-size: 11px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  display: block;
}

/* Routes */
.home-routes {
  padding: 70px 0;
  background: #fff;
}

.home-routes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.home-routes-list h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 28px;
  line-height: 1.3;
}

.home-route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.home-route-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.home-route-left > i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 14px;
}

.home-route-left strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}

.home-route-left small {
  font-size: 11px;
  color: #999;
}

.home-route-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.home-map {
  position: relative;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: url('../img/map-bg.jpg') center/cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.home-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
}

.home-map-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.home-map-route {
  margin-bottom: 14px;
}

.home-map-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.home-map-point .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.home-map-point .dot.start { background: var(--primary); }
.home-map-point .dot.end { background: #333; }

.home-map-line {
  width: 2px;
  height: 18px;
  background: #e0e0e0;
  margin: 4px 0 4px 4px;
}

.home-map-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.home-map-meta i { color: var(--primary); margin-right: 4px; }

.home-map-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

/* Why Us */
.home-why {
  padding: 70px 0;
  background: #fafafa;
}

.home-why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.home-why h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 28px;
}

.home-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.home-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.home-benefit i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.home-stat {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}

.home-stat i {
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 10px;
}

.home-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 6px;
}

.home-stat span {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}

/* Reviews */
.home-reviews {
  padding: 70px 0;
  background: #fff;
}

.home-reviews > .container > h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-review-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.home-review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.home-review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.home-review-top strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #222;
}

.home-review-top small {
  font-size: 11px;
  color: #999;
}

.home-review-stars {
  color: var(--primary);
  font-size: 11px;
  margin-bottom: 12px;
  display: flex;
  gap: 2px;
}

.home-review-card p {
  font-size: 13px;
  line-height: 1.75;
  color: #666;
  margin-bottom: 16px;
}

.home-review-source {
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* App Promo */
.home-app {
  padding: 0;
  background: linear-gradient(135deg, #eef3f8 0%, #e8edf3 50%, #dfe6ee 100%);
}

.home-app-grid {
  display: grid;
  grid-template-columns: 280px 1fr 380px;
  gap: 40px;
  align-items: center;
  min-height: 340px;
  padding: 50px 20px;
}

.home-app-phone img {
  max-width: 220px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.home-app-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.home-app-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 340px;
}

.home-app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-app-badges img {
  height: 42px;
  cursor: pointer;
}

.home-app-cta {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 260px;
}

.home-app-cta > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-app-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.home-app-cta-overlay p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 1100px) {
  .home-booking-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-booking-btn { grid-column: span 3; justify-content: center; }
  .home-services-grid { grid-template-columns: repeat(4, 1fr); }
  .home-app-grid { grid-template-columns: 1fr 1fr; }
  .home-app-cta { grid-column: span 2; height: 220px; }
}

@media (max-width: 768px) {
  .home-hero { padding-bottom: 40px; min-height: auto; }
  .home-hero-title { font-size: 32px; }
  .home-booking-wrap { position: relative; bottom: auto; margin-top: 30px; padding: 0 16px; }
  .home-trust { padding-top: 40px; }
  .home-booking-row { grid-template-columns: 1fr; }
  .home-booking-btn { grid-column: auto; width: 100%; }
  .home-booking-features { grid-template-columns: 1fr 1fr; }
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
  .home-routes-grid,
  .home-why-grid,
  .home-reviews-grid,
  .home-app-grid { grid-template-columns: 1fr; }
  .home-app-cta { grid-column: auto; }
  .home-benefits { grid-template-columns: 1fr; }
  .home-trust-divider { display: none; }
}
