/* AFTur - Main Stylesheet */
/* index.html tasarimindan uyarlanmistir */

:root {
    --aftur-red: #e31e24;
    --aftur-dark-red: #c41a1f;
    --aftur-orange: #f7941d;
    --aftur-blue: #0077c8;
    --aftur-dark: #333;
    --aftur-light: #f5f5f5;
    --aftur-teal: #1a9a9a;
}

* {
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
}

/* ===== TOP HEADER ===== */
.top-header {
    background: #fff;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--aftur-red);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: #333;
    font-weight: 400;
}

.logo-text:hover {
    color: var(--aftur-red);
    text-decoration: none;
}

.logo-info {
    margin-left: 10px;
    border-left: 1px solid #ddd;
    padding-left: 10px;
}

.logo-info-text {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
    display: block;
    font-weight: 400;
}

.phone-number {
    color: var(--aftur-dark);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-number i {
    color: var(--aftur-red);
    font-size: 1.2rem;
}

.phone-number:hover {
    color: var(--aftur-red);
    text-decoration: none;
}

.header-links a,
.header-links .btn {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    transition: all 0.2s;
}

.header-links a:hover,
.header-links .btn:hover {
    color: var(--aftur-red);
    text-decoration: none;
}

.header-links .divider {
    color: #ddd;
    margin: 0 10px;
}

/* ===== MAIN NAVBAR ===== */
.main-navbar {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.main-navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 15px 20px !important;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.main-navbar .nav-link:hover {
    color: var(--aftur-red) !important;
    background: transparent;
}

.main-navbar .nav-link.highlight {
    background: var(--aftur-red) !important;
    color: #fff !important;
    border-radius: 14px;
    margin: 0;
    font-weight: 600;
}

.main-navbar .nav-link.highlight:hover {
    background: var(--aftur-dark-red) !important;
    color: #fff !important;
}

.main-navbar .nav-link.outlet {
    color: var(--aftur-red) !important;
    font-weight: 600;
}

/* ===== MEGA DROPDOWN ===== */
.main-navbar > .container {
    position: relative;
}

.main-navbar .nav-item {
    position: static;
}

.main-navbar .nav-item.has-dropdown > .nav-link {
    display: flex;
    align-items: center;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-top: 3px solid var(--aftur-red);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.main-navbar .nav-item.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.mega-dropdown-container {
    padding: 30px 15px;
}

.mega-dropdown-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.mega-dropdown-col {
    min-width: 180px;
}

.mega-dropdown-title {
    color: var(--aftur-red);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--aftur-red);
}

.mega-dropdown-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-dropdown-links li {
    margin-bottom: 8px;
}

.mega-dropdown-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.2s;
    display: block;
    padding: 4px 0;
}

.mega-dropdown-links a:hover {
    color: var(--aftur-red);
    padding-left: 5px;
}

/* Dropdown uzun listeler için */
.mega-dropdown-col:nth-child(n+5) {
    display: none;
}

@media (max-width: 991px) {
    .mega-dropdown {
        display: none !important;
    }
}

/* Mobile Header Icons */
.mobile-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.mobile-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #333;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s;
    border-radius: 8px;
}

.mobile-icon-btn:hover {
    color: var(--aftur-red);
    background: rgba(0,0,0,0.05);
}

.mobile-menu-btn {
    color: var(--aftur-dark);
    font-size: 1.6rem;
}

.mobile-menu-btn:hover {
    color: var(--aftur-red);
}

.mobile-logout-btn {
    color: #dc3545 !important;
}

.mobile-logout-btn:hover {
    color: #a71d2a !important;
    background: rgba(220, 53, 69, 0.1);
}

.navbar-toggler {
    color: var(--aftur-red);
    border: none;
    padding: 8px 12px;
    font-size: 1.8rem;
    background: none;
    cursor: pointer;
    transition: color 0.2s;
}

.navbar-toggler:hover {
    color: var(--aftur-dark-red);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(to bottom, rgba(0,100,170,0.1), rgba(0,100,170,0.3)), 
                url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1920') center/cover;
    min-height: 380px;
    position: relative;
    padding: 30px 0 60px;
}

