@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
.main-wrapper-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
    max-width: 500px;
    z-index: 2;
    padding: 20px 20px 20px 0px;
}

/* --- SLIDER ANA YAPI (1080x1350) --- */

.swiper {
    width: 100%;
    aspect-ratio: 1080 / 1350;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    background: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* --- VİDEO TETİKLEYİCİ --- */

.video-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--doga-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 4px solid white;
    transition: transform 0.2s;
}

.play-button i {
    font-size: 40px;
}

.play-button:hover {
    transform: scale(1.1);
}

/* --- KONTROL PANELİ (OKLAR VE NOKTALAR) --- */

.slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    position: relative;
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 20px;
    position: absolute;
    top: -77px;
    z-index: 99;
    right: 14px;
    opacity: 0;
}

.main-wrapper-banner:hover .slider-controls .nav-buttons {
    opacity: 1;
}

/* AKIŞKAN NOKTALAR */

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #bdc3c7;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 4px;
    background: var(--doga-turuncu) !important;
}

/* --- DOGA PLAYER POPUP --- */

#dogaPlayer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

#dogaPlayer.is-active {
    display: flex;
}

.player-container {
    position: relative;
    height: 84vh;
    max-width: 95vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    height: 100%;
    width: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#mainVideo {
    height: 100%;
    width: auto;
    max-width: 100%;
    border-radius: 15px;
    background: #000;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.pause-indicator {
    position: absolute;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.7);
    display: none;
    pointer-events: none;
    z-index: 2;
}

.video-wrapper.is-paused .pause-indicator {
    display: block;
}

.close-player {
    position: absolute;
    top: -10px;
    right: -45px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}


/* --- GENEL AYARLAR --- */

.tab-container-2025 {
    margin-top: 40px;
}

/* --- TAB MENÜ (Sekmeler) --- */

.tabs-on-blue {
    background: #0d47a1;
    padding: 0px 12px 0;
    --tab-fg: #e6f1ff;
    --tab-fg-hover: #ffffff;
    --tab-fg-active: #ffffff;
    --tab-underline: #7cc4ff;
    --tab-bottom: rgba(255, 255, 255, 0.18);
    margin-bottom: 20px;
    border-radius: .75rem;
}

.tabs-on-blue .nav-tabs {
    border-bottom: 1px solid var(--tab-bottom);
}

.tabs-on-blue .nav-tabs .nav-link {
    color: var(--tab-fg);
    background: transparent !important;
    border: 0 !important;
    border-radius: 0;
    position: relative;
    transition: color .2s ease;
    text-align: center;
    white-space: nowrap;
    padding: 1.1rem .75rem;
}

.tabs-on-blue .nav-tabs .nav-link:hover,
.tabs-on-blue .nav-tabs .nav-link:focus {
    color: var(--tab-fg-hover);
    text-decoration: none;
    outline: 0;
}

.tabs-on-blue .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 5px;
    background: transparent;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease, background-color .25s ease;
}

.tabs-on-blue .nav-tabs .nav-link.active,
.tabs-on-blue .nav-tabs .nav-item.show .nav-link {
    color: var(--tab-fg-active);
}

.tabs-on-blue .nav-tabs .nav-link.active::after,
.tabs-on-blue .nav-tabs .nav-item.show .nav-link::after {
    background: var(--tab-underline);
    transform: scaleX(1);
}

.tabs-on-blue .nav-tabs .nav-link:focus {
    box-shadow: 0 0 0 .2rem rgba(124, 196, 255, .35);
}

.tabs-on-blue .nav-tabs .nav-link:focus,
.tabs-on-blue .nav-tabs .nav-link:active,
.tabs-on-blue .nav-tabs .nav-link.active:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

/* --- YEDEK HERO ALANI (HTML'de d-none olan kısım) --- */

.reserve-hero {
    --blue: #1274e7;
    --coral: #f9f9f9;
    --orange: #ffffff;
}

.reserve-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.reserve-hero .layer.coral {
    position: absolute;
    inset: 0;
    background: var(--blue);
}

.text-white svg:not(.pixfort-icon) path,
.text-white svg:not(.pixfort-icon) rect,
.text-white svg:not(.pixfort-icon) circle,
.text-white svg:not(.pixfort-icon) polygon {
    fill: var(--coral) !important;
}

.reserve-hero .wave-top>path {
    fill: var(--blue) !important;
}

.reserve-hero .wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 70%;
    transform: translateX(-5%);
}

.reserve-hero .wave-bottom path {
    fill: var(--orange);
}

.reserve-hero .wave-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 210%;
    z-index: 999;
}

.reserve-hero .card {
    border-radius: .75rem;
}

.reserve-hero .badge-primary {
    background: var(--blue);
}


/* --- HİZMETLER & BENTO GRID --- */

.services-container {
    margin: 0 auto 1.25rem auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: bold;
}

.section-title .highlight {
    color: #ff6b6b;
    font-weight: 800;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: #f0f7ff;
    width: auto;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 12px 12px;
}

.service-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
}

.service-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.4;
}

.large-card {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
}

.large-card .icon-box {
    width: 80px;
    height: 80px;
    font-size: 3rem;
}

.large-card h3 {
    font-size: 1.5rem;
}

.wide-card {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
}

.highlight-border {
    border: 15px solid #86efac;
    background: #f0fdf4;
    background-color: #f0fdf4;
}



/* --- PROMO BANNER & GRID --- */

/* --- ORTAK YAPI (LAYOUT) --- */

.promo-banner {
    /* Genel yapıyı burada tutuyoruz, renkleri sildik */
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    /* Taşmaları gizle */
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-5px);
    /* Ufak bir hover efekti */
}

.promo-banner .banner-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    min-width: 60px;
    /* Büzüşmeyi engeller */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    /* Hafif buzlu cam etkisi */
}

.promo-banner .banner-content {
    flex: 1;
}

.promo-banner h4 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
}

.promo-banner p {
    margin: 0;
    opacity: 0.95;
    font-size: 1rem;
    color: #ffffff !important;
    line-height: 1.4;
}

/* --- STYLE 1: OCEAN BLUE (Güven & Bilgi) --- */

.promo-banner.style-ocean {
    background: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
    box-shadow: 0 8px 20px rgba(0, 91, 234, 0.25);
}

/* --- STYLE 2: HOT BERRY (Kampanya & Fırsat) --- */

.promo-banner.style-berry {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.25);
}

/* --- STYLE 3: ROYAL PURPLE (VIP & Sadakat) --- */

.promo-banner.style-royal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(118, 75, 162, 0.25);
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.icon-circle {
    width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

#mainTabsContent {
    margin-bottom: 120px;
}

.icon-circle-info-card {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.5rem;
    flex-direction: row;
    margin-bottom: 10px;
}

.special-request-item {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}

.header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-request-icon {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.soft-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.soft-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.soft-green {
    background: #dcfce7;
    color: #16a34a;
}

.soft-orange {
    background: #ffedd5;
    color: #ea580c;
}

.soft-teal {
    background: #ccfbf1;
    color: #0d9488;
}

.soft-red {
    background: #fee2e2;
    color: #dc2626;
}

.info-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.info-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.info-card strong {
    color: #111;
    font-weight: 600;
}

/* --- REZERVASYON CONTAINER --- */

.reservation-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-header {
    text-align: center;
    margin-bottom: 30px;
}

.reservation-header h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 800;
}

.reservation-header .highlight {
    color: #3b82f6;
}

