@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Quicksand:wght@300..700&display=swap');
:root {
  --main-color: #014cd9;
  --primary-color: #014cd9;
}
body {
  font-family: "Open Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", sans-serif;
}

#mainNavbar {
  background-color: var(--main-color) !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 0;
}

#mainNavbar.scrolled {
  background-color: var(--main-color) !important;
}


.anasayfa #mainNavbar {
  background-color: transparent !important;
}

.anasayfa #mainNavbar.scrolled {
  background-color: var(--main-color) !important;
}
.hero-section .tursabheader {
  display: block;
  z-index: 99;
  float: right;
  position: absolute;
  top: 120px;
  right: 25px;
  font-size: .9rem;
  background: #ffffffb3;
  padding: 5px;
  border-radius: 10px;
  overflow: hidden;
}
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  justify-content: flex-start
}

.quick-reply-btn {
  background-color: #fff;
  border: 1px solid #d4edda;
  color: #075E54;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-family: 'Poppins',sans-serif;
  cursor: pointer;
  transition: all .2s ease
}

.quick-reply-btn:hover {
  background-color: #e0f2f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px #0000000d
}

.whatsapp-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 350px;
  background-color: #f0f2f5;
  border-radius: 16px;
  box-shadow: 0 10px 30px #0003;
  z-index: 1050;
  font-family: 'Poppins',sans-serif;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  visibility: hidden;
  display: none;
  transition: all .4s cubic-bezier(0.175,0.885,0.32,1.275)
}

.whatsapp-widget-container.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  display: block
}

.whatsapp-widget-container.minimized {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 4px 15px #25d3664d;
  cursor: pointer;
  display: flex!important;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition: all .3s ease
}

.whatsapp-widget-container.minimized .widget-header,.whatsapp-widget-container.minimized .widget-body {
  display: none
}

.whatsapp-widget-container.minimized .minimized-icon {
  display: flex!important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%
}

.whatsapp-widget-container.minimized .minimized-icon i {
  font-size: 24px;
  color: #fff
}

.whatsapp-widget-container:not(.minimized) .minimized-icon {
  display: none
}

.whatsapp-widget-container.minimized:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px #25d36666
}

.widget-header {
  background-color: #075E54;
  color: #fff;
  padding: 12px 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.widget-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: .8
}

.widget-close-btn:hover {
  opacity: 1
}

.widget-body {
  padding: 20px
}

.welcome-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 20px
}

.avatar {
  width: 60px;
  height: 40px;
  background-color: #ffb74d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px
}

.message-content {
  background-color: #fff;
  padding: 12px 15px;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 5px #0000000d
}

.message-content p {
  margin: 0;
  color: #333
}

.input-area {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px;
  margin-bottom: 15px;
  border: 1px solid #ddd
}

#whatsapp-message-input {
  flex-grow: 1;
  border: none;
  outline: none;
  background: none;
  padding: 10px 15px;
  font-size: 15px;
  color: #333
}

#whatsapp-message-input::placeholder {
  color: #999
}

#send-whatsapp-btn {
  background-image: linear-gradient(45deg,#25D366,#128C7E);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: transform .2s
}

#send-whatsapp-btn:hover {
  transform: scale(1.1)
}

.whatsapp-main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .3s
}

.whatsapp-main-button:hover {
  background-color: #128C7E;
  color: #fff
}

.whatsapp-main-button i {
  font-size: 22px
}
@media (max-width: 400px) {
  .whatsapp-widget-container {
      width:calc(100% - 30px);
      bottom: 15px;
      right: 15px
  }
}
@media (max-width: 991.98px) {
  .anasayfa #mainNavbar:not(.scrolled) .navbar-collapse {
    flex-basis: 100%;
    background-color: var(--main-color) !important;
    margin-top: 0.75rem;
    padding: 0.75rem 0 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  }
}


.sticky-nav-wrapper {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.sticky-nav-wrapper .nav-link-item {
  transition: color 0.3s ease;
  position: relative;
}

.sticky-nav-wrapper .nav-link-item:hover {
  color: var(--main-color) !important;
}

.sticky-nav-wrapper .nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

.sticky-nav-wrapper .nav-link-item:hover::after {
  width: 100%;
}

.tour-content-section {
  overflow: visible !important;
  position: relative;
}

.tour-content-section .container {
  overflow: visible !important;
  position: relative;
}

.tour-content-section .row {
  overflow: visible !important;
  align-items: flex-start;
  position: relative;
}

.tour-content-section .col-lg-4 {
  height: fit-content;
}

.booking-widget-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.booking-widget {
  transition: box-shadow 0.3s ease;
  width: 100%;
}


.dates-section .table {
  border-collapse: separate;
  border-spacing: 0;
}

.dates-section .table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  padding: 1rem;
  font-weight: 600;
  color: #212529;
}

.dates-section .table tbody tr {
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.2s ease;
}

.dates-section .table tbody tr:hover {
  background-color: #f8f9fa;
}

.dates-section .table tbody td {
  padding: 1.25rem 1rem;
  vertical-align: middle;
}

.dates-section .table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.dates-section .table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.dates-section .badge.bg-info {
  background-color: #17a2b8 !important;
}

.dates-section .btn-danger {
  background-color: #dc3545;
  border-color: #dc3545;
  transition: all 0.3s ease;
}

.dates-section .btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Tour dates schedule — compact filters + accordion */
.dates-schedule-modern .dates-schedule-section-title {
  font-size: clamp(1.125rem, 3vw, 1.35rem);
}

.dates-schedule-modern .dates-schedule-months-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dates-schedule-modern .dates-schedule-head-prices .fw-bold,
.dates-schedule-modern .dates-schedule-head-prices .text-success {
  font-size: 0.9rem;
}

.dates-schedule-modern .dates-filter-active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  color: #fff !important;
}

.dates-schedule-modern .dates-filter-active:hover {
  color: #fff !important;
  opacity: 0.92;
}

.dates-schedule-modern .dates-schedule-discount-pct {
  color: #a0522d;
  font-weight: 600;
  font-size: 0.75rem;
}

.dates-schedule-modern .dates-schedule-body {
  padding: 0.65rem 0.75rem 0.75rem;
}

@media (min-width: 768px) {
  .dates-schedule-modern .dates-schedule-body {
    padding: 0.65rem 0.85rem 0.7rem;
  }
}

.dates-schedule-modern .dates-schedule-tour-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dates-schedule-modern .dates-schedule-period {
  font-size: 0.72rem;
  line-height: 1.4;
  margin-top: 0.2rem;
}

.dates-schedule-modern .dates-schedule-body .badge {
  padding: 0.2rem 0.5rem !important;
  font-size: 0.65rem;
  font-weight: 600;
}

.dates-schedule-modern .dates-schedule-price-bar {
  padding: 0.45rem 0.55rem;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.375rem;
  font-size: 0.8125rem;
}

.dates-schedule-modern .dates-schedule-group-tiers-wrap {
  background: #e8f4fa;
  border: 1px solid rgba(1, 76, 217, 0.12);
}

.dates-schedule-modern .dates-schedule-group-tier-card {
  background: #f0f2f4;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8125rem;
}

.dates-schedule-modern .dates-schedule-group-tier-title {
  color: var(--main-color);
  font-size: 0.8125rem;
}

.dates-schedule-modern .dates-schedule-group-tier-discount {
  color: #942d2d;
}