/* ===== SEARCH BOX ===== */
.search-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
    padding: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.search-tabs .nav-link {
    color: #666;
    padding: 14px 22px;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.search-tabs .nav-link:hover {
    color: var(--aftur-dark);
}

.search-tabs .nav-link.active {
    color: var(--aftur-dark);
    border-bottom: 2px solid var(--aftur-red);
    background: transparent;
    font-weight: 600;
}

.search-form {
    padding: 15px 20px;
}

.search-field {
    display: flex;
    align-items: center;
    border-right: 1px solid #eee;
    padding: 8px 15px;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field-icon {
    color: var(--aftur-red);
    font-size: 1.1rem;
    margin-right: 10px;
}

.search-field-content {
    flex: 1;
}

.search-field-label {
    font-size: 0.7rem;
    color: var(--aftur-red);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.search-field-value {
    font-size: 0.85rem;
    color: var(--aftur-dark);
    font-weight: 500;
}

.search-field input,
.search-field select {
    border: none;
    font-size: 0.85rem;
    color: var(--aftur-dark);
    font-weight: 500;
    width: 100%;
    outline: none;
    background: transparent;
}

.btn-search {
    background: var(--aftur-red);
    color: #fff;
    padding: 10px 35px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    font-size: 0.9rem;
}

.btn-search:hover {
    background: var(--aftur-dark-red);
    color: #fff;
}

/* Popular Searches */
.popular-searches {
    padding: 12px 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.popular-badge {
    background: var(--aftur-red);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.popular-link {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    padding-right: 20px;
}

.popular-link::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #ddd;
}

.popular-link:last-child::after {
    display: none;
}

.popular-link:hover {
    color: var(--aftur-red);
}

/* ===== ICON BUTTONS ===== */
.icon-buttons {
    padding: 30px 0;
    background: #fff;
}

.icon-btn-item {
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.icon-btn-item:hover .icon-btn-circle {
    transform: scale(1.05);
}

.icon-btn-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    font-size: 0.65rem;
    text-align: center;
    padding: 10px;
    line-height: 1.3;
    font-weight: 500;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.icon-btn-circle.red { background: linear-gradient(135deg, #e31e24, #c41a1f); }
.icon-btn-circle.green { background: linear-gradient(135deg, #7cb342, #558b2f); }
.icon-btn-circle.blue { background: linear-gradient(135deg, #29b6f6, #0288d1); }
.icon-btn-circle.maroon { background: linear-gradient(135deg, #c62828, #8e0000); }
.icon-btn-circle.teal { background: linear-gradient(135deg, #1a9a9a, #158080); }
.icon-btn-circle.gray { background: #f5f5f5; border: 2px solid #ddd; color: #666; }
.icon-btn-circle.white-bordered { background: #fff; border: 3px solid #e31e24; color: #e31e24; }

.icon-btn-circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-btn-circle .circle-title {
    font-size: 0.55rem;
    opacity: 0.9;
    margin-bottom: 2px;
}

.icon-btn-circle .circle-main {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.icon-btn-circle i {
    font-size: 2rem;
}

.icon-btn-item .icon-label {
    font-size: 0.75rem;
    color: var(--aftur-dark);
    display: block;
    line-height: 1.3;
    max-width: 120px;
    margin: 0 auto;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aftur-dark);
    margin-bottom: 25px;
}

/* ===== CAMPAIGN CARDS ===== */
.campaign-section {
    padding: 40px 0;
    background: #fff;
}

.campaign-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.campaign-card-inner {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.campaign-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-overlay.blue { background: linear-gradient(135deg, rgba(0,119,198,0.9), rgba(0,90,150,0.9)); }
.campaign-overlay.white { background: rgba(255,255,255,0.95); }
.campaign-overlay.green { background: linear-gradient(135deg, rgba(76,175,80,0.95), rgba(56,142,60,0.95)); }

.campaign-overlay-title {
    color: #fff;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.campaign-overlay-main {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.campaign-overlay-main small {
    font-size: 0.9rem;
    display: block;
}

.campaign-card .card-body {
    padding: 12px 15px;
}

.campaign-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--aftur-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.campaign-card-link {
    color: var(--aftur-blue);
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
}

.campaign-card-link:hover {
    text-decoration: underline;
}

.campaign-card-split {
    display: flex;
    height: 140px;
    overflow: hidden;
}

.campaign-split-left {
    flex: 1;
    min-width: 0;
}

.campaign-split-right {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

/* ===== HOTEL CARDS ===== */
.hotels-section {
    padding: 40px 0;
    background: #fff;
}

.hotels-scroll-container {
    scrollbar-width: thin;
    scrollbar-color: #e31e24 #f5f5f5;
}

.hotels-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.hotels-scroll-container::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.hotels-scroll-container::-webkit-scrollbar-thumb {
    background: #e31e24;
    border-radius: 10px;
}

.hotels-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #c41a1f;
}

.hotel-card-new {
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.hotel-favorite-new:hover {
    background: #e31e24 !important;
    color: white !important;
}

.hotel-tabs .nav-link {
    color: var(--aftur-dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.hotel-tabs .nav-link.active {
    background: var(--aftur-red);
    color: #fff;
}

.hotel-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hotel-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aftur-red);
    cursor: pointer;
    transition: all 0.3s;
}

.hotel-favorite:hover {
    background: var(--aftur-red);
    color: #fff;
}

.hotel-card .card-body {
    padding: 15px;
}

.hotel-name {
    font-weight: 600;
    color: var(--aftur-dark);
    font-size: 1rem;
    margin-bottom: 5px;
}

.hotel-location {
    color: #666;
    font-size: 0.85rem;
}

.hotel-stars {
    color: #ffc107;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.hotel-price {
    color: var(--aftur-red);
    font-size: 1.3rem;
    font-weight: 700;
}

.hotel-price small {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
}

.btn-all-hotels {
    color: var(--aftur-red);
    font-weight: 500;
    text-decoration: none;
}

.btn-all-hotels:hover {
    color: var(--aftur-dark-red);
}

/* ===== TOUR CARDS (UMRE) ===== */
.tours-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.umre-card {
    background: #e8e4dd;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.umre-card-header {
    background: #fff;
    padding: 12px 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.umre-airline-logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.umre-airline-logo span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #c41e3a;
}

.umre-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.umre-info-bar {
    background: var(--aftur-teal);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.umre-code {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.umre-type {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    margin-top: 3px;
}

.umre-nights {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.umre-card-body {
    padding: 20px;
    text-align: center;
}

.umre-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aftur-teal);
    margin-bottom: 5px;
}

.umre-departure {
    font-size: 0.8rem;
    color: var(--aftur-teal);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.umre-price-section {
    background: #fff;
    padding: 20px;
    border-top: 1px solid #ddd;
    border-radius: 0 0 20px 20px;
}

.umre-price {
    font-size: 3rem;
    font-weight: 300;
    color: var(--aftur-teal);
}

.umre-price-currency {
    font-size: 1.5rem;
    color: var(--aftur-teal);
}

.btn-umre {
    display: block;
    background: var(--aftur-teal);
    color: #fff;
    text-align: center;
    padding: 14px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.btn-umre:hover {
    background: #158080;
    color: #fff;
}

/* ===== REGION CARDS ===== */
.regions-section {
    padding: 40px 0;
    background: #fff;
}

.region-tabs .nav-link {
    color: #666;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.region-tabs .nav-link.active {
    color: var(--aftur-red);
    font-weight: 600;
}

.region-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.region-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.region-card:hover img {
    transform: scale(1.1);
}

.region-card.large img {
    height: 420px;
}

.region-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.region-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.region-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

.btn-tour {
    background: transparent;
    border: 2px solid var(--aftur-red);
    color: var(--aftur-red);
    border-radius: 25px;
    padding: 8px 25px;
    font-weight: 500;
}

.btn-tour:hover {
    background: var(--aftur-red);
    color: #fff;
}

/* ===== FOOTER ===== */
.footer {
    background: #fff;
    padding: 50px 0 30px;
    border-top: 1px solid #eee;
}

.footer-title {
    font-weight: 600;
    color: var(--aftur-dark);
    margin-bottom: 20px;
    font-size: 1rem;
    width: 100%;
}

.footer .col-lg-2,
.footer .col-md-4,
.footer .col-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-contact-box:hover {
    border-color: var(--aftur-blue);
}

.footer-contact-box i {
    color: #999;
    font-size: 1.2rem;
}

.footer-contact-box span {
    color: #555;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-links li {
    margin-bottom: 10px;
    width: 100%;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    width: 100%;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-links a:hover {
    color: var(--aftur-blue);
    text-decoration: none;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--aftur-blue);
    text-decoration: none;
}

.social-link i {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Footer Bottom Links */
.footer-bottom-links {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0 12px;
    border-right: 1px solid #ddd;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-bottom-links a:last-child {
    border-right: none;
}

.footer-bottom-links a:hover {
    color: var(--aftur-blue);
    text-decoration: none;
}

/* Footer Payment */
.footer-payment {
    background: #f5f5f5;
    padding: 25px 0;
    text-align: center;
}

.footer-payment p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.footer-payment strong {
    color: #333;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-badge {
    font-weight: 600;
    color: #333;
}

.visa-logo {
    font-weight: 700;
    color: #1a1f71;
    font-size: 1.3rem;
}

.mc-logo {
    font-weight: 600;
    color: #eb001b;
}

.troy-logo {
    font-weight: 600;
    color: #00a0e1;
}

/* Footer Copyright */
.footer-copyright {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid #eee;
}

.footer-copyright-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-copyright-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #e31e24;
}

.footer-copyright-logo span {
    color: #333;
    font-weight: 400;
}

.footer-copyright-text {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.footer-copyright-text a {
    color: var(--aftur-blue);
    text-decoration: none;
}

.footer-badges {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.badge-item {
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.6rem;
    color: #666;
    text-align: center;
}

/* ===== MOBILE MENU - Setur Tarzı ===== */
.mobile-menu-offcanvas {
    width: 100% !important;
    max-width: 400px;
    border: none !important;
}

.mobile-menu-offcanvas .offcanvas-body,
.mobile-menu-offcanvas .offcanvas-header {
    padding: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #fff;
    border-bottom: none;
}

.mobile-menu-logo a {
    text-decoration: none;
}

.logo-text-mobile {
    font-size: 2rem;
    font-weight: 800;
    color: var(--aftur-red);
    line-height: 1;
}

.logo-text-mobile span {
    color: #333;
    font-weight: 400;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s;
}

.mobile-menu-close:hover {
    color: var(--aftur-red);
}

.mobile-menu-cta {
    background: var(--aftur-red);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.mobile-menu-cta .cta-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.mobile-menu-cta .cta-link:hover {
    color: #ffe6e6;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    background: #fff;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 16px 20px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: var(--aftur-red);
    background: #fafafa;
}

.mobile-nav-link.highlight {
    color: var(--aftur-red);
    font-weight: 600;
}

.mobile-nav-link.highlight::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e31e24'%3E%3Cpath d='M12 2L15.09 8.26L22 9.27L17 14.14L18.18 21.02L12 17.77L5.82 21.02L7 14.14L2 9.27L8.91 8.26L12 2Z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    margin-right: 8px;
}

.submenu-toggle {
    padding: 16px 20px;
    cursor: pointer;
    color: #666;
    transition: transform 0.3s;
}

.submenu-toggle:hover {
    color: var(--aftur-red);
}

.mobile-nav-item.open .submenu-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    background: #f9f9f9;
    padding: 0;
}

.mobile-nav-item.open .mobile-submenu {
    display: block;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s;
}

.mobile-submenu-link:hover {
    color: var(--aftur-red);
    background: #f0f0f0;
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-menu-footer {
    background: #fff;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.2s;
}

.mobile-social-icons .social-icon:hover {
    color: var(--aftur-red);
}

/* Eski mobil menü stilleri (geriye dönük uyumluluk) */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: block;
    padding: 12px 15px;
    color: var(--aftur-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-nav a:hover {
    background: var(--aftur-light);
    color: var(--aftur-red);
}

.mobile-nav a i {
    margin-right: 10px;
    width: 20px;
}

/* ===== BACK TO TOP BUTTON ===== */
.btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--aftur-red);
    color: #fff;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.btn-back-to-top:hover {
    background: var(--aftur-dark-red);
    transform: translateY(-3px);
}

.btn-back-to-top.show {
    display: flex;
}

/* ===== UTILITIES ===== */
.text-red { color: var(--aftur-red) !important; }
.text-blue { color: var(--aftur-blue) !important; }
.bg-red { background-color: var(--aftur-red) !important; }
.bg-blue { background-color: var(--aftur-blue) !important; }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--aftur-red);
    border-color: var(--aftur-red);
}

.btn-primary:hover {
    background: var(--aftur-dark-red);
    border-color: var(--aftur-dark-red);
}

.btn-outline-primary {
    color: var(--aftur-red);
    border-color: var(--aftur-red);
}

.btn-outline-primary:hover {
    background: var(--aftur-red);
    border-color: var(--aftur-red);
    color: #fff;
}

/* ===== FORMS ===== */
.form-control:focus,
.form-select:focus {
    border-color: var(--aftur-red);
    box-shadow: 0 0 0 0.2rem rgba(227, 30, 36, 0.25);
}

/* ===== ALERTS ===== */
.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* ===== PAGINATION ===== */
.pagination .page-link {
    color: var(--aftur-red);
}

.pagination .page-item.active .page-link {
    background-color: var(--aftur-red);
    border-color: var(--aftur-red);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .top-header {
        padding: 10px 0;
    }
    
    .logo-info {
        display: none;
    }
    
    .header-links {
        font-size: 0.8rem;
    }
    
    .main-navbar {
        padding: 10px 0;
    }
    
    .main-navbar .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .main-navbar .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-section {
        min-height: 300px;
        padding: 20px 0 40px;
    }
    
    .search-form .d-flex {
        flex-direction: column;
    }
    
    .search-field {
        border-right: none;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .footer-copyright-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-badges {
        justify-content: center;
        margin-top: 15px;
    }
}

/* ===== FOOTER CONTACT BUTTONS ===== */
.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    line-height: 1.4;
}

.footer-contact-btn:hover {
    background: #e8e8e8;
    color: #333;
    text-decoration: none;
}

.footer-contact-btn i {
    font-size: 1.1rem;
    color: #666;
    min-width: 20px;
    flex-shrink: 0;
}

.footer-contact-btn span {
    flex: 1;
    line-height: 1.4;
    color: #333;
}

@media (max-width: 767.98px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .icon-btn-circle {
        width: 80px;
        height: 80px;
    }
    
    .hotel-card img {
        height: 150px;
    }
    
    .hotel-number {
        font-size: 2rem;
    }
    
    .region-card img {
        height: 150px;
    }
    
    .region-card.large img {
        height: 200px;
    }
    
    .umre-price {
        font-size: 2rem;
    }
    
    .footer-bottom-links a {
        display: block;
        border-right: none;
        padding: 8px 0;
    }
}

/* ===== SİTE GENELİ FLATPICKR TAKVİM TEMASI (yeni stil) ===== */
.flatpickr-calendar.open { box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-radius: 12px; }
.flatpickr-months .flatpickr-month { background: transparent; color: var(--aftur-red, #e31e24); }
.flatpickr-current-month { color: var(--aftur-red, #e31e24) !important; font-weight: 700; font-size: 1.1rem; }
.flatpickr-month .flatpickr-current-month .numInputWrapper span.arrowUp:after { border-bottom-color: var(--aftur-red, #e31e24); }
.flatpickr-month .flatpickr-current-month .numInputWrapper span.arrowDown:after { border-top-color: var(--aftur-red, #e31e24); }
.flatpickr-weekday { color: #333; }
.flatpickr-weekday:nth-child(6),
.flatpickr-weekday:nth-child(7) { color: #1a73e8; font-weight: 600; }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--aftur-red, #e31e24) !important;
    border-color: var(--aftur-red, #e31e24) !important;
    color: #fff !important;
}
.flatpickr-day.inRange {
    background: rgba(227, 30, 36, 0.2) !important;
    border-color: rgba(227, 30, 36, 0.25);
    box-shadow: -5px 0 0 rgba(227, 30, 36, 0.2), 5px 0 0 rgba(227, 30, 36, 0.2);
}
.flatpickr-day:hover { background: rgba(227, 30, 36, 0.15); }
.flatpickr-clear-wrap { padding: 12px 16px; border-top: 1px solid #eee; text-align: right; }
.flatpickr-clear-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid var(--aftur-red, #e31e24);
    color: var(--aftur-red, #e31e24);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.flatpickr-clear-btn:hover { background: #fff5f5; }