.reservation-header p {
    color: #6b7280;
    font-size: 0.95rem;
}

.btn-md i {
    top: 0px !important;
}

/* --- SELECT2 & INPUT STYLES --- */

.select2-container {
    width: 100% !important;
    display: block;
}

.select2-container .select2-selection--single {
    height: 54px !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    background-color: #f9fafb !important;
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
    border-color: #3b82f6 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px !important;
    padding-right: 30px !important;
    color: #1f2937 !important;
    font-size: 1rem !important;
    font-weight: 500;
    line-height: normal !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    width: 100% !important;
}

.select2-selection__placeholder {
    color: #9ca3af !important;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 15px !important;
    width: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #6b7280 transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    margin-top: -2px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(180deg);
    border-color: #3b82f6 transparent transparent transparent !important;
}

.select2-dropdown {
    border: 2px solid #e5e7eb !important;
    border-top: none !important;
    border-radius: 0 0 16px 16px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    padding-top: 5px;
    overflow: hidden !important;
}

.select2-results__option {
    padding: 12px 15px !important;
    font-size: 0.95rem !important;
    color: #4b5563;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eff6ff !important;
    color: #1d4ed8 !important;
    font-weight: 600;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f3f4f6 !important;
    color: #111 !important;
    font-weight: 700;
}

.select2-search--dropdown {
    padding: 10px !important;
}

.select2-search__field {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    padding: 8px !important;
    outline: none !important;
}

.select2-search__field:focus {
    border-color: #3b82f6 !important;
}

.select2-custom-icon {
    margin-right: 10px;
    color: #9ca3af;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.select2-selection__rendered[title] .select2-custom-icon {
    color: #6b7280;
}

/* --- MİKTAR SEÇİCİ (Quantity Wrapper) --- */

.quantity-wrapper {
    position: relative;
    width: 100%;
    height: 54px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.quantity-wrapper.active {
    border-color: #3b82f6;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.qty-left {
    display: flex;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}

.quantity-wrapper .main-icon {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-right: 12px;
    flex-shrink: 0;
}

.qty-input {
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    width: 100%;
    outline: none;
    pointer-events: none;
    white-space: nowrap;
}

.qty-btn-group {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #3b82f6;
    transition: all 0.2s ease;
}

.qty-btn i {
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
}

.qty-btn:hover {
    background-color: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

.qty-btn:active {
    transform: scale(0.95);
}

/* --- ANA AKSİYON BUTONU --- */

.btn-action {
    width: 100%;
    height: 54px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0 25px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-action:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.btn-action:hover i {
    transform: translateX(4px);
}

/* --- OTEL SONUÇ KARTI --- */

.hotel-result-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hotel-result-card.open {
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.hotel-result-card .header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Badge ve Puan arası boşluk */
}

.hotel-header .accordion-indicator {
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: #ccc;
}

.hotel-header.active .accordion-indicator {
    transform: rotate(180deg);
    /* Açılınca dönme efekti */
}

.btn-add-cart {
    background-color: #10b981;
    /* Yeşil tonu (Tailwind Emerald) */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background-color: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-add-cart i {
    font-size: 1.1em;
    font-weight: bold;
}

.hotel-result-card .hotel-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    background-color: #f8f9fa;
}

.hotel-result-card .hotel-header:hover {
    background-color: #f8f9fa;
    /* Hover efekti */
}

.hotel-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
}

.hotel-location {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-location i {
    color: #3b82f6;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
}

.summary-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hotel-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.start-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.start-price-box .lbl {
    font-size: 0.75rem;
    color: #64748b;
}

.start-price-box .val {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2937;
}

.btn-toggle-rooms {
    background: #eff6ff;
    color: #2563eb;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-toggle-rooms i.arrow-icon {
    transition: transform 0.3s ease;
}

.hotel-result-card.open .btn-toggle-rooms {
    background: #2563eb;
    color: #fff;
}

.hotel-result-card.open .arrow-icon {
    transform: rotate(180deg);
}

.room-options-list {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.flex-item-list {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 20px;
}

.room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 14px 20px 14px;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 16px;
}

.room-item:last-child {
    border-bottom: none;
}

.room-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 18px;
}

.room-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.room-icon-box i {
    font-size: 1.2rem;
    color: var(--doga-m-accent);
}

.room-icon-box img {
    width: 60%;
    height: auto;
    display: block;
}

.room-icon-box.male {
    background: #e0f2fe;
    color: #0284c7;
}

.room-icon-box.female {
    background: #fce7f3;
    color: #db2777;
}

.room-icon-box.bed-twin {
    background: #ffedd5;
}

.room-details h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
}

.room-details p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.badge-tag {
    font-size: 0.7rem;
    background: #f1f5f9;
    color: #475569;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

.room-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-tag {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f2937;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
    gap: 0px;
    line-height: 1.4;
}

.price-tag small {
    font-size: 11px;
    color: var(--doga-turuncu);
}

.price-tag .currency {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-right: 3px;
}

.btn-select {
    padding: 10px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}


/* --- TALEP MODU (Request Mode) --- */

.hotel-result-card.request-mode {
    border-color: #ffedd5;
    background: #ffffff;
}

.status-label.warning {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    background: #fff7ed;
    color: #c2410c;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #ffedd5;
}

.btn-toggle-rooms.btn-request-style {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #fed7aa;
}

.hotel-result-card.open .btn-toggle-rooms.btn-request-style {
    background: #ea580c;
    color: #fff;
    border-color: #ea580c;
}

.request-form-container {
    padding: 30px 10px;
    background: #fffaf0;
    border-radius: 12px;
    margin: 20px 0;
}

.request-info-text {
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #fed7aa;
    color: #431407;
}

.request-info-text i {
    font-size: 1.5rem;
    color: #f97316;
}

.request-info-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.hotel-request-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 5px;
}

.req-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.2s;
}

.req-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.btn-submit-request {
    padding: 12px 25px;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    height: 43px;
}

.btn-submit-request:hover {
    background: #c2410c;
}


/* --- AKTİVİTE MODU (Activity Mode) --- */

.hotel-result-card.activity-mode {
    border-color: #d1fae5;
    background: #ffffff;
}

.activity-mode .hotel-location i {
    color: #059669;
}

.status-label.info {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 5px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}

.hotel-badge.activity-badge {
    background: #d1fae5;
    color: #047857;
}

.btn-toggle-rooms.btn-activity-style {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.hotel-result-card.open .btn-toggle-rooms.btn-activity-style {
    background: #059669;
    color: #fff;
    border-color: #059669;
}

.activity-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #ecfdf5;
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 15px;
}

.activity-icon-box.student {
    background: #fff7ed;
    color: #ea580c;
}

