/* Homepage Specific Styles - Customer Reviews Section */

.review-source-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex-direction: column;
  min-width: 200px;
}
.review-source-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.badge-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f9fa;
  flex-shrink: 0;
}
.badge-icon svg {
  width: 24px;
  height: 24px;
}
.badge-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.google-icon {
  background: #f8f9fa;
}
.trustpilot-icon {
  background: #f8f9fa;
}
.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-align: center;
}
.badge-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge-stars {
  display: flex;
  gap: 2px;
}
.badge-star {
  font-size: 14px;
  color: #ddd;
  line-height: 1;
}
.badge-star.active {
  color: #ffc107;
}
.verified-stars .badge-star.active {
  color: #2e7d32;
}
.google-stars .badge-star.active {
  color: #1a73e8;
}
.trustpilot-stars .badge-star.active {
  color: #00b67a;
}
.badge-rating-text {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.verified-badge-style .badge-rating-text {
  color: #2e7d32;
}
.google-badge-style .badge-rating-text {
  color: #1a73e8;
}
.trustpilot-badge-style .badge-rating-text {
  color: #00b67a;
}

.box-swiper-reviews {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.swiper-reviews-home {
  overflow: hidden;
  max-width: 100%;
}
.swiper-reviews-home .swiper-wrapper {
  align-items: stretch;
}
.swiper-reviews-home .swiper-slide {
  height: auto;
}
.cardReview {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
}
.cardReview:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.review-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
}
.review-avatar {
  position: relative;
  flex-shrink: 0;
}
.review-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.verified-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.verified-badge svg {
  width: 14px;
  height: 14px;
}
.verified-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.google-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.trustpilot-badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.google-badge svg {
  width: 14px;
  height: 14px;
}
.trustpilot-badge svg {
  width: 14px;
  height: 14px;
}
.review-info {
  flex: 1;
}
.review-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
}
.review-location {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.review-source-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.review-source-tag img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.review-source-tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
}
.verified-tag {
  background: #e8f5e9;
  color: #2e7d32;
}
.google-tag {
  background: #e8f0fe;
  color: #1a73e8;
}
.trustpilot-tag {
  background: #e0f2f1;
  color: #00b67a;
}
.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars {
  display: flex;
  gap: 2px;
}
.star {
  font-size: 18px;
  color: #ddd;
  line-height: 1;
}
.star.active {
  color: #ffc107;
}
.rating-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.review-content {
  flex: 1;
  margin-bottom: 20px;
}
.review-content p {
  line-height: 1.7;
  margin: 0;
}
.review-footer {
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.review-date {
  font-size: 13px;
  color: #999;
}

.box-pagination-reviews {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 100vw;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}
.swiper-button-prev-reviews {
  position: absolute;
  left: -70px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  pointer-events: all;
  transition: all 0.3s ease;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.swiper-button-next-reviews {
  position: absolute;
  right: -70px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  pointer-events: all;
  transition: all 0.3s ease;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.swiper-button-prev-reviews:hover,
.swiper-button-next-reviews:hover {
  background: var(--ikincirenk, #E95440);
  color: #fff;
  transform: scale(1.1);
}
.swiper-button-prev-reviews svg,
.swiper-button-next-reviews svg {
  width: 20px;
  height: 20px;
}
.swiper-pagination-reviews {
  position: relative;
  margin-top: 30px;
  text-align: center;
}
.swiper-pagination-reviews .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-pagination-reviews .swiper-pagination-bullet-active {
  background: var(--ikincirenk, #E95440);
  width: 30px;
  border-radius: 5px;
}

@media (max-width: 1400px) {
  .box-swiper-reviews {
    max-width: 100%;
    padding: 0 60px;
  }
  .swiper-button-prev-reviews {
    left: 10px;
  }
  .swiper-button-next-reviews {
    right: 10px;
  }
}
@media (max-width: 1200px) {
  .box-swiper-reviews {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .review-source-badge {
    padding: 12px 20px;
    min-width: 160px;
  }
  .badge-text {
    font-size: 11px;
  }
  .badge-rating-text {
    font-size: 12px;
  }
  .badge-star {
    font-size: 12px;
  }
  .cardReview {
    padding: 20px;
    min-height: 280px;
  }
  .swiper-button-prev-reviews {
    left: -10px;
    width: 40px;
    height: 40px;
  }
  .swiper-button-next-reviews {
    right: -10px;
    width: 40px;
    height: 40px;
  }
  .review-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* Banner Info Positioning - Sol tarafa hizalama ve search ile çakışmayı önleme */
.banner-home2 .homepage-banner-info-positioned {
    left: 0;
    right: auto;
    width: auto;
    max-width: 50%;
    margin: 0px 0px 0px 5%;
    padding-left: 60px;
    padding-right: 20px;
}

/* Responsive: Tablet ve mobilde tam genişlik */
@media (max-width: 991px) {
    .banner-home2 .homepage-banner-info-positioned {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Search bölümünün sağda kalmasını sağla */
.banner-home2 .box-search-ride-style-2 {
    z-index: 4;
}

/* How It Works Section - Icon Styling */
.homepage-how-it-works-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    min-height: 80px;
}

.homepage-how-it-works-card-image .homepage-how-it-works-icon {
    font-size: 48px;
    color: var(--ikincirenk, #E95440);
    line-height: 1;
    display: inline-block;
}

/* How It Works Section - Title and Description Text Center */
.homepage-how-it-works-title {
    text-align: center;
}

.homepage-how-it-works-desc {
    text-align: center;
}