.dates-schedule-modern .dates-schedule-group-tier-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  line-height: 1.25;
}

.dates-schedule-modern .dates-schedule-group-tier-strike {
  color: #942d2d;
}

.dates-schedule-modern .dates-schedule-group-tier-final {
  color: #2ecc71;
  font-size: 0.9375rem;
}

.dates-schedule-modern .dates-schedule-pp-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dates-schedule-modern .dates-schedule-pp-main .text-success,
.dates-schedule-modern .dates-schedule-pp-main .fw-bold {
  font-size: 0.9375rem;
}

@media (max-width: 767.98px) {
  .dates-schedule-modern .dates-schedule-header {
    font-size: 0.85rem;
  }
}

.dates-schedule-modern .dates-schedule-collapse .dates-booking-btn,
.dates-schedule-modern .dates-schedule-book-btn {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .dates-schedule-modern .dates-schedule-book-btn {
    margin-top: 0.15rem;
  }
}

.dates-schedule-modern .dates-schedule-collapse .dates-booking-btn:hover,
.dates-schedule-modern .dates-schedule-book-btn:hover {
  transform: translateY(-1px);
}

.tour-booking-dates-modal .modal-content {
  border-radius: 0.85rem;
}
.tour-booking-dates-modal .booking-widget-modal {
  border: none !important;
  box-shadow: none !important;
}

@media (min-width: 768px) {
  .dates-schedule-modern .dates-schedule-header {
    pointer-events: none;
  }

  .dates-schedule-modern .dates-schedule-header::after {
    display: none;
  }

  .dates-schedule-modern .accordion-button.collapsed {
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
  }
}

@media (max-width: 767.98px) {
  .dates-section .dates-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .dates-section .dates-availability-table {
    font-size: 0.8125rem;
    table-layout: auto;
    width: 100%;
    min-width: 0;
  }

  .dates-section .dates-availability-table thead th,
  .dates-section .dates-availability-table tbody td {
    padding: 0.5rem 0.4rem;
    white-space: nowrap;
  }

  .dates-section .dates-availability-table tbody td:nth-child(3) {
    white-space: normal;
    max-width: 7.5rem;
    word-break: break-word;
  }

  .dates-section .dates-price-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem !important;
  }

  .dates-section .dates-booking-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    white-space: nowrap;
  }
}


.tour-date-dropdown-wrapper {
  overflow: visible !important;
  z-index: 10;
}

.tour-date-input {
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

.tour-date-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.tour-date-option {
  transition: background-color 0.2s ease;
  cursor: pointer;
  color: #333;
}

.tour-date-option:hover {
  background-color: #f5f5f5;
}


.adults-decrease,
.adults-increase {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #dee2e6;
  color: #333;
  transition: all 0.2s ease;
}

.adults-decrease:hover,
.adults-increase:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #000;
}

.adults-decrease:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


.itinerary-section {
  margin-bottom: 3rem;
}

.itinerary-map-wrapper {
  background: #f8f9fa;
}

.itinerary-accordion .accordion-button {
  background-color: white;
  border: none;
  padding: 1rem 1.25rem;
  box-shadow: none;
  font-size: 1rem;
  color: #212529;
  display: flex;
  align-items: center;
  width: 100%;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
  background-color: white;
  color: #212529;
  box-shadow: none;
}

.itinerary-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.itinerary-accordion .accordion-button::after {
  display: none;
}

.itinerary-accordion .accordion-button i {
  transition: transform 0.3s ease;
  color: #6c757d;
  font-size: 0.875rem;
  margin-left: auto;
  flex-shrink: 0;
}

.itinerary-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.itinerary-accordion .accordion-body {
  padding: 0.5rem 1.25rem 1rem;
  background-color: white;
}

.itinerary-accordion .accordion-item {
  background-color: white;
}


.faq-section {
  margin-top: 0;
}

.faq-tabs {
  border-bottom: 2px solid #dee2e6;
}

.faq-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-tabs .nav-link:hover {
  color: var(--main-color);
  border-bottom-color: rgba(1, 76, 217, 0.3);
}

.faq-tabs .nav-link.active {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
  background: transparent;
}

.faq-tabs .nav-link i {
  font-size: 1rem;
}

@media (max-width: 767.98px) {
  .faq-tabs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }

  .faq-tabs-scroll .faq-tabs {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    margin-bottom: 0;
  }

  .faq-tabs-scroll .faq-tabs .nav-item {
    flex: 0 0 auto;
  }

  .faq-tabs-scroll .faq-tabs .nav-link {
    white-space: nowrap;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    font-size: 0.875rem;
  }

  .faq-tabs-scroll .faq-tabs .nav-link i.me-2 {
    margin-right: 0.35rem !important;
  }
}

.faq-accordion .accordion-button {
  background-color: white;
  border: none;
  padding: 1rem 1.25rem;
  box-shadow: none;
  font-size: 1rem;
  color: #212529;
  display: flex;
  align-items: center;
  width: 100%;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: white;
  color: #212529;
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-button::after {
  display: none;
}

.faq-accordion .accordion-button i {
  transition: transform 0.3s ease;
  color: #6c757d;
  font-size: 0.875rem;
  margin-left: auto;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
}

.faq-accordion .accordion-body {
  padding: 0.5rem 1.25rem 1rem;
  background-color: white;
}

.faq-accordion .accordion-item {
  background-color: white;
}

.booking-widget:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.booking-widget .btn-primary {
  background-color: var(--main-color);
  border-color: var(--main-color);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.booking-widget .btn-primary:hover {
  background-color: #0139a8;
  border-color: #0139a8;
}

.booking-widget .btn-outline-danger {
  border-color: #dc3545;
  color: #dc3545;
}

.booking-widget .btn-outline-danger:hover {
  background-color: #dc3545;
  color: white;
}

#mainNavbar.scrolled .btn-primary {
  background-color: #fff !important;
  color: var(--main-color) !important;
  border: 1px solid white !important;
}

#mainNavbar.scrolled .btn-primary:hover {
  background-color: white !important;
  color: var(--main-color) !important;
  border-color: white !important;
}

.navbar-brand {
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.navbar-nav .form-select {
  color: white !important;
  background-color: transparent !important;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  padding-right: 2rem;
}

.navbar-nav .form-select:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  border-color: transparent;
  box-shadow: none;
}

.navbar-nav .form-select option {
  background-color: white;
  color: #000;
}


#mainNavbar .dropdown-menu {
  min-width: 12rem;
}
#mainNavbar .dropdown-item:hover,
#mainNavbar .dropdown-item:focus {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--main-color, #0d6efd);
}


.hero-section {
  min-height: 85vh;
  overflow: visible;
}