.btn-select.btn-green {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.btn-select.btn-green:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

/* --- MODERN HERO SECTION --- */

.modern-hero-section {
    padding: 0px 0 0px 0;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    padding-bottom: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 16px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
        flex-wrap: wrap;
}

.badge-season {
    background: #dbeafe;
    color: #1e40af;
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    height: 32px;
    line-height: 30px;
    border: 1px solid #e5e7eb;
}

.badge-location {
    background: #fff9f5;
    border: 1px solid #e5e7eb;
    color: var(--doga-turuncu);
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    height: 32px;
    line-height: 30px;
}

.badge-nights {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: var(--doga-gri);
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    height: 32px;
    line-height: 32px;
}

.hero-title,
.hero-title * {
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
}

.hero-title {
    display: block;
    width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 2px 0 8px 0;
    color: var(--doga-turuncu) !important;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 {
    display: block;
    width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: 1.4rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-title-3 {
    display: block;
    width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    font-size: 1.1rem;
    line-height: 1.1;
    font-weight: 600;
    margin: 2px 0 20px 0;
    color: var(--doga-gri) !important;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 500;
}

/* Vurgu alanları (Mavi background olan span) */

.hero-title span[class^="highlight-title-"] {
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    margin: 2px 0 20px 0;
    width: 100%;
    vertical-align: bottom;
    font-size: 2.4rem;
}

/* Hero Title Highlight Stilleri */

.hero-title-2 .highlight-title-red {
    background: linear-gradient(120deg, rgba(255, 204, 204, 0.4) 0%, rgba(255, 204, 204, 0.4) 100%);
    color: #cc0000;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-blue {
    background: linear-gradient(120deg, rgba(204, 229, 255, 0.4) 0%, rgba(204, 229, 255, 0.4) 100%);
    color: #004085;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-yellow {
    background: linear-gradient(120deg, rgba(255, 217, 0, 0.4) 0%, rgba(255, 217, 0, 0.4) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-orange {
    color: var(--doga-turuncu);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-nature {
    background: linear-gradient(120deg, rgba(212, 237, 218, 0.4) 0%, rgba(212, 237, 218, 0.4) 100%);
    color: #155724;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-night {
    background: linear-gradient(120deg, rgba(226, 217, 243, 0.4) 0%, rgba(226, 217, 243, 0.4) 100%);
    color: #512da8;
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 88%;
    font-weight: 800;
}

.hero-title-2 .highlight-title-blue,
.hero-title-2 .highlight-title-red,
.hero-title-2 .highlight-title-yellow,
.hero-title-2 .highlight-title-orange,
.hero-title-2 .highlight-title-nature,
.hero-title-2 .highlight-title-night {
    display: inline;
    /* inline kalsın */
    white-space: normal;
    /* satır kırılabilsin */
}

.hero-title-2 .highlight-title-blue::before,
.hero-title-2 .highlight-title-red::before,
.hero-title-2 .highlight-title-yellow::before,
.hero-title-2 .highlight-title-orange::before,
.hero-title-2 .highlight-title-nature::before,
.hero-title-2 .highlight-title-night::before {
    content: "";
}

.hero-slogan {
    font-size: 0.9rem !important;
    color: #64748b !important;
    margin-bottom: 20px;
    line-height: 1.6 !important;
    letter-spacing: -0.4px !important;
}

.hero-slider-wrapper {
    flex: 1;
    width: 45%;
    position: relative;
    /*margin-right: -100px;*/
    overflow: visible !important;
}

.hero-slide-item {
    margin: 0 10px;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.hero-slide-item.slick-center {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.hero-slide-item img {
    width: 100%;
    border-radius: 20px;
    /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);*/
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.slider-nav-buttons {
    position: absolute;
    bottom: -10px;
    left: calc(50% + -45px);
    display: flex;
    gap: 10px;
    right: auto;
}

.slider-nav-buttons button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #1f2937;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.slider-nav-buttons button:hover {
    background: #2563eb;
    color: white;
}


.hero-slick-slider .slick-list {
    padding-bottom: 60px !important;
}

.hero-title .highlight-orange {
    color: #1f2937;
    background: linear-gradient(120deg, rgba(249, 115, 22, 0.2) 0%, rgba(249, 115, 22, 0.2) 100%);
    background-repeat: no-repeat;
    background-size: 100% 35%;
    background-position: 0 85%;
    padding: 0 5px;
    margin-left: -5px;
}

/* --- GÜVEN SİNYALİ (TRUST BOX) --- */

.trust-signal-box {
    display: flex;
    align-items: flex-start;
    /* gap: 20px; */
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    flex-direction: column;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.avatar-group img:first-child {
    margin-left: 0;
}

.avatar-counter {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1f2937;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    margin-left: -12px;
    position: relative;
    z-index: 2;
}

.trust-text-content {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.trust-text-content .stars {
    color: #f59e0b;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.trust-text-content p {
    margin: 0;
    font-size: 14px !important;
    color: #4b5563;
    line-height: 1.3;
}

.trust-text-content strong {
    color: #111;
    font-weight: 700;
}

img.brand-logo-in-text {
    margin: 0 5px;
    margin-top: -10px;
}

span.trust-person {
    font-size: 20px;
    color: var(--doga-turuncu);
    font-weight: 600;
    line-height: 1;
    margin: 0 5px;
}

.trust-person-2 {
    font-size: 12px;
    color: var(--doga-mavi);
    font-weight: 600;
    line-height: 1;
}


/* --- PRICE ACTION CONTAINER --- */

.price-action-container {
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.main-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.price-block {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF5722;
    line-height: 1;
    display: flex;
    align-items: baseline;
}

.price-value .currency {
    font-size: 1rem;
    color: #FF5722;
    margin-right: 2px;
    font-weight: 600;
}

.price-value .period {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    margin-left: 5px;
}

.btn-primary-action {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.btn-primary-action i {
    font-size: 1.2rem;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.pulse-effect {
    animation: pulse-blue 2s infinite;
}

.secondary-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 540px;
    margin-top: 30px;
}

.link-item {
    font-size: 0.85rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.link-item:hover {
    color: #2563eb;
}

.link-item i {
    color: #9ca3af;
    font-size: 1rem;
}

.divider {
    color: #e5e7eb;
    font-size: 0.8rem;
}



/* --- PROGRAM DETAYLARI --- */

.program-section-compact {
    background: #f9fafb;
    padding: 30px;
    border-radius: var(--doga-radius);
}

.program-info-notice {
    background: #e0f2fe;
    color: #0369a1;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid #bae6fd;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program-info-notice i {
    font-size: 1.2rem;
}

.program-list-wrapper {
    display: flex;

}

.program-list-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    flex: 0 0 calc(25% - 12px);
    box-sizing: border-box;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.program-list-item:hover {
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.item-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nowrap-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Kaç satır sonra ... çıksın? Burayı değiştirebilirsin */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.day-tag-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.day-tag-container .ti {
    color: #2563eb;
}

.day-tag-image {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--doga-radius);
    border: 1px solid var(--doga-acik-gri-3);
}

.day-tag {
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
    flex-direction: column;
    align-content: flex-start;
    justify-content: center;
}

.day-tag .title-1 {
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.day-tag .title-2 {
    color: #0c6ea5;
    font-weight: 400;
    font-size: 16px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
}

.item-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1f2937;
}

.item-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9ca3af;
}

.details-link {
    font-size: 0.85rem;
    font-weight: 500;
    display: none;
}

.item-action i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.program-list-item:hover .item-action i {
    color: #2563eb;
    transform: translateX(3px);
}


/* --- PROGRAM MODAL --- */

.program-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

.program-modal-overlay.active {
    display: flex;
}

.program-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    margin: 20px auto;
    height: auto !important;
    max-height: none !important;
    display: block;
    flex: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

.modal-body-layout {
    display: flex;
    height: 500px;
}

.modal-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.day-indicator {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 800;
    color: #2563eb;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.modal-text-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-text-col h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-desc {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.modal-desc::-webkit-scrollbar {
    width: 6px;
}

.modal-desc::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.modal-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.nav-btn {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.nav-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- GALERİ STRIP --- */

.gallery-strip-section {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.gallery-scroll-wrapper {
    display: grid;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-strip-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-strip-item:hover img {
    transform: scale(1.1);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.hover-overlay i {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.gallery-strip-item:hover .hover-overlay {
    opacity: 1;
}

.view-more-card .more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(2px);
}

.view-more-card .count {
    font-size: 2rem;
    font-weight: 800;
}

.view-more-card .text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* --- OTEL KARTI --- */

.hotel-info-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.hotel-info-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.hotel-cover-img {
    width: 40%;
    position: relative;
    min-height: 250px;
}

.hotel-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-cover-img .hotel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hotel-details {
    width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-header-row {
    margin-bottom: 10px;
}

.hotel-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0;
}

.hotel-location {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    margin-top: 5px;
}

.hotel-desc {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.amenity-item {
    background: #f3f4f6;
    color: #374151;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.amenity-item i {
    color: #2563eb;
}

.hotel-actions {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.btn-hotel-gallery {
    flex-grow: 1;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-hotel-gallery:hover {
    background: #2563eb;
    color: #fff;
}

.btn-hotel-map {
    width: auto;
    padding: 0 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    flex-shrink: 0;
    height: 50px;
}

.btn-hotel-map:hover {
    background: #f9fafb;
    color: #1f2937;
    border-color: #d1d5db;
}


/* --- SECTION HEADER --- */

.content-section-header {
    border-left: 5px solid #2563eb;
    padding-left: 20px;
    margin-bottom: 30px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-section-header .section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0 5px 0;
    line-height: 1.2;
    text-align: left;
}

.content-section-header .section-desc {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}


/* --- ALERTS GRID --- */

.alerts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 20px;
}

.alert-card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-left: 6px solid transparent;
    background: #fff;
    transition: transform 0.2s;
}

.alert-card:hover {
    transform: translateX(5px);
}

.alert-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.alert-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

.alert-content strong {
    font-weight: 700;
    text-decoration: underline;
}

.alert-card.danger-card {
    background: #fef2f2;
    border-left-color: #ef4444;
    border: 1px solid #fee2e2;
    border-left-width: 6px;
}

.danger-card .alert-icon {
    background: #fee2e2;
    color: #dc2626;
}

.danger-card h4 {
    color: #b91c1c;
}

.alert-card.warning-card {
    background: #fff7ed;
    border-left-color: #f97316;
    border: 1px solid #ffedd5;
    border-left-width: 6px;
}

.warning-card .alert-icon {
    background: #ffedd5;
    color: #ea580c;
}

.warning-card h4 {
    color: #c2410c;
}

.alert-card.info-card {
    background: #eff6ff;
    border-left-color: #3b82f6;
    border: 1px solid #dbeafe;
    border-left-width: 6px;
}

.info-card .alert-icon {
    background: #dbeafe;
    color: #2563eb;
}

.info-card h4 {
    color: #1e40af;
}

.alert-card.dark-card {
    background: #f9fafb;
    border-left-color: #374151;
    border: 1px solid #e5e7eb;
    border-left-width: 6px;
}

.dark-card .alert-icon {
    background: #e5e7eb;
    color: #1f2937;
}

.dark-card h4 {
    color: #111;
}

/* --- FİYATLANDIRMA --- */

.pricing-filter-bar {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    position: relative;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    min-width: 200px;
}

.filter-item i {
    color: #64748b;
    font-size: 1.1rem;
}

.filter-select {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 10px;
    font-size: 0.9rem;
    color: #334155;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-reset {
    background: transparent;
    border: none;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
}

.btn-reset:hover {
    background: #fee2e2;
    border-radius: 8px;
}

.pricing-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-card-row {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 26px 20px;
    transition: all 0.2s ease;
    position: relative;
}

.price-card-row:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
    z-index: 2;
}

.pc-date-col {
    flex: 1.2;
    padding-right: 20px;
    border-right: 1px solid #f1f5f9;
}

.pc-hotel-col {
    flex: 2;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.pc-action-col {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.pc-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.pc-badge.red {
    background: #fef2f2;
    color: #dc2626;
}

.pc-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.pc-day {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 2px;
}

.pc-hotel-icon {
    width: 45px;
    height: 45px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pc-hotel-icon.blue {
    background: #e0f2fe;
    color: #0284c7;
}

.pc-hotel-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
}

.badge-amenity {
    font-size: 0.75rem;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    color: #475569;
}

.pc-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pc-price-group small {
    font-size: 0.75rem;
    color: #9ca3af;
    display: block;
    margin-top: 2px;
}

.pc-final-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1f2937;
}

.pc-final-price .curr {
    font-size: 1rem;
    margin-left: 2px;
}

.price-container {
    display: flex;
    gap: 20px;
    align-content: center;
    align-items: center;
}

.pc-btn-container {
    display: flex;
    gap: 14px;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.btn-buy-now {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.btn-buy-now:hover {
    background: #1d4ed8;
    transform: translateX(2px);
}

.best-deal-card {
    border: 2px solid #22c55e !important;
    background: #f0fdf4 !important;
    overflow: hidden;
}

.ribbon-best {
    position: absolute;
    top: 0;
    left: 0;
    background: #22c55e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.sold-out-card {
    border: 2px solid #dc2626 !important;
    background: #fef2f2 !important;
    overflow: hidden;
}

.ribbon-sold-out {
    position: absolute;
    top: 0;
    left: 0;
    background: #dc2626;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.last-rooms-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 5px;
    border: 1px solid #fecaca;
    animation: pulse-red 2s infinite;
}

.single-quota {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 5px;
    border: 1px solid #dbeafe;
    animation: pulse-red 2s infinite;
}

.badge-location-price {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    margin-top: 0;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Ön Ödeme Kutusu */

.pc-prepayment-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #f0f9ff;
    border: 1px dashed #0ea5e9;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.2s;
    align-content: center;
    gap: 4px;
}

.price-card-row:hover .pc-prepayment-box {
    background: #e0f2fe;
    transform: scale(1.03);
}

.pre-label {
    font-size: 0.65rem;
    color: #0369a1;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    text-align: center;
}

.pre-price {
    font-size: 1.15rem;
    color: #0ea5e9;
    font-weight: 800;
    line-height: 1;
    width: 100px;
    text-align: center;
}

.pre-curr {
    font-size: 0.8rem;
    margin-left: 1px;
}

.trend-indicator {
    font-size: 0.7rem;
    color: #ea580c;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.trend-indicator i {
    animation: move-up 1s infinite alternate;
}

@keyframes move-up {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-2px);
    }
}

.installment-link {
    font-size: 0.75rem;
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px dashed #2563eb;
    display: inline-block;
    margin-top: 2px;
    cursor: pointer;
}

.program-modal-content.taksit-mode {
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.taksit-modal-body {
    padding: 30px;
    overflow-y: auto;
}

.taksit-header {
    text-align: center;
    margin-bottom: 25px;
}

.taksit-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.installment-table {
    width: 100%;
    margin-bottom: 0;
}

.installment-table th {
    background: #f9fafb;
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.installment-table td {
    padding: 12px;
    font-size: 0.95rem;
    color: #334155;
    vertical-align: middle;
    border-top: 1px solid #f1f5f9;
}

.installment-table tr.highlight-row td {
    background: #eff6ff;
    color: #1e40af;
}

.taksit-footer {
    margin-top: 20px;
    background: #fff7ed;
    color: #c2410c;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid #fed7aa;
    display: flex;
    gap: 8px;
}

.no-results-box {
    text-align: center;
    padding: 40px;
    background: #f9fafb;
    border-radius: 12px;
    color: #64748b;
}


/* --- EKSTRALAR --- */

.extras-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.extra-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
}

.extra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.extra-card.active {
    border-color: #22c55e;
    background: #f0fdf4;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.extra-img-box {
    position: relative;
    overflow: hidden;
}

.extra-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.extra-card:hover .extra-img-box img {
    transform: scale(1.05);
}

.extra-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.extra-badge.popular {
    background: #f59e0b;
}

.extra-badge.limited {
    background: #ef4444;
}

.extra-badge.sold_out {
    background: #ef4444;
}

.extra-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.extra-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Kartların yan yana eşit boyda olması için kritik */
    min-height: 160px;
    /* Kartın çok basık durmaması için bir alt limit */
    gap: 10px;
}

/* Butonu en aşağıya sabitleyen sihirli dokunuş */

.extra-info .doga-btn {
    margin-top: auto;
    width: 100%;
    /* doga-btn-block özelliğini CSS ile sağlama alalım */
}

.extra-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.extra-info p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 0px;
    flex-grow: 0;
}

.extra-info small {
    line-height: 1.5;
    margin-top: 10px;
    flex-grow: 0;
}

.extra-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.extra-price small {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
}

.extra-price span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1f2937;
}

.btn-toggle-extra {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #2563eb;
    background: transparent;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 100px;
}

.btn-toggle-extra .state-added {
    display: none;
}

.btn-toggle-extra:hover {
    background: #eff6ff;
}

.extra-card.active .btn-toggle-extra {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.extra-card.active .btn-toggle-extra .state-add {
    display: none;
}

.extra-card.active .btn-toggle-extra .state-added {
    display: inline-block;
}

.extras-summary-note {
    background: #f8fafc;
    color: #64748b;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    gap: 10px;
    align-items: center;
    border: 1px solid #e2e8f0;
}

.extra-card.icon-mode .extra-icon-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    font-size: 3.5rem;
    color: #64748b;
    position: relative;
}

.extra-icon-box.blue-theme {
    background: #eff6ff;
    color: #2563eb;
}

.extra-icon-box.orange-theme {
    background: #fff7ed;
    color: #ea580c;
}

.extra-card.discount-type {
    border: 1px dashed #16a34a;
    background: #f0fdf4;
}

.discount-type .extra-icon-box {
    background: #dcfce7;
    color: #16a34a;
}

.ribbon-discount {
    position: absolute;
    top: 0;
    left: 0;
    background: #16a34a;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-bottom-right-radius: 12px;
    z-index: 5;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge-bestseller {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #111;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #e5e7eb;
}

.badge-bestseller i {
    color: #f59e0b;
}

.extra-price.discount span {
    color: #16a34a;
}

.extra-card.discount-type.active {
    background: #dcfce7;
    border-style: solid;
    border-color: #15803d;
}

.extra-card.icon-mode:not(.discount-type).active {
    border-color: #2563eb;
    background: #eff6ff;
}

.extra-small-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 0px !important;
    border: 1px solid #fecaca;
    animation: pulse-red 2s infinite;
}

.extra-small-note-2 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-top: 5px;
    border: 1px solid #dbeafe;
    animation: pulse-red 2s infinite;
}

/* --- SSS (FAQ) --- */

.faq-search-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 55px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.faq-search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.faq-search-input:focus+.search-icon,
.faq-search-wrapper:focus-within .search-icon {
    color: #2563eb;
}

.faq-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08);
}

.faq-header {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.faq-item.active .faq-header {
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.faq-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.faq-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.faq-icon.green {
    background: #f0fdf4;
    color: #16a34a;
}

.faq-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.faq-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.faq-question {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    flex-grow: 1;
}

.faq-item.active .faq-question {
    color: #2563eb;
}

.faq-toggle {
    color: #9ca3af;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-body {
    display: none;
    padding: 20px 20px 20px 71px;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-no-result {
    text-align: center;
    padding: 40px;
    background: #f9fafb;
    border-radius: 12px;
    color: #64748b;
}

.faq-no-result i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}

.btn-clear-search {
    margin-top: 15px;
    background: #fff;
    border: 1px solid #d1d5db;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #4b5563;
}

.btn-clear-search:hover {
    border-color: #2563eb;
    color: #2563eb;
}


/* --- SLIM PUANLAMA --- */

.satisfaction-slim-section {
    padding: 0 0;
    background: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.slim-score-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.slim-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.slim-badge {
    background: #1f2937;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 12px;
}

.slim-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 4px;
}

.slim-text .stars {
    color: #f59e0b;
    font-size: 0.8rem;
}

.slim-text span {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.mobile-arrow {
    color: #cbd5e1;
}

.slim-details {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    padding: 10px 20px;
    border-radius: 12px;
    flex-direction: column;
}

.slim-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 600;
    width: 100%;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.slim-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.slim-bar .fill {
    height: 100%;
    background: #2563eb;
    border-radius: 3px;
}

.slim-metric .slim-title {
    width: 180px;
}

/* --- MOBILE DOCK --- */

.mobile-smart-dock {
    gap: 10px;
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
}

.dock-item {
    flex: 0 0 auto;
}

.btn-dock-icon {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    min-width: 55px;
}

.btn-dock-icon span {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.1rem;
    color: #334155;
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.icon-wrapper .dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border: 1px solid #fff;
    border-radius: 50%;
}

.icon-wrapper.star-theme {
    background: #fffbeb;
    color: #f59e0b;
    border: 1px solid #fcd34d;
}

.score-pill {
    position: absolute;
    top: -8px;
    right: -18px;
    background: #f59e0b;
    color: #fff !important;
    font-size: 0.6rem;
    padding: 1px 4px;
    border-radius: 4px;
    font-weight: 700;
}

.mobile-btn-choose-date {
    font-size: 12px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    gap: 10px;
}

.btn-dock-book {
    height: 46px;
    padding: 0 15px;
    color: #ffffff;
}
.btn-dock-book:hover {
    color: #ffffff;
}

.book-content {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 6px;
}

.book-content .lbl {
    font-size: 0.6rem;
    opacity: 0.8;
}

.book-content .val {
    font-size: 1rem;
    font-weight: 800;
}

.btn-text {
    font-size: 0.9rem;
}

.rating-modal-body {
    text-align: center;
    padding-top: 10px;
}

.rating-big-score {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 20px;
}

.rating-big-score .stars {
    font-size: 1rem;
    color: #f59e0b;
    margin: 5px 0;
}

.rating-big-score small {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.rating-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
}

.r-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 120px;
    text-align: left;
    font-weight: 600;
    color: #374151;
}

.r-label i {
    color: #2563eb;
}

.r-bar {
    flex-grow: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.r-bar .fill {
    height: 100%;
    background: #2563eb;
    border-radius: 4px;
}

.r-val {
    font-weight: 800;
    width: 30px;
    text-align: right;
}

.rating-note {
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #64748b;
}

.rating-link-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

a.what-is-this-link.open-explanation-modal {
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
    flex-direction: row;
    color: var(--doga-m-accent);
}

body.modal-open-noscroll {
    overflow: hidden !important;
}

body.modal-open-lock {
    overflow: hidden !important;
    width: 100%;
}


.mobile-smart-dock {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 10px 15px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.btn-dock-support {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 50px;
    cursor: pointer;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 600;
}

.support-avatar {
    position: relative;
    margin-bottom: 2px;
}

.support-avatar img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.online-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border: 1px solid #fff;
    border-radius: 50%;
}

.dock-action {
    flex-grow: 1;
}

.btn-dock-book {
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s;
}

.btn-dock-book:active {
    transform: scale(0.98);
}

.book-price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.book-price small {
    font-size: 0.65rem;
    opacity: 0.8;
    margin-bottom: 2px;
}

.book-price span {
    font-size: 1.1rem;
    font-weight: 800;
}

.book-label {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.support-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: flex-end;
}

.support-menu-overlay.active {
    display: flex;
    animation: fadeIn 0.2s;
}

.support-menu-content {
    background: #fff;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 25px;
    padding-bottom: calc(25px + env(safe-area-inset-bottom));
    animation: slideUpMenu 0.3s;
}

@keyframes slideUpMenu {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.menu-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
}

.close-menu {
    background: #f1f5f9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.menu-item-dock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 15px 10px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
    line-height: 1.3;
}

.menu-item-dock i {
    font-size: 1.5rem;
}

.menu-item-dock.whatsapp i {
    color: #25d366;
}

.menu-item-dock.phone i {
    color: #2563eb;
}

.menu-item-dock.chat i {
    color: #f59e0b;
}



.back_to_top,
#chatToggle {
    display: none !important;
}

/* --- EXPLANATION MODAL (Bu Puan Nedir) --- */

.program-modal-content.explanation-mode {
    background: #fff;
    width: 100%;
    max-width: 600px;
    margin: auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    height: auto;
    position: relative;
}

.explanation-header {
    flex: 0 0 auto;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    z-index: 10;
}

.explanation-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
}

.close-explanation {
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4b5563;
    transition: all 0.2s;
}

.close-explanation:hover {
    background: #ef4444;
    color: #fff;
}

.explanation-body {
    flex: 1 1 auto;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.explanation-body::-webkit-scrollbar {
    width: 5px;
}

.explanation-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.explanation-body::-webkit-scrollbar-track {
    background: transparent;
}

.intro-box-yellow {
    background: #fffbeb;
    border-radius: 12px;
    padding: 15px 20px;
    position: relative;
    margin-bottom: 30px;
    display: flex;
}

.intro-border {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    background: #f59e0b;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.intro-box-yellow p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
    padding-left: 10px;
}

.timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-step {
    display: flex;
    gap: 15px;
    position: relative;
    padding-bottom: 30px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.step-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.t-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    border: 4px solid #fff;
}

.t-line {
    flex-grow: 1;
    width: 2px;
    background: #e2e8f0;
    margin-top: -5px;
    margin-bottom: -5px;
}

.step-content-col {
    padding-top: 5px;
}

.step-content-col h5 {
    margin: 0 0 5px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
}

.step-content-col p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.mock-survey-bar {
    background: #525252;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.success-box-green {
    margin-top: 30px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.success-icon i {
    font-size: 1.8rem;
    color: #16a34a;
}

.success-box-green p {
    margin: 0;
    font-size: 0.9rem;
    color: #166534;
    line-height: 1.4;
}


.program-modal-overlay,
.support-menu-overlay,
#taksitCustomModal,
#scoreExplanationModal,
#programModal {
    z-index: 2147483647 !important;
    /* Tarayıcıların desteklediği en yüksek tamsayı */
}

/* --- ESKİ KATILIMCI FİYAT ETİKETİ --- */

.alumni-price-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fffbeb;
    /* Çok açık sarı zemin */
    color: #b45309;
    /* Koyu altın rengi yazı */
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-top: 5px;
    border: 1px solid #fcd34d;
    /* Altın sarısı çerçeve */
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.alumni-price-tag strong {
    font-weight: 800;
    color: #d97706;
    /* Fiyatı biraz daha vurgulu yap */
    text-decoration: underline;
    /* Tıklanabilir hissi ver */
}

.alumni-price-tag i {
    font-size: 0.9rem;
    color: #f59e0b;
    /* İkon rengi */
}

/* Hover Efekti */

.alumni-price-tag:hover {
    background: #fef3c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
    border-color: #f59e0b;
}


/* --- KAMPANYA KARTLARI (Campaign Cards) --- */

.campaigns-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Yan yana iki eşit kutu */
    gap: 20px;
    margin-bottom: 30px;
}

.campaign-card {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.campaign-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* --- 1. Kart: Eski Katılımcı (Gold/Premium Tema) --- */

.campaign-card.alumni-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
    border-color: #fcd34d;
}

.alumni-card .cmp-icon-box {
    background: #f59e0b;
    color: #fff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.alumni-card .cmp-badge {
    background: #fef3c7;
    color: #b45309;
    border: 1px solid #fcd34d;
}

/* --- 2. Kart: Referans (Mor/Hediye Tema) --- */

.campaign-card.referral-card {
    background: linear-gradient(135deg, #f3e8ff 0%, #fff 100%);
    border-color: #d8b4fe;
}

.referral-card .cmp-icon-box {
    background: #9333ea;
    color: #fff;
    box-shadow: 0 4px 10px rgba(147, 51, 234, 0.3);
}

.referral-card .cmp-badge {
    background: #f3e8ff;
    color: #7e22ce;
    border: 1px solid #d8b4fe;
}

/* --- İçerik Detayları --- */

.cmp-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cmp-content {
    flex-grow: 1;
}

.cmp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.cmp-header h5 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1f2937;
}

.cmp-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.campaign-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* MOBİL UYUM */


/* --- MİNİ KAMPANYA BUTONLARI --- */

.mini-campaigns-row {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mini-cmp-item {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    flex: 0 0 calc(50% - 5px);
    box-sizing: border-box;
}

.mini-cmp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Renk Temaları */

.mini-cmp-item.alumni {
    background: #fffbeb;
    border-color: #fcd34d;
}

.mini-cmp-item.alumni:hover {
    background: #fef3c7;
}

.mini-cmp-item.alumni .mc-icon {
    background: #f59e0b;
    color: #fff;
}

.mini-cmp-item.referral {
    background: #faf5ff;
    border-color: #e9d5ff;
}

.mini-cmp-item.referral:hover {
    background: #f3e8ff;
}

.mini-cmp-item.referral .mc-icon {
    background: #a855f7;
    color: #fff;
}

/* İçerik Stilleri */

.mc-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-grow: 1;
}

.mc-title {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
}

.mc-val {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1f2937;
}

.mc-arrow {
    font-size: 0.8rem;
    color: #9ca3af;
    opacity: 0.7;
}



/* --- KAMPANYA MODAL İÇERİĞİ --- */

.campaign-detail-box {
    padding: 5px 0;
}

.campaign-divider {
    border: 0;
    border-top: 1px dashed #e5e7eb;
    margin: 25px 0;
}

.cd-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cd-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.cd-title h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.cd-title span {
    font-size: 0.85rem;
    color: #6b7280;
}

.cd-badge {
    margin-left: auto;
    background: #fff7ed;
    color: #c2410c;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #fed7aa;
    white-space: nowrap;
}

.cd-badge.purple {
    background: #f3e8ff;
    color: #7e22ce;
    border-color: #d8b4fe;
}

/* Alumni Tema */

.alumni-theme .cd-icon {
    background: #fef3c7;
    color: #d97706;
}

/* Referral Tema */

.referral-theme .cd-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.cd-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 10px;
}

.cd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cd-list li {
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-list li i {
    color: #16a34a;
    font-size: 1.1rem;
}

/* Referans Grid */

.ref-grid {
    display: flex;
    gap: 15px;
    background: #f9fafb;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    border: 1px solid #f3f4f6;
}

.ref-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ref-item .lbl {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 2px;
}

.ref-item strong {
    color: #1f2937;
    font-size: 0.95rem;
}

.small-note {
    font-size: 0.8rem !important;
    color: #9ca3af !important;
    margin-top: 10px;
}

/* --- PRICE LABEL VE TOOLTIP STİLLERİ --- */

.price-label-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    /* Başlık ile ikon arası mesafe */
    position: relative;
    z-index: 5;
    /* Tooltip'in üstte görünmesi için */
}

.price-info-icon {
    font-size: 0.9rem;
    color: #9ca3af;
    /* Açık gri ikon rengi */
    cursor: help;
    /* Fare imlecini yardım işaretine çevir */
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}

.price-info-icon:hover {
    color: #2563eb;
    /* Hover'da maviye dönsün */
}

.tooltipCss {
    font-size: 0.9rem;
    color: #9ca3af;
    /* Açık gri ikon rengi */
    cursor: help;
    /* Fare imlecini yardım işaretine çevir */
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
}

/* Tooltip Kutusu (CSS ile oluşturulur) */

.tooltipCss::before {
    content: attr(data-tooltip);
    /* HTML'deki data-tooltip içeriğini alır */
    position: absolute;
    bottom: 100%;
    /* İkonun üstünde görünmesi için */
    left: 50%;
    transform: translateX(-50%);
    /* Gözden kaybolma ayarları */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    /* Kutu Stili */
    background: #fff;
    color: #1f2937;
    border: 1px solid #fcd34d;
    /* Altın sarısı ince çerçeve */
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    pointer-events: none;
    /* Üzerine gelindiğinde kapanmaması için */
}

/* Tooltip Üçgeni (Ok) */

.tooltipCss::after {
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #fcd34d transparent transparent transparent;
    /* Üçgenin rengi ve yönü */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

/* Hover'da Göster */

.tooltipCss:hover::before,
.tooltipCss:hover::after {
    opacity: 1;
    visibility: visible;
}

.gallery-title {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 18px;
}

/* header ve menü  */

/* --- 1. ANA HEADER YAPISI --- */

#main-header {
    position: sticky;
    /* Sayfayı aşağı kaydırınca üstte sabit kalır */
    top: 0;
    z-index: 1050;
    /* Diğer her şeyin üstünde olması için */
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Zarif bir gölge */
}

/* --- 2. ÜST BİLGİ ÇUBUĞU (TOP BAR) --- */

#top-info-bar {
    background: #f8fafc;
    /* Açık gri zemin */
    padding: 4px 0;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Belge Metni */

.info-certificate {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Dil Seçenekleri Switch */

.top-lang-switch a {
    color: #6b7280;
    text-decoration: none;
    margin-left: 10px;
    transition: color 0.2s;
}

/* Aktif Dil */

.top-lang-switch a.active {
    font-weight: 700;
    color: #1f2937;
    /* Koyu renk vurgusu */
}

/* RESPONSIVE IPUCU */



.alert {
    border-radius: 16px;
}

/* Tabler Dahil/Hariç Grid */

.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Sütunlu yapı */
    gap: 12px;
}

.inclusion-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    border: 1px solid #edf2f7;
    transition: all 0.2s ease;
}

.inclusion-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

/* --- Genişlik Opsiyonları --- */

.inclusion-card.full-width {
    grid-column: span 2;
}

.inclusion-card.half-width {
    grid-column: span 1;
}

.inclusion-card ul {
    list-style-type: circle;
    padding: 0px 18px 0px 18px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.inclusion-card ul li {
    font-size: 14px;
    font-style: italic;
}


.highlight-success {
    border: 2px solid #38c172;
    background: #f1fcf5;
}

/* İkon Kutuları */

.inc-icon {
    width: auto;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 15px;
    flex-shrink: 0;
    min-width: 48px;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Arka Plan Renkleri (Hafif Pastel) */

.bg-light-blue-inclusion {
    background-color: #e3f2fd;
    color: #1976d2;
}

.bg-light-green-inclusion {
    background-color: #e8f5e9;
    color: #38c172;
}

.bg-light-orange-inclusion {
    background-color: #fff3e0;
    color: #f57c00;
}

.bg-light-purple-inclusion {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.bg-light-cyan-inclusion {
    background-color: #e0f7fa;
    color: #0097a7;
}

.bg-light-gray-inclusion {
    background-color: #f5f5f5;
    color: #616161;
}

.bg-light-teal-inclusion {
    background-color: #e0f2f1;
    color: #00796b;
}

.bg-light-indigo-inclusion {
    background-color: #e8eaf6;
    color: #3f51b5;
}

.bg-light-indigo-promo-banner {
    background-color: #e8eaf6;
    color: #3f51b5;
}

/* Yazı Detayları */

.inc-text h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #2d3748;
}

.inc-text p {
    font-size: 14px !important;
    color: #718096 !important;
    margin-bottom: 0;
    line-height: 1.4 !important;
    margin-top: 3px;
}

.important-information-box {
    background-color: #e3f2fd;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #0d47a1;
    border-left-width: 6px;
    margin-top: 20px;
}

/* Dahil Olmayanlar */

.exclusion-box {
    background: #fef2f2;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border: 1px solid #fee2e2;
    border-left-width: 6px;
}

.exclusion-title {
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.exclusion-list li {
    padding: 0px 0;
    color: #4a5568;
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.exclusion-list li:last-child {
    border-bottom: none;
}

.exclusion-list li i {
    margin-right: 8px;
    margin-top: 4px;
    color: #a0aec0;
}

.exclusion-list li em {
    font-weight: 300;
    color: #767676;
}

/* Kampanya Banner */

/* Ana İskelet */

.promo-banner-inclusion {
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    margin-top: 16px;
}

/* 1. Mavi (Dalış & Deniz Temalı) */

.promo-blue {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

/* 2. Yeşil (Doğa & Orman Temalı - Başarı) */

.promo-green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 15px rgba(56, 239, 125, 0.2);
}

/* 3. Turuncu (Gün Batımı & Enerji - Fırsat) */

.promo-orange {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    box-shadow: 0 4px 15px rgba(245, 175, 25, 0.2);
}

/* 4. Indigo/Koyu (Premium & Gece - Şık) */

.promo-dark {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    box-shadow: 0 4px 15px rgba(26, 32, 44, 0.2);
}

/* İkon İçin Ufak Bir Dokunuş */

.promo-banner-inclusion i {
    font-size: 1.4rem;
    margin-right: 12px;
    opacity: 0.9;
}

.slogan-1234 {
    display: flex;
    text-align: left;
    padding: 0.75rem 0 0 0;
    width: 100%;
    color: var(--doga-turuncu);
    gap: 6px;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.slogan-1234 span {
    font-size: 12px;
}

.doga-modal__body h2,
.doga-modal__body h3,
.doga-modal__body h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--doga-mavi);
}

.doga-modal__body ul {
    list-style-type: circle;
    padding: 0px 0px 0px 16px;
}

.doga-modal__body ul li {
    font-size: 1rem;
    line-height: 1;
    margin: 0px;
    padding: 5px 0px 5px 0px;
}

.doga-modal__body ul li p {
    padding: 0px;
    margin: 0px 0px 8px 0px;
}

.mobile-package-name {
    flex: 1;
    z-index: 2;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    display: none;
}

.faq-body ul {
    list-style: circle;
    padding: 0px 0px 0px 18px;
}

@media (max-width: 1199.80px) {
    .main-wrapper-banner{
        max-width: 380px;
    }
}

@media (max-width: 992px) {
    .gallery-scroll-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .main-wrapper-banner {
        max-width: 100%;
        padding: 14px 8%;
    }

    .hero-title{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .hero-title span[class^="highlight-title-"]{
        margin: 2px 0 10px 0;
        width: 100%;
        vertical-align: bottom;
        font-size: 1.9em;
    }
    .hero-slogan{
        margin-bottom:0px;
    }

    .rank-math-breadcrumb{
        display: none;
    }
    .mobile-package-name {
        display: block;
    }

    .mobile-hidden-992{
        display: none !important;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    .hero-slider-wrapper {
        width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .large-card,
    .wide-card {
        grid-column: span 3;
        grid-row: auto;
    }

    .price-card-row {
        display: grid;
        align-items: center;
        transition: all 0.2s ease;
        position: relative;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
        justify-content: center;
        gap: 14px;
    }
    .pc-date-col {
        margin-bottom: 10px;
        text-align: center;

        padding-right: 0;
        border-right: none;
        text-align: center;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 13px;
    }
    .pc-action-col, .pc-hotel-col{
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hotel-request-form .form-row {
        grid-template-columns: 1fr;
    }
    .btn-submit-request {
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .alert-card {
        padding: 15px;
        gap: 15px;
    }
    .alert-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    .alert-content h4 {
        font-size: 1rem;
    }
    .alert-content p {
        font-size: 0.9rem;
    }
    .inclusion-grid {
        grid-template-columns: 1fr;
        /* Mobilde her şey tek satır */
    }
    .inclusion-card.full-width,
    .inclusion-card.half-width {
        grid-column: span 1;
    }
    #top-info-bar .container {
        justify-content: flex-end !important;
    }
    .campaigns-grid-container {
        grid-template-columns: 1fr;
        /* Mobilde alt alta */
        gap: 15px;
    }
    .campaign-card {
        padding: 15px;
    }
    .cmp-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .content-section-header {
        border-left-width: 4px;
        padding-left: 15px;
        margin-bottom: 20px;
    }
    .content-section-header .section-title {
        font-size: 1.25rem;
    }
    .content-section-header .section-desc {
        font-size: 0.85rem;
    }
    .hotel-info-card {
        flex-direction: column;
    }
    .hotel-cover-img {
        width: 100%;
        height: 200px;
        min-height: auto;
    }
    .hotel-details {
        width: 100%;
        padding: 20px;
    }
    .hotel-title {
        font-size: 1.2rem;
    }
    .hotel-amenities {

        padding-bottom: 5px;
        margin-left: -5px;
        margin-right: -5px;
    }
    .amenity-item {
        flex-shrink: 0;
    }
    .gallery-strip-item {
        flex: 0 0 160px;
        height: 120px;
    }
    .item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .divider {
        display: none;
    }
    .item-title {
        font-size: 0.95rem;
    }
    .modal-body-layout {
        flex-direction: column;
        height: auto;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-image-col {
        height: 200px;
        flex: none;
    }
    .modal-text-col {
        padding: 20px;
        flex: none;
    }
    .modal-text-col h3 {
        font-size: 1.4rem;
    }
    .trust-signal-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }
    .details-link {
        display: block;
    }
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    .room-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        background: #f8fafc;
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 15px;
    }
    .room-action {
        width: 100%;
        justify-content: space-between;
        margin-top: 5px;
        border-top: 1px solid #e2e8f0;
        padding-top: 15px;
    }
    .faq-header {
        padding: 15px;
        gap: 10px;
    }
    .faq-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .faq-question {
        font-size: 0.95rem;
    }
    .faq-body {
        padding: 15px 15px 15px 15px;
    }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .large-card,
    .wide-card {
        grid-column: span 2;
        grid-row: auto;
    }

    .mobile-highlight {
        background: none !important;
        box-shadow: none !important;
        padding: 0px !important;
    }

    .program-section-compact {
        background: transparent;
        padding: 0;
        border-radius: 0px;
    }


    .pricing-filter-bar {
        gap: 10px;
    }
    .filter-item {
        min-width: 100%;
    }
    .price-card-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .pc-date-col,
    .pc-hotel-col,
    .pc-action-col {
        width: 100%;
        border: none;
        padding: 0;
    }
    .pc-hotel-col {
        border-top: 1px solid #f1f5f9;
        border-bottom: 1px solid #f1f5f9;
        padding: 15px 0;
    }
    .pc-action-col {
        justify-content: space-between;
    }
    .program-modal-content.taksit-mode {
        width: 95%;
    }
    .program-modal-content,
    .program-modal-content.explanation-mode,
    .program-modal-content.taksit-mode {
        height: auto !important;
        max-height: 85vh !important;
        display: flex;
        flex-direction: column;
    }
    .explanation-body,
    .taksit-modal-body,
    .modal-desc {
        flex: 1;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
        min-height: 0;
        padding-bottom: 50px;
    }
    .explanation-header,
    .taksit-header {
        flex-shrink: 0;
    }

    #scroll-top,
    .scroll-to-top,
    .back-to-top {
        display: none !important;
    }
    .grecaptcha-badge {
        display: none !important;
    }
    #fc_frame,
    .fb_dialog,
    iframe[title="chat"] {
        bottom: 80px !important;
    }
    body {
        padding-bottom: 80px;
    }

    .program-modal-content.explanation-mode {
        height: 80vh !important;
        display: flex;
        flex-direction: column;
        margin-bottom: env(safe-area-inset-bottom);
    }
    .explanation-body {
        flex: 1 1 auto;
        height: 100%;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 80px;
    }
    .explanation-header {
        flex: 0 0 auto;
    }

    .close-player {
        top: -50px;
        right: 0;
    }
    .player-container {
        height: 80vh;
    }
}

@media (max-width: 600px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    .promo-banner {
        flex-direction: column;
        text-align: center;
    }
    .promo-banner .banner-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .reserve-hero .wave-top {
        height: 60%;
    }
    .reserve-hero .wave-bottom {
        width: 100%;
        right: -20%;
    }
}


@media (max-width: 562px) {
    .main-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .btn-primary-action {
        width: 100%;
        justify-content: center;
    }
    .mobile-hidden-562{
        display: none !important;
    }


    .reservation-container {
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0px;
    }

}

@media (max-width: 500px) {
    .hero-badges {
        flex-flow: wrap;
    }
    .mobile-hidden-500{
        display: none;
    }

    img.brand-logo-in-text {
        margin: 0 5px;
        margin-top: 5px;
    }

    .secondary-links {
        justify-content: flex-start;
        gap: 15px;
    }
    .divider {
        display: none;
    }
    .nav-mobile-style{
        flex-direction: column;
    }

    .pc-action-col {
        display: flex;
        flex-direction: column;
    }

    .price-block {
        align-items: flex-start;
        /* Mobilde sola yasla */
    }
}

@media (max-width: 450px) {
    .mini-campaigns-row {
        flex-direction: column;
        /* Çok küçük ekranda alt alta */
        gap: 10px;
    }
}