/* ========================================
   LUXURY TRANSFER - Bileşenler
   ======================================== */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--accent);
  color: #FFFFFF;
}

.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--primary);
  color: #FFFFFF;
}

.btn--gold:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn--outline:hover {
  background: var(--card-bg);
  color: var(--text-heading);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

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

.btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn--whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

.btn--disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Card --- */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card__text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Service Card */
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.75rem;
}

.service-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card__text {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Vehicle Card */
.vehicle-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.vehicle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.vehicle-card__image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vehicle-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 3rem;
}

.vehicle-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.vehicle-card__body {
  padding: 1.5rem;
}

.vehicle-card__name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.vehicle-card__class {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.vehicle-card__specs {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #666;
}

.vehicle-card__spec svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.vehicle-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.vehicle-card__amenity {
  background: var(--bg-alt);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: #555;
}

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

.vehicle-card__price {
  font-size: 0.8rem;
  color: #666;
}

.vehicle-card__price strong {
  display: block;
  font-size: 1.3rem;
  color: var(--text-heading);
  font-family: var(--font-heading);
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--executive { background: rgba(91,155,213,0.15); color: var(--primary-dark); }
.badge--vip { background: rgba(201,168,76,0.15); color: var(--gold); }
.badge--sprinter { background: rgba(123,198,126,0.15); color: var(--accent-dark); }

/* --- Form Inputs --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--card-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.15);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input--error {
  border-color: #e74c3c;
}

.form-error {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

/* --- Step Indicator --- */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.step-indicator__step {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-indicator__circle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  color: #999;
  background: var(--bg);
  transition: all var(--transition);
  flex-shrink: 0;
}

.step-indicator__circle--active {
  border-color: var(--primary);
  background: var(--primary);
  color: #FFFFFF;
}

.step-indicator__circle--done {
  border-color: var(--accent);
  background: var(--accent);
  color: #FFFFFF;
}

.step-indicator__line {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  transition: background var(--transition);
}

.step-indicator__line--done {
  background: var(--accent);
}

.step-indicator__label {
  display: none;
}

/* --- Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text);
  transition: background var(--transition);
  z-index: 10;
}

.modal__close:hover {
  background: rgba(0,0,0,0.15);
}

.modal__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
}

.modal__body {
  padding: 2rem;
}

.modal__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal__class {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.modal__section-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.modal__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.modal__amenity {
  background: var(--bg-alt);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text);
}

.modal__pricing {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.modal__pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

.modal__pricing-row + .modal__pricing-row {
  border-top: 1px solid var(--border);
}

.modal__pricing-label {
  color: #666;
}

.modal__pricing-value {
  font-weight: 700;
  color: var(--text-heading);
}

/* --- Testimonial Slider --- */
/* --- Split Testimonial Layout --- */
.testimonial-split {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.testimonial-split__left {
  flex: 0 0 340px;
  max-width: 340px;
}

.testimonial-split__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.testimonial-split__desc {
  font-size: 0.95rem;
  color: var(--text-secondary, #777);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-split__nav {
  display: flex;
  gap: 0.75rem;
}

.testimonial-split__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-split__arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.testimonial-split__arrow svg {
  width: 20px;
  height: 20px;
}

.testimonial-split__right {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.section--testimonials {
  padding: 5rem 0;
}

/* --- Testimonial Slider --- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

/* --- Testimonial Card (görsel arka plan + overlay) --- */
.testimonial-card {
  border-radius: var(--radius-md);
  position: relative;
  width: calc((100% - 1.5rem) / 2);
  min-width: calc((100% - 1.5rem) / 2);
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.testimonial-card__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Light mode: beyaz overlay, siyah yazı */
.testimonial-card__overlay {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.25rem;
  background: linear-gradient(to top, rgba(255,255,255,0.95) 60%, rgba(255,255,255,0.7) 85%, rgba(255,255,255,0) 100%);
}

/* Dark mode: siyah overlay, beyaz yazı */
[data-theme="dark"] .testimonial-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 60%, rgba(0,0,0,0.7) 85%, rgba(0,0,0,0) 100%);
}
[data-theme="dark"] .testimonial-card__text {
  color: #ffffff;
}
[data-theme="dark"] .testimonial-card__name {
  color: #ffffff;
}
[data-theme="dark"] .testimonial-card__role {
  color: #aaa;
}
[data-theme="dark"] .testimonial-card__avatar {
  background: #ffffff !important;
  color: #1a1a2e !important;
}

.testimonial-card__stars {
  font-size: 0.9rem;
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-card__text {
  font-size: 0.88rem;
  color: #1a1a2e;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  font-style: italic;
  font-weight: 500;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a2e;
}

.testimonial-card__role {
  font-size: 0.78rem;
  color: #666;
}

.testimonial-card__avatar {
  background: #1a1a2e !important;
  color: #fff !important;
}

@media (max-width: 1024px) {
  .testimonial-split {
    flex-direction: column;
    gap: 2rem;
  }
  .testimonial-split__left {
    flex: none;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .testimonial-split__title {
    font-size: 1.8rem;
    width: 100%;
  }
  .testimonial-split__desc {
    margin-bottom: 1rem;
  }
  .testimonial-split__nav {
    margin-left: auto;
  }
  .testimonial-card {
    width: calc((100% - 1.5rem) / 2);
    min-width: calc((100% - 1.5rem) / 2);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 100%;
    min-width: 100%;
  }
  .testimonial-split__title {
    font-size: 1.5rem;
  }
}

/* --- Steps (How it works) --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(91,155,213,0.3);
}

.step__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* --- Fleet Slider --- */
.fleet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.fleet-header__title {
  font-size: 2.25rem;
  text-align: left;
}

.fleet-header__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}

.fleet-header__link:hover {
  color: var(--primary);
}

.fleet-slider {
  overflow: hidden;
  cursor: grab;
}

.fleet-slider.dragging {
  cursor: grabbing;
}

.fleet-slider.dragging .fleet-slider__track {
  transition: none;
}

.fleet-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}

.fleet-slider__track .fleet-card {
  flex: 0 0 33.333%;
  min-width: 0;
}

.fleet-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.fleet-card:hover {
  background: #F2F2F2;
}

[data-theme="dark"] .fleet-card:hover {
  background: #222222;
}

.fleet-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.fleet-card__desc {
  font-size: 0.8rem;
  color: #888;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.fleet-card__image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.fleet-card__specs {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.fleet-card__spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: #666;
}

.fleet-card__spec svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
  opacity: 0.5;
}

[data-theme="dark"] .fleet-card__desc { color: #777; }
[data-theme="dark"] .fleet-card__spec { color: #999; }


@media (max-width: 1024px) {
  .fleet-slider__track .fleet-card {
    flex: 0 0 33.333%;
  }
}

@media (max-width: 768px) {
  .fleet-slider__track .fleet-card {
    flex: 0 0 50%;
  }
  .fleet-header__title { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .fleet-slider__track .fleet-card {
    flex: 0 0 100%;
  }
}

/* Fleet Slider Mobil Navigasyon */
.fleet-slider__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.fleet-slider__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.fleet-slider__btn svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.fleet-slider__btn:active {
  background: var(--primary);
  border-color: var(--primary);
}

.fleet-slider__btn:active svg {
  color: #FFFFFF;
}

.fleet-slider__dots {
  display: none;
}

@media (max-width: 768px) {
  .fleet-slider__nav {
    display: flex;
  }

  .fleet-slider {
    cursor: default;
  }
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  text-align: center;
  color: #FFFFFF;
}

.cta-banner__title {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.filter-bar__group {
  flex: 1;
  min-width: 180px;
}

.filter-bar__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* --- Booking Step Content --- */
.booking-step {
  display: none;
  animation: fadeIn 0.3s ease;
}

.booking-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.booking-option:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.booking-option.selected {
  border-color: var(--primary);
  background: rgba(91,155,213,0.05);
  box-shadow: 0 0 0 3px rgba(91,155,213,0.15);
}

.booking-option__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.booking-option__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.booking-option__text {
  font-size: 0.9rem;
  color: #666;
}

/* Chip */
.chip {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--card-bg);
}

.chip:hover {
  border-color: var(--primary-light);
}

.chip.selected {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* Booking Summary */
.booking-summary {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.9rem;
}

.booking-summary__row + .booking-summary__row {
  border-top: 1px solid var(--border);
}

.booking-summary__label {
  color: #666;
}

.booking-summary__value {
  font-weight: 600;
  color: var(--text-heading);
}

.booking-summary__total {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

/* Night surcharge notice */
.night-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  display: none;
  margin-top: 0.75rem;
}

.night-notice.visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(91,155,213,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-card__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-info-card__text {
  font-size: 0.9rem;
  color: #666;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  border: none;
  margin-top: 1.5rem;
}

.contact-map-full {
  width: 100%;
  height: 600px;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* --- About Story --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

.about-story__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
  position: absolute;
  top: 0;
  left: 0;
}

.about-story__title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.about-story__subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about-story__content p {
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story__image {
    min-height: 350px;
  }

  .about-story__image img {
    position: relative;
  }

  .about-story__title {
    font-size: 1.75rem;
  }
}

/* --- About Page Values --- */
.value-card {
  text-align: center;
  padding: 2rem;
}

.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* --- Dark mode overrides --- */
[data-theme="dark"] .card__text,
[data-theme="dark"] .service-card__text,
[data-theme="dark"] .vehicle-card__spec,
[data-theme="dark"] .vehicle-card__amenity,
[data-theme="dark"] .vehicle-card__price,
[data-theme="dark"] .testimonial-card__text,
[data-theme="dark"] .step__text,
[data-theme="dark"] .booking-option__text,
[data-theme="dark"] .booking-summary__label,
[data-theme="dark"] .modal__pricing-label,
[data-theme="dark"] .filter-bar__label,
[data-theme="dark"] .contact-info-card__text,
[data-theme="dark"] .value-card__text {
  color: #AAA;
}

[data-theme="dark"] .chip {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .booking-option.selected {
  background: rgba(91,155,213,0.1);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--border);
}

[data-theme="dark"] .form-input::placeholder {
  color: #666;
}

[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #0A0A0A 0%, var(--primary-dark) 100%);
}

/* ========================================
   Tours Section
   ======================================== */
.tours-section {
  background: var(--bg-alt);
}

.tours-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
}

.tours-header__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.tours-header__subtitle {
  font-size: 1rem;
  color: var(--text);
  opacity: 0.7;
  max-width: 500px;
}

.tours-header__link {
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
  white-space: nowrap;
}

.tours-header__link:hover {
  color: var(--primary-dark);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* --- Tour Card --- */
.tour-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.tour-card__image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-card__image img {
  transform: scale(1.08);
}

.tour-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
}

.tour-card__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.tour-card__details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tour-card__detail {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text);
  opacity: 0.7;
}

.tour-card__detail svg {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 1;
}

.tour-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.tour-card__old-price {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.5;
  text-decoration: line-through;
  margin-right: 4px;
}

.tour-card__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: var(--font-heading);
}

.tour-card__price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.6;
  margin-left: 2px;
}

.tour-card__arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.3s, transform 0.3s;
}

.tour-card:hover .tour-card__arrow {
  background: var(--primary-dark);
  transform: translateX(3px);
}

/* Tours Responsive */
@media (max-width: 1024px) {
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }

  .tours-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tours-header__title {
    font-size: 1.5rem;
  }
}

/* ========================================
   Popüler Lokasyonlar
   ======================================== */
.locations-section {
  background: var(--bg);
}

/* Filtre Tabları */
.locations-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.locations-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.locations-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.locations-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.locations-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

/* Liste */
.locations-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* Liste Öğesi */
.loc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.loc-item:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.loc-item:hover {
  background: rgba(91,155,213,0.06);
}

.loc-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(91,155,213,0.1);
  color: var(--primary);
}

.loc-item__icon svg {
  width: 20px;
  height: 20px;
}

.loc-item__route {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loc-item__from {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-item__route-arrow {
  flex-shrink: 0;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.loc-item__route-arrow svg {
  width: 18px;
  height: 18px;
}

.loc-item__to {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-item__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.loc-item__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.loc-item__arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  opacity: 0.3;
  transition: all 0.25s;
}

.loc-item__arrow svg {
  width: 16px;
  height: 16px;
}

.loc-item:hover .loc-item__arrow {
  background: var(--primary);
  color: #FFFFFF;
  opacity: 1;
}

/* Gizlenme */
.loc-item.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .locations-list {
    grid-template-columns: 1fr;
  }

  .loc-item:nth-child(odd) {
    border-right: none;
  }

  .locations-tabs {
    gap: 0.4rem;
  }

  .locations-tab {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   Genel Modal (Tur & Lokasyon)
   ======================================== */
/* Google Places Autocomplete dropdown modal üstünde */
.pac-container { z-index: 999999 !important; }

.tour-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tour-modal-overlay.active { opacity: 1; }

.tour-modal {
  background: var(--card-bg, #fff);
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
[data-theme="dark"] .tour-modal { background: #1A1A1A; }

.tour-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading, #1a1a1a);
  margin: 0 0 0.5rem;
}
.tour-modal__tour-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary, #5B9BD5);
  padding: 0.6rem 0.85rem;
  background: rgba(91,155,213,0.1);
  border-radius: 8px;
  margin-bottom: 1.25rem;
}
.tour-modal__row { display: flex; gap: 0.75rem; }
.tour-modal__field--half { flex: 1; }
.tour-modal__field { margin-bottom: 1rem; }
@media (max-width: 480px) { .tour-modal__row { flex-direction: column; gap: 0; } }

.tour-modal__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text, #333);
  margin-bottom: 0.4rem;
}
.tour-modal__input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg, #fff);
  color: var(--text, #333);
  transition: border-color 0.2s;
}
[data-theme="dark"] .tour-modal__input { background: #222; border-color: #333; color: #ddd; }
.tour-modal__input:focus { outline: none; border-color: var(--primary, #5B9BD5); }

.tour-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.tour-modal__btn {
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.tour-modal__btn--primary { background: var(--primary, #5B9BD5); color: #fff; }
.tour-modal__btn--primary:hover { opacity: 0.9; }
.tour-modal__btn--secondary { background: transparent; color: var(--text, #666); border: 1px solid var(--border, #e5e5e5); }
.tour-modal__btn--secondary:hover { background: var(--bg-alt, #f5f5f5); }

/* Gidiş-Dönüş Toggle (Modal içi) */
.tour-modal__toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.tour-modal__toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text, #333);
}
.tour-modal__switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.tour-modal__switch input { display: none; }
.tour-modal__slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
}
.tour-modal__slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}
.tour-modal__switch input:checked + .tour-modal__slider { background: var(--primary, #5B9BD5); }
.tour-modal__switch input:checked + .tour-modal__slider::before { transform: translateX(20px); }

.tour-modal__toggle-box {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 100%;
  padding-top: 0.3rem;
}
.tour-modal__toggle-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text, #333);
}