.hero-background {
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(1, 76, 217, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
  overflow: visible;
}

.search-form-wrapper {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hero-section h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.search-form-wrapper {
  max-width: 100%;
}

.search-tabs {
  padding: 0.75rem 1rem 0 1rem;
  margin-bottom: 0;
}

.search-tabs .nav-link {
  color: #fff;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease;
}

.search-tabs .nav-link:hover {
  color: #fff;
  border-bottom-color: var(--main-color);
}

.search-tabs .nav-link.active {
  color: #fff;
  border-bottom-color: var(--main-color);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem 0.375rem 0 0;
}

.search-form {
  max-width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
}

.search-form .form-control {
  font-size: 1rem;
  padding: 0;
  height: auto;
  line-height: 1.5;
}

.search-form .form-control:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

.search-form .form-control::placeholder {
  color: #999;
}

.search-form .form-select {
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 1rem;
  height: auto;
  color: #666;
  cursor: pointer;
}

.search-form .form-select:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}


.location-input-wrapper {
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  overflow: visible;
}

.location-input {
  cursor: pointer;
  padding-right: 2rem !important;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
  background: transparent;
}

.location-dropdown-wrapper {
  overflow: visible !important;
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.location-clear {
  z-index: 10;
}

.location-clear:hover {
  color: #333 !important;
}

.location-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.location-dropdown-wrapper {
  overflow: visible !important;
  z-index: 10;
  position: relative;
}

.search-form {
  overflow: visible;
}

.hero-section .row,
.hero-section .col-lg-10 {
  overflow: visible;
}

.location-option {
  transition: background-color 0.2s ease;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
}

.location-option:hover {
  background-color: #f5f5f5;
}

.location-option i {
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}


.month-input-wrapper {
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  overflow: visible;
}

.month-input {
  cursor: pointer;
  padding-right: 2.5rem !important;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
  background: transparent;
}

.month-dropdown-wrapper {
  overflow: visible !important;
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.month-dropdown {
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.month-option {
  transition: background-color 0.2s ease;
  cursor: pointer;
  color: #666;
}

.month-option:hover {
  background-color: #f5f5f5;
}

.month-checkbox {
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-option.selected .month-checkbox {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.month-option.selected .month-checkbox::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}


.date-range-wrapper {
  overflow: visible !important;
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.date-range-input-wrapper {
  cursor: pointer;
  position: relative;
  z-index: 5;
  pointer-events: auto;
  overflow: visible;
}

.date-range-input {
  cursor: pointer;
  padding-right: 2.5rem !important;
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
  background: transparent;
}

.date-range-picker {
  border: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 9999 !important;
  position: absolute;
  top: 100%;
  left: 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-header {
  text-align: center;
  font-weight: bold;
  font-size: 0.875rem;
  color: #333;
  padding: 0.5rem 0;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  color: #333;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background-color: #f0f0f0;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-day.selected {
  background-color: var(--main-color);
  color: white;
  font-weight: 500;
}

.calendar-day.in-range {
  background-color: rgba(1, 76, 217, 0.1);
  color: var(--main-color);
}

.calendar-day.start-date {
  background-color: var(--main-color);
  color: white;
  font-weight: 500;
}

.calendar-day.end-date {
  background-color: var(--main-color);
  color: white;
  font-weight: 500;
}
.calendar-month h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.search-form .btn-primary {
  background-color: var(--main-color);
  border-color: var(--main-color);
  font-weight: 600;
}

.search-form .btn-primary:hover {
  background-color: #0139a8;
  border-color: #0139a8;
}


.popular-destinations {
  background-color: #fff;
  padding: 5rem 0;
}

.destinationsSwiper {
  padding: 2rem 0 3rem 0;
}

.destinationsSwiper .swiper-slide {
  height: auto;
}

.destinationsSwiper .swiper-slide .destination-card {
  height: 450px;
}

.destination-card-link {
  display: block;
  height: 100%;
}

.destination-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2) !important;
}

.destination-image {
  position: relative;
  overflow: hidden;
}

.destination-image img {
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
  transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.destination-overlay h3 {
  font-size: 1.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-overlay .badge {
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.destinations-next,
.destinations-prev,
.firsat-card-next,
.firsat-card-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.destinations-next:after,
.destinations-prev:after,
.firsat-card-next:after,
.firsat-card-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.destinations-next:hover,
.destinations-prev:hover,
.firsat-card-next:hover,
.firsat-card-prev:hover {
  background-color: var(--main-color);
  color: white;
}

.destinations-next,
.firsat-card-next {
  right: -25px;
}

.destinations-prev,
.firsat-card-prev {
  left: -25px;
}


@media (max-width: 991.98px) {
  .popular-destinations .destinationsSwiper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .popular-destinations .destinations-next,
  .popular-destinations .destinations-prev {
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 44px !important;
    height: 44px !important;
    z-index: 10;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
  }
  .popular-destinations .destinations-next:after,
  .popular-destinations .destinations-prev:after {
    font-size: 18px;
  }
  .popular-destinations .destinations-next {
    right: 10px !important;
    left: auto !important;
  }
  .popular-destinations .destinations-prev {
    left: 10px !important;
    right: auto !important;
  }
}

@media (min-width: 992px) {
  .popular-destinations .destinationsSwiper {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .popular-destinations .destinations-next,
  .popular-destinations .destinations-prev {
    margin-top: -25px;
  }
  .popular-destinations .destinations-next {
    right: 0.25rem !important;
    left: auto !important;
  }
  .popular-destinations .destinations-prev {
    left: 0.25rem !important;
    right: auto !important;
  }
}

.deals-discounts .firsat-card-swiper-shell {
  overflow: visible;
}


.promotional-banners {
  background-color: #fff;
  padding: 5rem 0;
}

.promo-banner {
  height: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.promo-banner-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.promo-banner-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner:hover .promo-banner-image img {
  transform: scale(1.05);
}

.promo-banner-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  transition: background 0.3s ease;
}

.promo-banner:hover .promo-banner-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.promo-banner-overlay h2 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-banner-overlay .btn-light {
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-banner-overlay .btn-light:hover {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.recommended-cruise {
  background-color: #fff;
  padding: 5rem 0;
}

.cruiseSwiper {
  padding: 2rem 0 3rem 0;
}

.cruise-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.cruise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.cruise-image {
  position: relative;
  overflow: hidden;
}

.cruise-image img {
  transition: transform 0.3s ease;
}

.cruise-card:hover .cruise-image img {
  transform: scale(1.05);
}

.cruise-image .btn-link {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.cruise-image .btn-link:hover {
  opacity: 1;
  transform: scale(1.1);
  background-color: var(--main-color) !important;
}

.cruise-image .btn-link:hover i {
  color: white !important;
}

.cruise-image .btn-link i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cruise-card .badge.bg-primary {
  background-color: var(--main-color) !important;
}

.cruise-next,
.cruise-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.cruise-next:after,
.cruise-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.cruise-next:hover,
.cruise-prev:hover {
  background-color: var(--main-color);
  color: white;
}

.cruise-next {
  right: -25px;
}

.cruise-prev {
  left: -25px;
}


.dest-tours-swiper {
  padding: 2rem 0 3rem 0;
}

.dest-tours-swiper .swiper-slide {
  align-self: stretch;
  height: auto;
}

.dest-tours-swiper .swiper-slide > a {
  height: 100%;
  display: flex !important;
}

.dest-tours-swiper .cruise-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-tours-swiper .cruise-card .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.dest-tours-swiper .cruise-card .card-body .d-flex.align-items-baseline {
  margin-top: auto;
}

.dest-tours-next,
.dest-tours-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.dest-tours-next:after,
.dest-tours-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.dest-tours-next:hover,
.dest-tours-prev:hover {
  background-color: var(--main-color);
  color: white;
}

.dest-tours-next {
  right: -25px;
}

.dest-tours-prev {
  left: -25px;
}


.dest-yachts-swiper {
  padding: 2rem 0 3rem 0;
}

.dest-yachts-swiper .swiper-slide {
  align-self: stretch;
  height: auto;
}

.dest-yachts-swiper .swiper-slide > a {
  height: 100%;
  display: flex !important;
}

.dest-yachts-swiper .gulet-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-yachts-swiper .gulet-card .card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.dest-yachts-swiper .gulet-card .card-body .d-flex.align-items-baseline {
  margin-top: auto;
}

.dest-yachts-next,
.dest-yachts-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.dest-yachts-next:after,
.dest-yachts-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.dest-yachts-next:hover,
.dest-yachts-prev:hover {
  background-color: var(--main-color);
  color: white;
}

.dest-yachts-next {
  right: -25px;
}

.dest-yachts-prev {
  left: -25px;
}


.gulet-charter {
  background-color: #fff;
  padding: 5rem 0;
}

.guletSwiper {
  padding: 2rem 0 3rem 0;
}

.gulet-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.gulet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.gulet-image {
  position: relative;
  overflow: hidden;
}

.gulet-image img {
  transition: transform 0.3s ease;
}

.gulet-card:hover .gulet-image img {
  transform: scale(1.05);
}

.gulet-image .btn-link {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.gulet-image .btn-link:hover {
  opacity: 1;
  transform: scale(1.1);
  background-color: var(--main-color) !important;
}

.gulet-image .btn-link:hover i {
  color: white !important;
}

.gulet-next,
.gulet-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.gulet-next:after,
.gulet-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.gulet-next:hover,
.gulet-prev:hover {
  background-color: var(--main-color);
  color: white;
}

.gulet-next {
  right: -25px;
}

.gulet-prev {
  left: -25px;
}


@media (max-width: 991.98px) {
  .gulet-charter .position-relative .guletSwiper {
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }
  .gulet-charter .gulet-next,
  .gulet-charter .gulet-prev {
    margin-top: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    width: 44px !important;
    height: 44px !important;
    z-index: 10;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
  }
  .gulet-charter .gulet-next:after,
  .gulet-charter .gulet-prev:after {
    font-size: 18px;
  }
  .gulet-charter .gulet-next {
    right: 10px !important;
    left: auto !important;
  }
  .gulet-charter .gulet-prev {
    left: 10px !important;
    right: auto !important;
  }
}

@media (min-width: 992px) {
  .gulet-charter .position-relative .guletSwiper {
    margin-left: 3rem;
    margin-right: 3rem;
  }
  .gulet-charter .gulet-next,
  .gulet-charter .gulet-prev {
    margin-top: -25px;
  }
  .gulet-charter .gulet-next {
    right: 0.25rem !important;
    left: auto !important;
  }
  .gulet-charter .gulet-prev {
    left: 0.25rem !important;
    right: auto !important;
  }
}


.features-section {
  background-color: #fff;
  padding: 5rem 0;
}

.feature-card {
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon .icon-wrapper {
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature-card h4 {
  color: #212529;
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}


.customer-reviews {
  background: linear-gradient(135deg, var(--main-color) 0%, #0039a8 100%);
  padding: 5rem 0;
}

.reviewsSwiper {
  padding: 2rem 0 3rem 0;
}

.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  background-color: white;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2) !important;
}

.review-card .text-primary {
  color: var(--main-color) !important;
}

.reviews-next,
.reviews-prev {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--main-color);
  margin-top: -25px;
}

.reviews-next:after,
.reviews-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.reviews-next:hover,
.reviews-prev:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--main-color);
}

.reviews-next {
  right: -25px;
}

.reviews-prev {
  left: -25px;
}


.deals-discounts {
  background-color: #fff;
  padding: 5rem 0;
}

.deals-banner {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 490px;
}

.deals-banner-background {
  z-index: 0;
}

.deals-banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deals-banner-overlay {
  background: linear-gradient(135deg, rgba(1, 76, 217, 0.8) 0%, rgba(0, 57, 168, 0.1) 100%);
  z-index: 1;
}

.deals-banner .position-relative.z-1 {
  z-index: 2;
}

@media (min-width: 992px) {
  .deals-banner {
    max-height: 490px;
  }
  
  .dealsSwiper {
    max-height: 450px;
  }
  
  .dealsSwiper .deal-card {
    max-height: 450px;
  }
}

.deals-discounts .row.align-items-stretch {
  align-items: stretch;
  display: flex;
}

.deals-discounts .col-lg-5,
.deals-discounts .col-lg-7 {
  display: flex;
  align-items: stretch;
}

.deals-banner .btn-light {
  transition: all 0.3s ease;
  font-weight: 600;
}

.deals-banner .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dealsSwiper {
  padding: 0 0 3rem 0;
  height: 100%;
}

.dealsSwiper .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}

.dealsSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.deal-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.deal-card .deal-image {
  flex-shrink: 0;
  overflow: hidden;
}

.deal-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
  min-height: 0;
}

/* Başlık: indirim / çizili fiyat nedeniyle gövdede yer kısılsa bile küçülmesin; en fazla 2 satır (clamp <a> üzerinde) */
.deal-card .card-title {
  flex-shrink: 0;
  min-height: calc(1.4em * 2);
}

.deal-card .card-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
  word-break: break-word;
  width: 100%;
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.deal-image {
  position: relative;
  overflow: hidden;
}

.deal-image img {
  transition: transform 0.3s ease;
}

.deal-card:hover .deal-image img {
  transform: scale(1.05);
}

.deal-image .btn-link {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.deal-image .btn-link:hover {
  opacity: 1;
  transform: scale(1.1);
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.deal-image .btn-link:hover i {
  color: white !important;
}

.deal-card .badge.bg-primary {
  background-color: var(--main-color) !important;
}

.deal-card .text-primary {
  color: var(--main-color) !important;
}


.js-deals-next,
.js-deals-prev {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  color: #666 !important;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  margin: 0 !important;
}

.js-deals-next:hover,
.js-deals-prev:hover {
  color: var(--main-color) !important;
}

.js-deals-next.swiper-button-disabled,
.js-deals-prev.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.js-deals-next:after,
.js-deals-prev:after {
  display: none !important;
}

.js-deals-next i,
.js-deals-prev i {
  font-size: 24px;
}


.js-deals-pag.pagination {
  display: flex !important;
  align-items: center;
  gap: 8px;
  position: static !important;
  margin: 0 !important;
  width: auto !important;
}

.js-deals-pag .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #ddd !important;
  opacity: 1 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  margin: 0 !important;
}

.js-deals-pag .swiper-pagination-bullet-active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color);
}

.js-deals-pag .swiper-pagination-bullet:hover {
  background-color: var(--main-color) !important;
  opacity: 0.7;
}


@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.5rem;
  }
  
  .search-form {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .navbar-nav .form-select {
    margin: 0.5rem 0;
  }
  
  .search-form .col-md-4 {
    margin-bottom: 1rem;
  }
}


.blog-section {
  background-color: #fff;
  padding: 5rem 0;
}

.blog-card-link {
  display: block;
  height: 100%;
}

.blog-card {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  background-color: white;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  transition: transform 0.3s ease;
  width: 100%;
  display: block;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content h5 {
  transition: color 0.3s ease;
  line-height: 1.4;
}

.blog-card:hover .blog-content h5 {
  color: var(--main-color) !important;
}


.newsletter-section {
  background-color: var(--main-color);
}

.newsletter-section .form-control:focus {
  box-shadow: none;
  border-color: white;
}

.newsletter-section .btn-light {
  transition: all 0.3s ease;
}

.newsletter-section .btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.footer-links {
  background-color: #f8f9fa;
}

.footer-links h5 {
  color: #212529;
  font-size: 1.1rem;
}

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--main-color) !important;
}


.footer-links .footer-menu-col {
  min-width: 0;
}

@media (max-width: 767.98px) {
  .footer-links .footer-menu-heading {
    font-size: 0.9375rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .footer-links .footer-menu-link {
    display: block;
    font-size: 0.875rem;
    line-height: 1.35;
    padding: 0.3125rem 0;
    min-height: 2.5rem;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
  }
  .footer-links .footer-menu-item {
    min-width: 0;
  }
}

.app-download-btn {
  transition: all 0.3s ease;
}

.app-download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
  color: var(--main-color) !important;
}

.footer-links .form-select {
  cursor: pointer;
}

.footer-links .form-select:focus {
  box-shadow: none;
  border-color: transparent;
}


.reviews-section {
  margin-top: 0;
}

.review-card {
  padding-bottom: 1.5rem;
}

.review-card h5 {
  font-size: 1.1rem;
  color: #212529;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.star-rating {
  display: inline-flex;
  gap: 2px;
}

.star-rating i {
  font-size: 1rem;
}

.review-images img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.review-images img:hover {
  transform: scale(1.05);
}


.trip-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  padding: 2rem;
  box-sizing: border-box;
}

.trip-gallery-lightbox.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.trip-gallery-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}


.trip-gallery-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trip-gallery-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.05);
}


.trip-gallery-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 1rem;
  padding-top: 3rem;
}

.trip-gallery-modal-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem 0;
}

