* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Modern Header */
header {
    background: #2A66AE;
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Modern Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
}

.logo i {
    font-size: 32px;
    color: #fdbb2d;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text {
    display: flex;
    align-items: baseline;
}

.logo-part-1 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-part-2 {
    color: #fdbb2d;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* HAMBURGER MENÃœ */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* MOBILE MENÃœ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #2A66AE;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-dropdown {
    margin-bottom: 20px;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.mobile-dropdown-menu {
    background: white;
    border-radius: 4px;
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    color: #333;
    font-size: 14px;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background-color: #f5f5f5;
}

.mobile-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* HAMBURGER ANÄ°MASYONU */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dropdown Stilleri */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    height: 40px;
    min-width: 50px;
    justify-content: center;
    transition: all 0.3s;
}

.dropdown-toggle:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    width: 600px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border: 1px solid #e0e0e0;
}

/* PARA BÄ°RÄ°MÄ° DROPDOWN */
.currency-dropdown .dropdown-menu {
    width: 780px;
    grid-template-columns: repeat(4, 1fr);
}

/* DÄ°L DROPDOWN */
.language-dropdown .dropdown-menu {
    width: 780px;
    max-height: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
}

.language-dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(5px);
    left: 50%;
}

/* Bayrak Ä°konlarÄ± */
.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Dil dropdown item'larÄ± */
.language-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    border-radius: 6px;
    min-height: 45px;
    background-color: #fafafa;
    font-size: 14px;
    border: 1px solid transparent;
    text-align: left;
    justify-content: flex-start;
}

.language-dropdown .dropdown-item:hover,
.dropdown-item:hover {
    background-color: #2a5d9e;
    border-color: #2a5d9e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(42, 93, 158, 0.2);
}

.language-dropdown .dropdown-item.active,
.dropdown-item.active {
    background-color: #4A90E2;
    color: white;
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border-radius: 6px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    min-height: 45px;
    text-align: center;
    background-color: #fafafa;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    font-size: 14px;
}

