* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0b2545;
    --accent-red: #e63946;
    --accent-orange: #ff922b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Şerit */
.top-bar {
    background-color: #030d1a;
    color: #cbd5e1;
    font-size: 12px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-actions a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: 0.2s;
}

.top-actions a:hover {
    color: var(--accent-orange);
}

/* Header Navbar */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-box {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
    line-height: 1;
}

.brand-logo span {
    color: var(--accent-orange);
}

.logo-box small {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-top: 2px;
    border-top: 1px solid #cbd5e1;
    padding-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-orange);
}

.header-call {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.header-call i {
    font-size: 24px;
    color: var(--accent-orange);
}

.header-call small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

/* --- HERO BÖLÜNMÜŞ YAPISI --- */
.hero-search-section {
    position: relative;
    background: #0b2545;
    padding: 40px 0 60px 0;
    color: white;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, #1d3557, #0b2545);
}

.hero-split-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.hero-left-box {
    display: flex;
    flex-direction: column;
}

.search-bar-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.search-tabs {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.search-tabs button {
    padding: 14px 20px;
    border: none;
    background: #ffffff;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-orange);
    width: 100%;
    text-align: left;
}

.search-bar-form {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
    justify-content: center;
}

.search-row-2 {
    display: flex;
    gap: 12px;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.search-input-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-input-group label i {
    color: var(--accent-orange);
    margin-right: 4px;
}

.search-input-group input, .search-input-group select {
    width: 100%;
    padding: 11px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
}

.search-input-group input:focus {
    border-color: var(--accent-orange);
}

/* --- OTOMATİK ÖNERİ DROPDOWN STİLİ --- */
.autocomplete-container {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 100;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.autocomplete-dropdown.show {
    display: block;
}

.autocomplete-item {
    padding: 10px 15px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.autocomplete-item i {
    color: var(--accent-orange);
    font-size: 12px;
}

.autocomplete-item:hover {
    background-color: #f8fafc;
    color: var(--accent-orange);
}

.btn-search {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 5px;
}

.btn-search:hover {
    background-color: #f77f00;
}

/* Sağ Kampanya Slider */
.hero-right-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hero-slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background-size: cover;
    background-position: center;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: all;
}

.slide-badge {
    background-color: var(--accent-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    width: max-content;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-slide h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
}

.hero-slide p {
    font-size: 13px;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.btn-slide {
    background: white;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    width: max-content;
    transition: 0.2s;
}

.btn-slide:hover {
    background: var(--accent-orange);
    color: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots .dot.active {
    background: var(--accent-orange);
    width: 25px;
    border-radius: 10px;
}

/* Kampanya Bölümü */
.section-campaigns {
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.campaign-card {
    border-radius: 12px;
    padding: 25px;
    color: white;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
}

.promo-banner-main {
    background: linear-gradient(135deg, #ff922b 0%, #e63946 100%);
}

.badge-time {
    background-color: rgba(0,0,0,0.25);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.promo-banner-main h2 { font-size: 20px; font-weight: 600; }
.promo-banner-main h3 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.promo-banner-main p { font-size: 13px; margin-bottom: 15px; }

.btn-promo {
    background: white;
    color: var(--accent-red);
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    display: inline-block;
}

.sub-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.2s;
}

.sub-card:hover { transform: translateY(-3px); }
.sub-card.bg-1 { background: linear-gradient(135deg, #0b2545 0%, #134074 100%); }
.sub-card.bg-2 { background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%); }

.sub-card h4 { font-size: 16px; font-weight: 700; }
.sub-card p { font-size: 13px; color: #e2e8f0; }
.sub-card span { font-size: 12px; font-weight: 600; margin-top: 15px; color: var(--accent-orange); }

/* Otel Kartları Listesi */
.section-hotels {
    margin: 60px auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 { font-size: 28px; color: var(--primary-color); }
.section-header p { color: var(--text-muted); font-size: 14px; }

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tabs button {
    border: 1px solid #cbd5e1;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.category-tabs button.active, .category-tabs button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.1);
}

.hotel-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--accent-red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.hotel-img-box {
    height: 190px;
    position: relative;
    overflow: hidden;
}

.hotel-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hotel-card:hover .hotel-img-box img {
    transform: scale(1.05);
}

.hotel-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.hotel-location i { color: var(--accent-orange); }

.hotel-title {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.hotel-board {
    font-size: 12px;
    background-color: #f1f5f9;
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    width: max-content;
    margin-bottom: 15px;
    font-weight: 600;
}

.hotel-price-box {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #94a3b8;
}

.current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-red);
}

.current-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.btn-book {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-book:hover {
    background-color: var(--accent-orange);
}

/* Temalar Grid */
.section-themes { margin: 60px auto; }

.theme-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.theme-card {
    height: 200px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.theme-card.large-theme {
    grid-column: span 2;
}

.theme-card::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
}

.theme-content {
    position: absolute;
    bottom: 20px; left: 20px; right: 20px;
    color: white;
}

.theme-content h3 { font-size: 20px; font-weight: 700; }
.theme-content span { font-size: 12px; color: #e2e8f0; }

/* Footer */
footer {
    background-color: #030d1a;
    color: #94a3b8;
    padding-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.white-logo { color: white; margin-bottom: 15px; display: inline-block; }
.footer-contact h4 { color: white; margin-bottom: 15px; }
.phone-call { font-size: 20px; color: var(--accent-orange); font-weight: 700; margin-bottom: 10px; }

.footer-bottom {
    background-color: #01060d;
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
}

/* --- REZERVASYON MODAL POPUP VE ÖZET KUTUSU STİLLERİ --- */
.modal-overlay {
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box.reservation-modal {
    background: white;
    padding: 30px;
    border-radius: 14px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
}

.btn-close-modal {
    position: absolute;
    top: 15px; right: 20px;
    border: none;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-muted);
}

.res-badge {
    color: #10b981;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
}

.modal-header-info h3 { color: var(--primary-color); font-size: 20px; font-weight: 700; }
.modal-header-info p { font-size: 13px; color: var(--text-muted); margin-bottom: 15px; }

/* Dynamic Price & Night Box */
.res-summary-box {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.res-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dark);
}

.res-summary-item.highlight {
    border-top: 1px dashed #cbd5e1;
    padding-top: 8px;
    margin-top: 4px;
    font-size: 15px;
}

.res-summary-item.highlight strong {
    color: var(--accent-red);
    font-size: 18px;
}

.modal-form .form-group { margin-bottom: 12px; }
.modal-form label { font-size: 12px; font-weight: 600; display: block; margin-bottom: 4px; color: var(--primary-color); }
.modal-form input { width: 100%; padding: 10px; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 13px; }

.btn-modal-submit {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    width: 100%;
    padding: 13px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.2s;
}

.btn-modal-submit:hover { background-color: #f77f00; }

/* Responsive */
@media (max-width: 968px) {
    .hero-split-container { grid-template-columns: 1fr; }
    .campaign-grid { grid-template-columns: 1fr; }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-card.large-theme { grid-column: span 2; }
}

@media (max-width: 768px) {
    .top-bar-inner { flex-direction: column; gap: 5px; text-align: center; }
    .navbar { flex-direction: column; gap: 15px; }
    .search-row-2 { flex-direction: column; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-card.large-theme { grid-column: span 1; }
}