.trip-gallery-modal-image img {
  width: 100%;
  object-fit: contain;
  display: block;
}


.tour-gallery-swiper-wrapper {
  background: #014cd9;
  border-radius: 12px;
  overflow: hidden;
}

.tour-gallery-swiper {
  overflow: hidden;
  border-radius: 12px;
}

.tour-gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-gallery-swiper .trip-gallery-trigger {
  width: 100%;
  min-height: 240px;
}

.tour-gallery-swiper .trip-gallery-trigger img {
  width: 100%;
  border-radius: 12px;
}

.tour-gallery-swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

.tour-gallery-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-gallery-swiper-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  transform: scale(1.2);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border-top: 3px solid var(--main-color);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 1rem 0 1.25rem;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-banner .container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.cookie-banner h5 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.35rem;
}

.cookie-banner p {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.5;
}

.cookie-banner p a {
  color: var(--main-color);
  text-decoration: underline;
}

/*
 * CMS / zengin metin: kaynakta kelime<a>link</a>kelime bitişik geldiğinde okunabilir boşluk.
 * Görsel yalnız img olan bağlantılara dokunma; buton ve nav kalıplarını hariç tut.
 */
.blog-content a:not(.btn):not(.badge):not(.stretched-link):not(.page-link):not(.dropdown-item):where(:not(:has(img))),
.cookie-banner p a,
.tour-description a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.yacht-description a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.destination-description a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.category-description a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.tour-content-section .itinerary-accordion .accordion-body .small a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.notes-faq-answer-content a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.notes-essential-content a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.booking-kvkk-content a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))),
.faq-accordion .accordion-body a:not(.btn):not(.badge):not(.stretched-link):where(:not(:has(img))) {
  padding-inline: 0.12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.blog-content :is(strong, b),
.tour-description :is(strong, b),
.yacht-description :is(strong, b),
.destination-description :is(strong, b),
.category-description :is(strong, b),
.tour-content-section .itinerary-accordion .accordion-body .small :is(strong, b),
.notes-faq-answer-content :is(strong, b),
.notes-essential-content :is(strong, b),
.booking-kvkk-content :is(strong, b),
.faq-accordion .accordion-body :is(strong, b) {
  padding-inline: 0.07em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.cookie-banner .cookie-accept-btn {
  background-color: var(--main-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cookie-banner .cookie-accept-btn:hover {
  background-color: #0139a8;
  color: #fff;
  transform: translateY(-1px);
}


.cookie-banner.cookie-hidden {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .cookie-banner .row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .cookie-banner .col-md-4.text-end {
    text-align: center !important;
  }
  .cookie-banner .cookie-accept-btn {
    width: 100%;
  }
}





.hero-container-inner {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 100px;
  padding-bottom: 50px;
}
.form-label-sm {
  font-size: 0.875rem;
}
.location-input-hero,
.location-input-readonly {
  font-size: 1rem;
  height: auto;
}
.location-clear-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: none;
  color: #999;
  font-size: 1.2rem;
  line-height: 1;
}
.location-clear-btn-right {
  right: 0.5rem;
}
.location-dropdown-panel,
.month-dropdown-panel {
  display: none;
  z-index: 10650 !important;
  max-height: 300px;
  overflow-y: auto;
  top: 100%;
  left: 0;
  position: absolute;
}
.month-dropdown-panel {
  max-height: 400px;
}
.location-dropdown-panel.mt-1 { margin-top: 0.25rem; }
.location-dropdown-panel.mt-2 { margin-top: 0.5rem; }
.month-dropdown-panel.mt-1 { margin-top: 0.25rem; }
.month-dropdown-panel.mt-2 { margin-top: 0.5rem; }
.month-dropdown-max320 { max-height: 320px; }
.month-dropdown-max280 { max-height: 280px; }
.month-chevron {
  font-size: 0.875rem;
  pointer-events: none;
  z-index: 1;
}
.month-chevron-right {
  right: 0.75rem;
}
.month-checkbox-empty {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 3px;
  flex-shrink: 0;
}
.hero-divider {
  width: 1px;
  height: 50%;
  background-color: #e0e0e0;
  margin-top: 0.5rem;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 992px) {
  .hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-section .search-form-wrapper {
    max-width: min(48rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .hero-section .search-form-wrapper {
    max-width: min(52rem, 100%);
  }
}

@media (max-width: 767.98px) {
  .hero-section .hero-container-inner > .row {
    width: 100%;
    max-width: 100%;
    --bs-gutter-x: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-section .hero-container-inner > .row > .hero-inner {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px)) !important;
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px)) !important;
  }

  .hero-section .search-form-wrapper {
    max-width: 100%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .hero-section .search-form-wrapper .tab-content,
  .hero-section .search-form-wrapper .hero-search-form {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .hero-search-form .search-form {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1.5rem;
    box-sizing: border-box;
  }

  .hero-search-form .search-form > .row {
    --bs-gutter-x: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
  }

  .hero-search-form .search-form > .row > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-search-form .hero-divider {
    display: none !important;
  }

  .hero-search-form .location-input-hero,
  .hero-search-form .date-range-input-hero {
    text-align: center;
  }

  .hero-search-form .location-input-hero::placeholder,
  .hero-search-form .date-range-input-hero::placeholder {
    text-align: center;
  }

  .hero-search-form .form-label.text-dark {
    text-align: center;
  }

  .hero-search-form .location-input {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .hero-search-form .hero-search-submit-col {
    margin-top: 0.35rem;
    padding-top: 0.65rem !important;
  }

  .hero-search-form .month-chevron,
  .hero-search-form .date-range-input-wrapper .month-chevron {
    right: 0.35rem;
  }

  .hero-search-form .location-clear-btn {
    right: 0.25rem;
  }
}


.hero-search-form .location-dropdown-wrapper.hero-filter-popover-open,
.hero-search-form .month-dropdown-wrapper.hero-filter-popover-open,
.hero-search-form .date-range-wrapper.hero-filter-popover-open {
  z-index: 10600 !important;
}
.img-object-cover {
  object-fit: cover;
}

.sayfa-sidebar-link {
  transition: background-color 0.15s ease, color 0.15s ease;
}
.sayfa-sidebar-link:hover:not(.sayfa-sidebar-link-active) {
  background-color: rgba(0, 0, 0, 0.05);
}
.sayfa-sidebar-link-active {
  font-weight: 600;
  color: var(--main-color, #014cd9) !important;
  background-color: rgba(1, 76, 217, 0.1);
}

.breadcrumb-sm {
  font-size: 0.875rem;
}
.breadcrumb-item-current {
  font-weight: 500;
}
.blog-title-lg {
  font-size: 2rem;
}
.blog-featured-img {
  max-height: 480px;
  object-fit: cover;
}
.article-image-h {
  height: 220px;
}
.article-image-h200 {
  height: 200px;
}
.blog-pagination-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card-img-h250 {
  height: 250px;
  object-fit: cover;
}
.card-img-h450 {
  height: 450px;
  object-fit: cover;
}
.card-img-h500 {
  height: 500px;
  object-fit: cover;
}
.dest-card-img-wrap {
  height: 180px;
}
.dest-card-img-wrap-280 {
  height: 280px;
}
.dest-card-img-wrap-220 {
  height: 220px;
}
.dest-placeholder-56 {
  width: 56px;
  height: 56px;
}


.tour-header-code-sm { font-size: 0.875rem; }
.tour-route-icon-sm { font-size: 0.85rem; }
.tour-route-arrow-sm { font-size: 0.75rem; }
.tour-star-partial {
  display: inline-block;
  width: 1em;
  position: relative;
  vertical-align: middle;
}
.tour-star-partial .bi-star {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.tour-star-partial span {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
}
.tour-price-from-sm { font-size: 0.95rem; }
.tour-price-value-lg { font-size: 1.75rem; }
.tour-btn-select { font-weight: 500; }
.gallery-cover-wrap {
  max-height: 500px;
  height: 500px;
  border-radius: 12px !important;
}
.gallery-cell-half {
  height: calc((500px - 12px) / 2);
  border-radius: 12px !important;
}
.gallery-play-center {
  pointer-events: none;
}
.gallery-play-icon {
  font-size: 2.5rem;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.fav-btn-circle {
  text-decoration: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: none;
}
.fav-btn-circle .bi { font-size: 1.25rem; }
.see-all-photos-btn {
  font-weight: 500;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 10;
}
.itinerary-map-wrapper {
  height: 500px;
  border: 1px solid #dee2e6;
}
#tour-map-view {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.tour-sidebar-sticky {
  position: sticky;
  top: 180px; 
  align-self: flex-start;
  z-index: 10;
}
.tour-sidebar-title { font-size: 2rem; }
.tour-sidebar-price-lg { font-size: 1.5rem; vertical-align: top; }
.tour-sidebar-currency { font-size: 1rem; font-weight: normal; color: #666; }
.tour-date-input-readonly {
  cursor: pointer;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.tour-date-dropdown-panel {
  display: none;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  top: 100%;
  left: 0;
}
.booking-widget-selected { display: none; }
.adults-btn-circle,
.cabins-btn-circle {
  width: 36px;
  height: 36px;
  padding: 0;
  border-width: 1.5px;
}
.adults-count,
.cabins-count {
  font-size: 1.1rem;
  min-width: 30px;
  text-align: center;
}
.tour-outline-danger-circle {
  width: 50px;
  height: 50px;
  border-width: 2px;
}


.booking-widget-compact .tour-sidebar-title {
  font-size: 1.2rem;
  line-height: 1.25;
}
.booking-widget-compact .tour-sidebar-price-lg {
  font-size: 1.05rem;
  vertical-align: baseline;
}
.booking-widget-compact .tour-sidebar-currency {
  font-size: 0.75rem;
}
.booking-widget-compact .tour-sidebar-hint {
  font-size: 0.7rem;
  line-height: 1.3;
}
.booking-widget-compact .tour-sidebar-contact-head {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}
.booking-widget-compact .tour-date-input-readonly {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
  min-height: calc(1.5em + 0.5rem + 2px);
}

.booking-widget-compact .sidebar-qty-row {
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  box-sizing: border-box;
}
.booking-widget-compact .sidebar-qty-label {
  font-size: inherit;
  font-weight: 500;
}
.booking-widget-compact .tour-date-dropdown-panel {
  max-height: min(220px, 38vh);
}
@media (max-width: 575.98px) {
  .booking-widget-compact .tour-date-dropdown-panel {
    max-height: min(200px, 32vh);
  }
  .tour-sidebar-sticky {
    top: 72px;
  }
}
.booking-widget-compact .tour-date-option {
  padding: 0.35rem 0.5rem !important;
  font-size: 0.8125rem;
}
.booking-widget-compact .adults-btn-circle,
.booking-widget-compact .cabins-btn-circle {
  width: 26px;
  height: 26px;
  line-height: 1;
  flex-shrink: 0;
}
.booking-widget-compact .adults-btn-circle .bi,
.booking-widget-compact .cabins-btn-circle .bi {
  font-size: 0.85rem;
}
.booking-widget-compact .adults-count,
.booking-widget-compact .cabins-count {
  font-size: inherit;
  line-height: 1.5;
  min-width: 1.1rem;
}
.booking-widget-compact .tour-outline-danger-circle.tour-fav-btn-compact {
  width: 40px;
  height: 40px;
  padding: 0 !important;
  flex-shrink: 0;
}
.booking-widget-compact .tour-outline-danger-circle.tour-fav-btn-compact .bi {
  font-size: 1rem;
}
.booking-widget-compact .form-check-input {
  width: 0.95em;
  height: 0.95em;
  margin-top: 0.2em;
}
.booking-widget-compact .btn-primary {
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}


.booking-widget-compact .yacht-date-input-readonly {
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
  min-height: calc(1.5em + 0.5rem + 2px);
  font-size: 0.875rem;
}
.booking-widget-compact .yacht-date-picker-panel {
  max-height: min(320px, 55vh);
  padding: 0.75rem;
}
@media (max-width: 575.98px) {
  .booking-widget-compact .yacht-date-picker-panel {
    max-height: min(280px, 48vh);
    padding: 0.5rem;
  }
  .booking-widget-compact .yacht-calendars-row {
    flex-direction: column;
    gap: 0.75rem !important;
  }
}

.section-icon-lg { font-size: 2.5rem; }
.section-icon-md { font-size: 1.5rem; }
.section-icon-sm { font-size: 1.25rem; }
.itinerary-map-embed iframe { border: 0; }
.itinerary-no-map {
  min-height: 300px;
}
.sticky-nav-bar {
  position: sticky;
  top: 100px;
  z-index: 999;
  background: #fff;
}


.sticky-nav-bar .sticky-nav-links {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sticky-nav-bar .sticky-nav-links::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767.98px) {
  .sticky-nav-bar .nav-link-item {
    font-size: 0.875rem;
    white-space: nowrap;
    padding: 0.15rem 0;
  }
  .sticky-nav-bar .nav-link-item::after {
    bottom: -6px;
  }
}
.tour-content-overflow-visible {
  overflow: visible;
}
.align-items-flex-start { align-items: flex-start; }
.review-photo-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.aspect-ratio-4-3 {
  aspect-ratio: 4/3;
}
.border-accent-line {
  width: 60px;
}


@media (max-width: 991.98px) {
  .yacht-header-section .yacht-header-title {
    font-size: clamp(1.2rem, 4.2vw, 1.65rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .yacht-header-section .yacht-header-meta {
    line-height: 1.45;
  }
  .yacht-header-section .yacht-header-price-value {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .yacht-header-section .yacht-header-cta {
    font-size: 0.875rem;
    font-weight: 600;
  }
}
@media (max-width: 575.98px) {
  .yacht-header-section .yacht-header-actions {
    padding-top: 0.75rem;
    margin-top: 0.125rem;
    border-top: 1px solid #e9ecef;
  }
}

.yacht-date-input-readonly {
  cursor: pointer;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  font-size: 1rem;
  color: #666;
}
.yacht-date-picker-panel {
  display: none;
  z-index: 1000;
  top: 100%;
  left: 0;
  min-width: 0;
  max-width: min(100vw - 2rem, 600px);
  padding: 1rem;
  max-height: min(85vh, 520px);
  overflow-y: auto;
}
.yacht-quote-modal-picker-panel {
  display: none;
  z-index: 1050;
  max-width: 100%;
  max-height: 320px;
  overflow-y: auto;
}
.yacht-calendar-nav-btn {
  text-decoration: none;
  color: #666;
}
.yacht-calendar-dow {
  width: 14.28%;
  text-align: center;
  font-size: 0.7rem;
  color: #888;
}
.yacht-calendar-cell {
  width: 14.28%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.yacht-calendar-cell.yacht-calendar-empty {
  font-size: 0.85rem;
}
.yacht-calendar-cell.yacht-calendar-past {
  cursor: default;
}
.yacht-calendar-cell:not(.yacht-calendar-past) {
  cursor: pointer;
}
.yacht-quote-calendar-dow {
  width: 14.28%;
  text-align: center;
  font-size: 0.65rem;
  color: #888;
}
.yacht-quote-calendar-cell {
  width: 14.28%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.yacht-quote-calendar-cell.yacht-calendar-empty {
  font-size: 0.8rem;
}
.yacht-quote-calendar-cell.yacht-calendar-past {
  cursor: default;
}
.yacht-quote-calendar-cell:not(.yacht-calendar-past) {
  cursor: pointer;
}
.yacht-quote-calendar-month {
  min-width: 200px;
}
.pointer-events-none {
  pointer-events: none;
}


.navbar-brand img {
  max-width: 250px;
  height: auto;
}

@media (max-width: 767.98px) {
  #mainNavbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    grid-column: 2;
    position: static;
    transform: none;
    z-index: 1;
  }

  .navbar-brand img {
    max-width: 200px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .navbar-toggler {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    z-index: 2;
  }

  #mainNavbar .navbar-collapse {
    grid-column: 1 / -1;
    position: relative;
    z-index: 3;
  }
}


.w-56 { width: 56px; }
.h-56 { height: 56px; }
.cursor-pointer { cursor: pointer; }
.btn-hero-submit {
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .hero-search-form .search-form {
    padding-top: 0.35rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero-search-form .btn-hero-submit {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: auto !important;
    min-height: 0;
    padding: 0.35rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .hero-search-form .btn-hero-submit .bi {
    flex-shrink: 0;
    font-size: 0.95rem;
    line-height: 1;
    vertical-align: middle;
  }

  .hero-search-form .btn-hero-submit .bi.me-2 {
    margin-right: 0.35rem !important;
    margin-bottom: 0 !important;
  }
}
.date-range-input-hero {
  font-size: 1rem;
  height: auto;
  color: #666;
}
.date-range-picker-panel {
  display: none;
  z-index: 10650 !important;
  top: 100%;
  left: 0;
  min-width: 600px;
  padding: 1.5rem;
  position: absolute;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .date-range-picker-panel {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100%;
    padding: 1rem !important;
    left: 0 !important;
    right: auto;
  }
  .hero-charter-calendars.gap-4 {
    gap: 0 !important;
  }
}
.calendar-nav-btn {
  text-decoration: none;
  color: #666;
}
.deals-banner-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.firsatCardSwiper {
  min-height: 0;
}
.firsatCardSwiper .swiper-wrapper {
  align-items: stretch;
}
.firsatCardSwiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}
.firsatCardSwiper .swiper-pagination {
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 3;
}
.firsatCardSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.55;
}
.firsatCardSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.card-img-h450-placeholder { height: 450px; }
.card-img-h500-placeholder { height: 500px; }
.gap-15 { gap: 15px; }
.fav-btn-circle-sm {
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w-fit-content { width: fit-content; }
.review-star-inline { font-size: 0.9rem; }


.extra-qty-value { min-width: 24px; text-align: center; }
.booking-payment-error { display: none; }
.booking-birthday-trigger { min-width: 42px; cursor: pointer; }
.booking-birthday-native { cursor: pointer; }
.booking-calendar-icon { padding: 0.375rem 0.5rem; }
.booking-table-bank-col { width: 38%; }
.booking-table-currency-col { width: 4em; }
.booking-sidebar-image-wrap { height: 180px; }
.booking-sidebar-placeholder { display: flex; }
.booking-sidebar-placeholder.d-none { display: none !important; }
.section-icon-2rem { font-size: 2rem; }
.section-icon-3rem { font-size: 3rem; }
.booking-table-40-col { width: 40%; }


.recommended-cruise .cruise-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.recommended-cruise .cruise-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gulet-charter .guletSwiper,
.gulet-charter .guletSwiper .swiper-wrapper {
  height: auto !important;
}
.gulet-charter .guletSwiper .swiper-slide {
  height: auto !important;
}
.gulet-charter .swiper-slide > a {
  width: 100%;
  display: flex;
}
.gulet-charter .gulet-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.gulet-charter .gulet-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.feature-icon .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 20px;
}
.feature-icon .icon-wrapper .bi {
  font-size: 2.5rem;
}


.newsletter-section.bg-gradient-primary {
  background: linear-gradient(135deg, var(--main-color) 0%, #0039a8 100%);
}


.blog-section .blogSwiper,
.blog-section .blogSwiper .swiper-wrapper {
  height: auto !important;
}
.blog-section .blogSwiper .swiper-wrapper {
  align-items: stretch;
}
.blog-section .blogSwiper .swiper-slide {
  height: auto !important;
}
.blog-section .blogSwiper .swiper-slide > a {
  width: 100%;
  display: flex;
  height: 100%;
}
.blog-section .blog-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}
.blog-section .blog-card .blog-image {
  flex-shrink: 0;
  height: 250px;
}
.blog-section .blog-card .blog-image img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.blog-section .blog-card .blog-content {
  flex-shrink: 0;
  height: 9rem;
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.blog-section .blog-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  word-break: break-word;
  margin: 0;
  font-size: 1.1rem;
}


.destination-description.collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.destination-description.expanded {
  display: block;
  overflow: visible;
}

/* --- Site frontend: taşındı (inline <style> / view dosyaları) --- */

body.maintenance-page {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.maintenance-page .maintenance-container {
  text-align: center;
  color: white;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}
body.maintenance-page .maintenance-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
body.maintenance-page .maintenance-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
body.maintenance-page .maintenance-message {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2rem;
}
body.maintenance-page .maintenance-logo {
  margin-bottom: 2rem;
}
body.maintenance-page .maintenance-logo img {
  max-height: 80px;
  filter: brightness(0) invert(1);
}

body.isbank-redirect-page {
  font-family: sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: #f5f5f5;
}
body.isbank-redirect-page .box {
  text-align: center;
  padding: 2rem;
}
body.isbank-redirect-page .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ddd;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: isbank-redirect-spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes isbank-redirect-spin {
  to {
    transform: rotate(360deg);
  }
}

.dates-booking-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.tour-route-display {
  color: var(--bs-secondary-color);
}
.tour-route-line {
  border-bottom: 2px dashed var(--bs-secondary-color);
  margin: 0 0.35rem;
  display: inline-block;
}
.tour-header-reviews,
.tour-header-reviews a {
  color: var(--bs-secondary-color);
}
.tour-header-reviews a:hover {
  color: var(--bs-secondary-color);
}
.tour-rating-stars {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.tour-destinations-inline {
  font-size: 1rem;
}
.tour-destination-inline-link {
  font-weight: 500;
  color: inherit;
}
.tour-destination-inline-link:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
.tour-reviews-unified .tour-review-cards .tour-review-card:last-child {
  margin-bottom: 0 !important;
}
.tour-review-text {
  line-height: 1.55;
}

.error-404 {
  padding: 60px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.error-404 h1 {
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.error-404 h2 {
  color: #333;
}
@media (max-width: 768px) {
  .error-404 h1 {
    font-size: 5rem;
  }
  .error-404 .d-flex {
    flex-direction: column;
    width: 100%;
  }
  .error-404 .btn {
    width: 100%;
  }
}

.blog-list-header .blog-list-title {
  font-size: 2rem;
}
.article-card .object-fit-cover {
  object-fit: cover;
}
@media (min-width: 992px) {
  .article-card .card-body {
    min-height: 5rem;
  }
}

.blog-content.prose blockquote {
  border-left: 4px solid var(--bs-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
}
.blog-content.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.blog-content.prose ul,
.blog-content.prose ol {
  padding-left: 1.5rem;
}
.blog-related-section .object-fit-cover {
  object-fit: cover;
}
.blog-related-section .card .card-body {
  min-height: 4rem;
}

.dest-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .dest-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .dest-list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .dest-list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.dest-list-card-img {
  height: 200px;
  overflow: hidden;
}
.dest-list-card-img img {
  min-height: 100%;
}
.dest-list-card-badges {
  max-width: calc(100% - 1.5rem);
  z-index: 1;
}
.dest-list-card-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dest-list-card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
}
.dest-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
}
.dest-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.dest-card .card-img-wrap {
  overflow: hidden;
}
.dest-card .card-img-wrap img {
  transition: transform 0.3s ease;
  object-fit: cover;
}
.dest-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.dest-card-expand-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dest-collapse {
  transition: height 0.35s ease;
  overflow: hidden;
}
.object-fit-cover {
  object-fit: cover;
}
.destination-hero-wrap {
  display: flow-root;
}
.destination-hero-wrap .destination-hero-media {
  position: relative;
  overflow: hidden;
  background: var(--bs-light, #f8f9fa);
  border-radius: 0.75rem;
}
.destination-hero-wrap .destination-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .destination-hero-wrap .destination-hero-media {
    width: 100%;
    height: 280px;
    margin-bottom: 1.25rem;
  }
  .destination-hero-wrap .destination-hero-placeholder {
    min-height: 280px;
    height: 100%;
  }
}
@media (min-width: 992px) {
  .destination-hero-wrap .destination-hero-media {
    float: left;
    width: 40%;
    max-width: 420px;
    aspect-ratio: 4 / 3;
    margin: 0 1.75rem 1rem 0;
  }
  .destination-hero-wrap .destination-hero-placeholder {
    position: absolute;
    inset: 0;
  }
}

.yacht-date-range-picker {
  box-sizing: border-box;
}
.yacht-calendars-row {
  flex-wrap: wrap;
}
.yacht-calendar-month {
  min-width: 240px;
}
@media (max-width: 575px) {
  .yacht-date-range-picker {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 1.5rem);
    max-width: none;
  }
  .yacht-calendars-row {
    flex-direction: column;
  }
  .yacht-calendar-month {
    min-width: 0;
    width: 100%;
  }
  .yacht-calendar-grid {
    max-width: 280px;
    margin: 0 auto;
  }
}
.yacht-calendar-dow {
  font-weight: 600;
}
.yacht-calendar-cell {
  border-radius: 6px;
}
.yacht-calendar-past {
  color: #ccc;
}
.yacht-calendar-clickable:hover {
  background: #f0f0f0;
}
.yacht-calendar-selected {
  background: var(--bs-primary, #0d6efd);
  color: #fff;
  font-weight: 600;
}
.yacht-calendar-inrange {
  background: rgba(13, 110, 253, 0.15);
}

.booking-tab-locked {
  pointer-events: none;
  opacity: 0.6;
}
.booking-page-container.booking-invalid-total .booking-main-summary,
.booking-page-container.booking-invalid-total .booking-sidebar,
.booking-page-container.booking-invalid-total #booking-tab-content {
  pointer-events: none;
  opacity: 0.55;
}
.booking-kvkk-content {
  max-height: 70vh;
  overflow-y: auto;
}
.booking-kvkk-content img {
  max-width: 100%;
  height: auto;
}
.booking-phone-country {
  max-width: 180px;
}
@media (max-width: 575.98px) {
  .booking-phone-country {
    max-width: 140px;
    font-size: 0.875rem;
  }
}

:root {
  --layout-main-padding-top: 100px;
}
#content-wrap.main-content-wrap {
  padding-top: var(--layout-main-padding-top);
}
.maintenance-site-name-muted {
  opacity: 0.8;
}
.header-lang-currency-btn {
  min-height: 38px;
  line-height: 1;
}
.header-lang-flag-wrap {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
}
.header-currency-symbol-label {
  font-size: 0.95rem;
}
.footer-inline-control {
  width: auto;
}
.tour-review-avatar-fixed {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
}
.tour-star-partial span.tour-star-partial-inner {
  width: var(--tour-star-partial-width, 0%);
}
.map-embed-iframe {
  border: 0;
}
.map-embed-iframe.h-100-full {
  width: 100%;
  height: 100%;
}
.map-embed-iframe.h-400 {
  width: 100%;
  height: 400px;
}

/* Tur / yat kartı görseli — tam daire indirim rozeti (--main-color), üst % alt OFF; siyah kontür yok */
.tour-card-discount-badge {
  z-index: 3;
  pointer-events: none;
  line-height: 1;
}

.tour-card-discount-badge-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  aspect-ratio: 1 / 1;
  padding: 0.4rem 0.35rem;
  box-sizing: border-box;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.tour-card-discount-badge-pct {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.tour-card-discount-badge-off {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  opacity: 0.98;
}