.btn-primary {
    background-color: #FF6B35;
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Arama AlanÄ± */
.search-section {
    background-color: #4A90E2;
    padding: 30px 0;
    color: white;
}

.search-container {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.search-title {
    margin-bottom: 15px;
    font-size: 20px;
    color: white;
}

/* ARAÅžTIRMA FORMU */
.search-form {
    display: grid;
    grid-template-columns: 1.4fr 1.3fr 1.3fr auto;
    gap: 15px;
    align-items: end;
}

.autocomplete-container {
    position: relative;
    grid-column: 1 / 2;
}

.form-group:nth-child(2),
.form-group:nth-child(3) {
    grid-column: span 1;
}

.form-group-btn {
    grid-column: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: white;
    font-size: 15px;
}

.form-control {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    font-size: 17px;
    font-weight: 500;
    transition: border-color 0.3s;
    height: 42px;
}

.form-control:focus {
    border-color: #4A90E2;
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* GENÄ°Åž TAKVÄ°M INPUT */
.buyuk-takvim {
    height: 50px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    padding: 12px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    background-color: white !important;
    cursor: pointer !important;
    min-width: 200px !important;
    width: 100% !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.buyuk-takvim::placeholder {
    color: #999 !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.buyuk-takvim:focus {
    border-color: #4A90E2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
    color: #000 !important;
}

/* FORM GROUP GENÄ°ÅžLÄ°ÄžÄ° */
.form-group:nth-child(2),
.form-group:nth-child(3) {
    min-width: 200px !important;
}

/* FLATPICKR TAKVÄ°M - OPTÄ°MUM BÃœYÃœKLÃœK */
.flatpickr-calendar {
    transform: scale(1.05) !important;
    font-size: 13px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    width: 300px !important;
}

.flatpickr-day {
    height: 32px !important;
    line-height: 32px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.flatpickr-month {
    height: 45px !important;
    font-size: 14px !important;
}

.flatpickr-weekday {
    font-size: 12px !important;
    font-weight: 500 !important;
}

.flatpickr-current-month {
    font-size: 14px !important;
}

/* Arama Input'u */
.autocomplete-input {
    width: 100%;
    height: 50px;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 15px;
}

.input-with-clear {
    position: relative;
    display: inline-block;
    width: 100%;
}

.clear-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 18px;
    color: #999;
    z-index: 10;
    background: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.clear-input:hover {
    color: #333;
    background: #f5f5f5;
}

.autocomplete-input {
    padding-right: 35px !important;
}

/* Arama Butonu */
.search-btn {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    height: 50px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background-color: #2a5d9e;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Otomatik Tamamlama Stilleri */
.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 15px;
    font-weight: 500;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background-color: #f5f5f5;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-name {
    font-weight: 600;
    color: #333;
}

/* Arama kutusu uyarÄ±larÄ± */
.form-hint {
    display: none !important;
}

.form-hint.error {
    display: block !important;
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 8px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.form-hint.error::before {
    content: "?";
    margin-right: 8px;
    font-size: 14px;
}

.form-control.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

/* RADIO BUTON LABEL'LARI YAN YANA */
.search-type-selector {
    display: flex !important;
    gap: 15px !important;
}

.radio-label {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer !important;
}

.radio-text {
    white-space: nowrap !important;
}

.radio-label input[type="radio"] {
    margin: 0 !important;
    width: 16px !important;
    height: 16px !important;
}

/* Filtreler */
.filters-section {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.filters-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
}

.filter-item:hover {
    background-color: #f0f0f0;
}

.filter-item.active {
    background-color: #e6f2ff;
    border-color: #4A90E2;
    color: #4A90E2;
}

.filter-divider {
    border: none;
    border-top: 2px solid #ff5722;
    margin: 20px 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.filter-wrapper h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    text-align: left;
    width: 100%;
    background: #20B2AA;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    margin: 0;
}

/* Trendy Destinations */
.destinations-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.view-all {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.destinations-layout {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.destinations-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.destinations-row-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.destination-card-large {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.destination-card-large:hover,
.destination-card:hover,
.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.destination-card-large .destination-image {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.destination-card-large .destination-info {
    padding: 25px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.destination-card-large .destination-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.destination-card-large .destination-country {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.destination-card-large .destination-stats {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 500;
}

.destination-card-large .destination-price {
    font-weight: 600;
    color: #FF6B35;
}

.destination-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-color: white;
    cursor: pointer;
}

.destination-card .destination-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.destination-card .destination-info {
    padding: 20px;
}

.destination-card .destination-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.destination-card .destination-country {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.destination-card .destination-stats {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.destination-card .destination-price {
    font-weight: 600;
    color: #4A90E2;
}

/* Stay at our top unique properties */
.unique-properties-section {
    padding: 40px 0;
    background-color: white;
    position: relative;
}

.properties-scroll-container {
    position: relative;
    overflow: hidden;
}

.properties-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.properties-scroll::-webkit-scrollbar {
    display: none;
}

.property-card {
    flex: 0 0 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background-color: white;
    cursor: pointer;
}

.property-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.property-info {
    padding: 20px;
}

.property-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.property-location {
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.property-rating .rating-value {
    background-color: #4A90E2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.property-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.property-price .price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.property-price .price-note {
    color: #666;
    font-size: 14px;
}

/* Scroll Controls */
.scroll-controls {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 20;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    z-index: 30;
    color: #4A90E2;
    font-size: 18px;
}

.scroll-btn:hover {
    background-color: #4A90E2;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.scroll-prev {
    margin-left: -35px;
}

.scroll-next {
    margin-right: -35px;
}

/* Ã–ne Ã‡Ä±kan Ã–zellikler */
.features-section {
    background-color: white;
    padding: 50px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    background-color: white;
}

.feature-icon {
    font-size: 40px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.feature-desc {
    color: #666;
    font-size: 15px;
}

/* Footer */
footer {
    background-color: #4A90E2;
    color: white;
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #e6f2ff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0 0;
    border-top: 1px solid #6ba5e5;
    color: #e6f2ff;
    font-size: 15px;
}

/* Search Results Page Styles */
.search-results-page {
    padding: 30px 0;
    background-color: #f5f5f5;
    min-height: 80vh;
}

.search-header {
    background: #4A90E2;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.search-info h1 {
    font-size: 28px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

.search-dates {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.results-count {
    font-size: 18px;
    color: white;
    font-weight: 600;
    margin-top: 15px;
}

.search-results-container {
    display: flex;
    gap: 25px;
}

.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
}

/* FÄ°LTRE GRUPLARI STÄ°LLERÄ° */
.filter-group {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.filter-group h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
    width: 100%;
}

.filter-group h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    text-align: left;
    width: 100%;
    display: block;
}

/* YILDIZ FÄ°LTRE STÄ°LLERÄ° */
.star-rating-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.star-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
}

.star-option input[type="checkbox"] {
    margin: 0;
    transform: scale(1.1);
}

.star-option label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.star-option:hover label {
    color: #4A90E2;
}

/* AREA FÄ°LTRE STÄ°LLERÄ° */
.area-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.area-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
}

.area-option input[type="checkbox"] {
    margin: 0;
    transform: scale(1.1);
}

.area-option label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.area-option:hover label {
    color: #4A90E2;
}

.no-areas {
    font-size: 14px;
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 10px 0;
}

/* TESÄ°S TÄ°PÄ° FÄ°LTRE */
.property-type-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    padding: 4px 0;
}

.property-type-option input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.1);
}

.property-type-option label {
    font-size: 14px;
    font-family: inherit;
    color: #333;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
}

.no-property-types {
    font-size: 14px;
    color: #666;
    font-style: italic;
    padding: 10px 0;
}

/* TESÄ°S Ã–ZELLÄ°KLERÄ° STÄ°LLERÄ° */
.facilities-list {
    width: 100%;
}

.facility-item {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.checkbox-label {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    padding: 5px 0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    transform: scale(1.1);
}

.checkbox-label input[type="checkbox"] {
    accent-color: #4A90E2;
}

.checkbox-label:hover {
    color: #4A90E2;
}

.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
}

.results-main {
    flex: 1;
}

.hotel-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hotel-image {
    width: 220px;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    margin: -1.5%;
}

.hotel-info {
    flex: 1;
}

.hotel-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    margin-top: -1%;
}

.hotel-location {
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.hotel-rating-review {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 18px;
    color: #ddd;
}

.star.active {
    color: #FFA500;
}

.hotel-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.hotel-description-content br {
    display: block;
    margin: 8px 0;
    content: "";
}

.hotel-price {
    text-align: right;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-review-section {
    margin-bottom: 15px;
}

.review-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.review-score {
    background: #4A90E2;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.review-text {
    color: #4A90E2;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.review-count {
    color: #666;
    font-size: 12px;
    display: block;
}

.price-section {
    text-align: center;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.price-label {
    font-size: 12px;
    color: #666;
}

.book-button {
    background: #228B22;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.book-button:hover {
    background: #2E8B57;
}

/* MODERN FÄ°YAT FÄ°LTRE STÄ°LLERÄ° */
.price-filter {
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.price-separator {
    color: #666;
    font-weight: 500;
}

.price-slider-container {
    position: relative;
    height: 30px;
    margin-bottom: 10px;
}

.price-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transform: translateY(-50%);
}

.price-slider-container input[type="range"] {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    margin: 0;
    transform: translateY(-50%);
}

.price-slider-container input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4A90E2;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
    cursor: pointer;
    -webkit-appearance: none;
    transition: all 0.2s ease;
}

.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.6);
}

.price-slider-container input[type="range"]::-moz-range-thumb {
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4A90E2;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.price-slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.6);
}

/* Filtre ButonlarÄ± */
.filter-actions {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.clear-filters-btn {
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clear-filters-btn:hover {
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.clear-filters-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

.clear-filters-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.clear-filters-btn i {
    font-size: 16px;
}

/* Left Search Styles */
.left-search-container {
    background: linear-gradient(135deg, #ff8c68, #ff7a55);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    width: 100%;
}

.search-form-left {
    background: linear-gradient(135deg, #FF6B35, #e55a2b);
    padding: 15px;
    border-radius: 8px;
    margin: -5%;
}

.search-form-left h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.search-form-left .search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.search-form-left .form-group {
    margin-bottom: 0;
    width: 100%;
}

.search-form-left .autocomplete-container {
    position: relative;
    width: 100%;
}

.search-form-left label {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
}

.search-form-left .form-control {
    height: 42px;
    font-size: 14px;
    padding: 10px 12px;
    width: 100%;
    box-sizing: border-box;
}

.search-form-left .autocomplete-input {
    width: 100% !important;
}

.search-form-left .buyuk-takvim {
    width: 100% !important;
    min-width: 100% !important;
}

.search-btn-left {
    background: #4A90E2;
    color: white;
    border: 2px;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 5px;
}

.search-btn-left:hover {
    background: #2a5d9e;
    color: white;
    border: 2px;
}

.search-form-left .autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    width: 100%;
}

.search-form-left .autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
}

.search-form-left .autocomplete-item:hover {
    background-color: #f5f5f5;
}

.search-form-left .autocomplete-name {
    font-weight: 600;
    color: #333;
}

/* ARAMA KRÄ°TERLERÄ°NÄ° DEÄžÄ°ÅžTÄ°R BÄ°LEÅžENÄ° */
.search-criteria-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.search-criteria-header {
    background-color: white;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.search-criteria-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.search-criteria-content {
    background-color: white;
    padding: 15px 20px 5px 20px;
}

.destination-section, 
.checkin-section, 
.checkout-section {
    margin-bottom: 15px;
    position: relative;
}

.destination-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.close-icon {
    color: #999;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-icon:hover {
    background-color: #f0f0f0;
    color: #666;
}

.date-section {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    font-weight: 500;
}

.date-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.separator {
    height: 1px;
    background-color: #e0e0e0;
    margin: 10px 0 5px 0;
}

.search-criteria-button {
    background-color: #ff6b00;
    padding: 12px 20px;
    text-align: center;
    margin-top: 0;
}

.search-button {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    padding: 0;
}

.close-icon:hover {
    color: #333;
}

.search-button:hover {
    opacity: 0.9;
}

/* Tesis Ã–zellikleri Ä°konlarÄ± */
.hotel-facilities-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin: 12px 0 !important;
}

.facility-row {
    display: contents !important;
}

.facility-icon-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px !important;
    background: #fefce8 !important;
    border-radius: 6px !important;
    border: 1px solid #fef08a !important;
}

.facility-icon-item i {
    color: #166534 !important;
    font-size: 14px !important;
    width: 16px !important;
    text-align: center !important;
}

.facility-text {
    font-size: 12px !important;
    color: #854d0e !important;
    font-weight: 500 !important;
}

.special-class {
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
    border: 1px solid #ddd;
}

/* Aranan otel iÅŸaretleme */
.hotel-card[style*="border-left"] {
    border-left: 4px solid #228B22 !important;
}

/* Pagination */
.page-info {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.pagination {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.pagination-info {
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.page-link:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-1px);
}

.page-link.current {
    background: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.page-link.first,
.page-link.last {
    font-weight: 600;
}

.page-link.prev,
.page-link.next {
    font-weight: 600;
}

/* MOBÄ°L FÄ°LTRE STÄ°LLERÄ° */
.mobile-filter-btn-container {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.filter-badge {
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Mobil Filtre Modal */
.mobile-filters-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1001;
    overflow: hidden;
}

.mobile-filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-filters-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #495057;
    cursor: pointer;
    padding: 5px;
}

.mobile-filters-clear {
    background: none;
    border: none;
    color: #667eea;
    font-size: 14px;
    cursor: pointer;
}

.mobile-filters-content {
    height: calc(100% - 120px);
    overflow-y: auto;
    padding: 15px;
}

.mobile-filters-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: white;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.apply-filters-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.result-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 20px;
    margin-right: 5px;
}

/* Aktif Filtre Chips */
.active-filters-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #667eea;
    color: white;
    border-radius: 20px;
    font-size: 12px;
}

.filter-chip-remove {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

/* Akordiyon Stilleri */
.mobile-filter-accordion {
    margin-bottom: 20px;
}

.filter-accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #495057;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    display: none;
    padding: 15px;
    background: white;
}

.accordion-content.active {
    display: block;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

/* Mobil Ã–zel Stiller */
.star-rating-filter.mobile .star-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.star-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.stars-display {
    color: #ffc107;
    font-size: 16px;
    min-width: 70px;
}

.star-text {
    color: #495057;
}

.area-filter.mobile .area-option {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

.area-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.hotel-count {
    color: #6c757d;
    font-size: 12px;
}

.facilities-list.mobile .facility-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

.checkbox-label.mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    position: relative;
}

.checkbox-label.mobile input:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label.mobile input:checked + .checkmark:after {
    content: 'âœ“';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Fiyat Slider Mobil */
.price-filter.mobile .price-display.mobile {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.price-min, .price-max {
    text-align: center;
}

.price-min label, .price-max label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.price-slider-container.mobile {
    position: relative;
    height: 40px;
}

.price-slider-track.mobile {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    transform: translateY(-50%);
}

.slider-min.mobile, .slider-max.mobile {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: none;
    pointer-events: none;
}

.slider-min.mobile::-webkit-slider-thumb, 
.slider-max.mobile::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* HOTEL DETAILS PAGE STYLES */
.hotel-details-page {
    background-color: #f5f5f5;
    min-height: 100vh;
    padding-bottom: 120px;
}

.hotel-header-section {
    background: white;
    padding: 20px 30px 18px 30px;
    margin: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.star-rating-main {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

.star {
    font-size: 20px;
    color: #FFB700;
}

.hotel-title-main {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hotel-location-main {
    color: #0077cc;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.hotel-location-main a {
    color: #0077cc;
    text-decoration: none;
}

.hotel-location-main a:hover {
    text-decoration: underline;
}

.map-link {
    cursor: pointer;
    color: #0066cc;
    text-decoration: underline;
}

.map-link:hover {
    color: #004499;
}

/* Map Modal */
.map-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.map-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    width: 95%;
    max-width: 700px;
    height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.close-map-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 1001;
    cursor: pointer;
}

.close-map-modal:hover,
.close-map-modal:focus {
    color: #000;
    text-decoration: none;
}

#hotelMap {
    width: 100%;
    flex: 1;
    border-radius: 8px;
    min-height: 300px;
}

/* Gallery Styles */
.hotel-gallery-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.gallery-container-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    height: 500px;
    position: relative;
}

.main-gallery-image {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    position: relative;
    overflow: hidden;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

.rating-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #003580;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.review-score-main {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-text-main {
    font-size: 12px;
    margin-bottom: 4px;
    font-weight: 600;
}

.review-count-main {
    font-size: 11px;
    opacity: 0.9;
}

.view-all-photos-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    color: #333;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: none;
}

.view-all-photos-btn:hover {
    background: #f5f5f5;
}

.hotel-content-main {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.popular-facilities-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.popular-facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.popular-facility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.popular-facility-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    border-color: #4A90E2;
    background: white;
}

.popular-facility-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4A90E2, #0077cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.popular-facility-item:hover .popular-facility-icon {
    transform: scale(1.1);
}

.popular-facility-text {
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    line-height: 1.3;
}

.room-section-main {
    margin: 25px 0;
}

.room-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 12px 15px;
    background: #003580;
    color: white;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
}

.room-card-main {
    border: 1px solid #e0e0e0;
    border-radius: 0 0 8px 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: white;
}

.room-card-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 15px;
    align-items: center;
}

.room-info-main {
    display: flex;
    gap: 12px;
}

.room-image-main {
    width: 150px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
}

.room-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-image-main:hover img {
    transform: scale(1.5);
}

.room-details-main h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.room-features-main {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.room-facilities-main {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.room-facility-tag {
    background: #f8f9fa;
    color: #666;
    padding: 2px 5px;
    border-radius: 6px;
    font-size: 9px;
}

.room-capacity-main {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.room-price-main {
    text-align: center;
}

.price-amount-main {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 2px;
}

.price-label-main {
    font-size: 10px;
    color: #666;
}

.room-selection-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.room-quantity-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn-main {
    background: #4A90E2;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}

.quantity-btn-main:hover {
    background: #2a5d9e;
}

.quantity-btn-main:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.quantity-main {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    font-size: 13px;
}

.conditions-main {
    font-size: 14px;
    color: #006400;
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
}

.facilities-section-main {
    margin: 25px 0;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4A90E2;
}

.facilities-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.facility-category {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.facility-category h4 {
    margin-bottom: 12px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.facility-list-main {
    list-style: none;
}

.facility-list-main li {
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.facility-list-main li:last-child {
    border-bottom: none;
}

.facility-list-main i {
    color: #4A90E2;
    width: 16px;
    font-size: 12px;
}

.reservation-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #4A90E2;
    padding: 15px 30px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.reservation-bar.active {
    display: block;
}

.reservation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.selected-rooms-info {
    flex: 1;
}

.selected-rooms-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.selected-rooms-list {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.reservation-total {
    text-align: right;
    margin-right: 30px;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #003580;
    margin-bottom: 2px;
}

.total-label {
    font-size: 12px;
    color: #666;
}

.reservation-btn {
    background: #228B22;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    min-width: 180px;
}

.reservation-btn:hover {
    background: #2E8B57;
}

.reservation-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content-main {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1000px;
    margin-top: 30px;
}

.modal-content-main img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.modal-nav-main {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.nav-btn-main {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.nav-btn-main:hover {
    background: rgba(255,255,255,0.3);
}

.modal-thumbnails-main {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.modal-thumbnail-main {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.modal-thumbnail-main.active {
    border-color: #4A90E2;
}

.modal-thumbnail-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile & Tablet Slider */
.mobile-slider-container {
    display: none;
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.mobile-slider {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.mobile-slide {
    flex: 0 0 100%;
    height: 100%;
}

.mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: white;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.rating-overlay-mobile {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.rating-overlay-mobile .review-score-main {
    font-size: 20px;
    font-weight: bold;
    color: #ffb700;
}

.rating-overlay-mobile .review-text-main {
    font-size: 12px;
    margin: 2px 0;
}

.rating-overlay-mobile .review-count-main {
    font-size: 10px;
    color: #ccc;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .header-controls {
        display: none;
    }
    
    .currency-dropdown .dropdown-menu {
        width: 650px;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .language-dropdown .dropdown-menu {
        width: 650px;
        grid-template-columns: repeat(4, 1fr);
    }

    .search-form {
        grid-template-columns: 1.4fr 1.3fr 1.3fr;
        gap: 12px;
    }
    
    .form-group-btn {
        grid-column: 1 / 4;
    }
    
    .search-btn {
        width: 100%;
        min-width: auto;
    }

    /* Hotel Details Responsive */
    .room-table-header,
    .room-card-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .room-info-main {
        flex-direction: column;
        text-align: center;
    }
    
    .room-image-main {
        width: 100%;
        height: 120px;
    }
    
    .gallery-container-main {
        height: 400px;
    }

    .reservation-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .reservation-total {
        margin-right: 0;
        text-align: center;
    }

    .popular-facilities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    /* Mobile Slider */
    .mobile-slider-container {
        display: block;
    }
    .hotel-gallery-section {
        display: none;
    }
    .room-table-header {
        display: none;
    }

    /* Mobil Filtre */
    .mobile-filter-btn-container {
        display: block !important;
    }
    
    .filters-sidebar {
        display: none !important;
    }
    
    .search-results-container {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .header-controls {
        gap: 10px;
    }
    
    .dropdown-toggle {
        min-width: 40px;
        justify-content: center;
        padding: 8px;
    }
    
    .currency-dropdown .dropdown-menu {
        width: 500px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .language-dropdown .dropdown-menu {
        width: 500px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn span {
        display: none;
    }
    
    .btn {
        padding: 8px 12px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .destinations-row {
        grid-template-columns: 1fr;
    }
    
    .destinations-row-large {
        grid-template-columns: 1fr;
    }
    
    .destination-card-large .destination-image {
        height: 200px;
    }
    
    .destination-card-large .destination-info {
        padding: 20px;
    }
    
    .destination-card-large .destination-name {
        font-size: 20px;
    }
    
    .scroll-controls {
        display: none;
    }
    
    .properties-scroll {
        padding-bottom: 20px;
    }
    
    .property-card {
        flex: 0 0 260px;
    }

    .search-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .autocomplete-container,
    .form-group:nth-child(2),
    .form-group:nth-child(3),
    .form-group-btn {
        grid-column: 1 / 2;
    }
    
    .buyuk-takvim {
        min-width: 100% !important;
        height: 48px !important;
        font-size: 16px !important;
        padding: 12px 14px !important;
    }
    
    .search-btn {
        height: 48px;
        font-size: 16px;
        min-width: 100%;
    }
    
    .autocomplete-input {
        height: 48px;
        font-size: 16px;
    }
    
    .mobile-menu {
        width: 280px;
    }

    .search-results-container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        display: none;
    }
    
    .hotel-card {
        flex-direction: column;
    }
    
    .hotel-image {
        width: 100%;
        height: 200px;
    }
    
    .hotel-price {
        text-align: left;
        margin-top: 15px;
    }
    
    .hotel-rating-review {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-review-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .review-info {
        flex: 1;
        margin-bottom: 0;
    }
    
    .price-section {
        flex: 1;
        text-align: right;
    }

    /* Hotel Details Mobile */
    .hotel-title-main {
        font-size: 24px;
    }
    
    .gallery-container-main {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 150px 150px 150px 150px;
        height: auto;
    }
    
    .main-gallery-image {
        grid-row: 1 / 2;
        grid-column: 1 / 2;
    }
    
    .facilities-grid-main {
        grid-template-columns: 1fr;
    }
    
    .room-table-header {
        display: none;
    }
    
    .room-card-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .rating-overlay {
        top: 10px;
        right: 10px;
        min-width: 100px;
        padding: 12px;
    }
    
    .review-score-main {
        font-size: 20px;
    }
    
    .star {
        font-size: 16px;
    }

    .reservation-bar {
        padding: 12px 15px;
    }

    .total-price {
        font-size: 20px;
    }

    .reservation-btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
    }

    .popular-facilities-grid {
        grid-template-columns: 1fr;
    }

    .popular-facility-item {
        padding: 10px 12px;
    }

    .popular-facility-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .popular-facility-text {
        font-size: 12px;
    }

    /* Mobile Slider */
    .mobile-slider-container {
        height: 250px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .slider-arrow.prev {
        left: 5px;
    }
    
    .slider-arrow.next {
        right: 5px;
    }
    
    .hotel-header-section {
        padding: 15px 0;
    }
    
    .hotel-title-main {
        font-size: 1.5rem;
    }

    /* Pagination */
    .pagination-controls {
        gap: 3px;
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .page-info {
        font-size: 13px;
        margin-left: 8px;
        padding: 3px 6px;
    }
    
    .pagination-info {
        font-size: 13px;
    }

    /* Clear Filters Button */
    .clear-filters-btn {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .clear-filters-btn i {
        font-size: 14px;
    }

    /* Search Criteria */
    .search-criteria-container {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .search-criteria-header,
    .search-criteria-content {
        padding: 12px 15px;
    }

    /* Map Modal */
    .map-modal-content {
        margin: 2% auto;
        height: 80vh;
        width: 98%;
        padding: 15px;
    }

    /* Mobil Filtre */
    .mobile-filter-btn-container {
        display: block;
    }
    
    .results-main {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .currency-dropdown .dropdown-menu {
        width: 450px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .language-dropdown .dropdown-menu {
        width: 450px;
        grid-template-columns: repeat(2, 1fr);
    }

    .search-container {
        padding: 15px;
    }
    
    .autocomplete-input,
    .buyuk-takvim,
    .search-btn {
        height: 46px;
        font-size: 16px;
    }
    
    .search-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .mobile-menu {
        width: 100%;
        right: -100%;
    }
    
    .mobile-menu.active {
        right: 0;
    }

    /* Mobile Slider */
    .mobile-slider-container {
        height: 200px;
    }
    
    .rating-overlay-mobile {
        top: 10px;
        right: 10px;
        padding: 8px;
        min-width: 70px;
    }
    
    .rating-overlay-mobile .review-score-main {
        font-size: 18px;
    }

    /* Pagination */
    .pagination-controls {
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .page-link {
        padding: 5px 8px;
        font-size: 12px;
        min-width: 32px;
        text-align: center;
    }
    
    .page-info {
        display: block;
        margin: 10px 0 0 0;
        text-align: center;
    }

    /* Mobil Filtre */
    .mobile-filters-content {
        padding: 10px;
    }
    
    .accordion-header {
        padding: 12px;
    }
    
    .accordion-content {
        padding: 12px;
    }
}

/* TELEFON YAN Ã‡EVRÄ°LÄ°NCE DESTEK - LANDSCAPE MOD */
@media (max-width: 1024px) and (max-height: 600px) and (orientation: landscape) {
    .mobile-filter-btn-container {
        display: block !important;
        bottom: 10px !important;
        width: 95% !important;
        max-width: 500px !important;
    }
    
    .mobile-filter-btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
    }
    
    .mobile-filters-modal {
        height: 100% !important;
    }
    
    .mobile-filters-content {
        height: calc(100% - 100px) !important;
        padding: 10px !important;
    }
    
    .filter-accordion-item {
        margin-bottom: 8px !important;
    }
    
    .accordion-header {
        padding: 12px !important;
    }
    
    .accordion-content {
        padding: 12px !important;
        max-height: 200px !important;
        overflow-y: auto !important;
    }
    
    /* Landscape iÃ§in Ã¶zel ayarlar */
    .star-rating-filter.mobile .star-option {
        padding: 6px 0 !important;
    }
    
    .area-filter.mobile .area-option {
        padding: 8px 0 !important;
    }
    
    .facilities-list.mobile .facility-item {
        padding: 8px 0 !important;
    }
    
    .price-filter.mobile .price-display.mobile {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .mobile-filters-footer {
        padding: 10px !important;
    }
    
    .apply-filters-btn {
        padding: 12px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 1200px) {
    .scroll-controls {
        max-width: 100%;
        padding: 0 40px;
    }
}

/* Yatay mod iÃ§in stiller */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-slider-container {
        height: 250px;
    }
}

/* BÃ¼yÃ¼k tabletler iÃ§in */
@media (min-width: 1025px) {
    .mobile-slider-container {
        display: none;
    }
    .hotel-gallery-section {
        display: block;
    }
}

/* Tablet stilleri */
@media (min-width: 769px) and (max-width: 1024px) {
    .mobile-slider-container {
        height: 400px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

.reservation-bar {
    display: none; /* Baþlangýçta gizli */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.reservation-bar.active {
    display: block;
}

