* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --primary-dark: #c0392b;
    --secondary-color: #3498db;
    --accent-color: #f39c12;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

body[dir="rtl"] .header-content {
    flex-direction: row-reverse;
}

body[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

body[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

body[dir="rtl"] .lang-menu {
    left: 0;
    right: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Kampanya Banner - Her Zaman Üstte - Tamamen Kırmızı */
.campaign-banner {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #00c46a 0%, #00a651 100%) !important;
    color: white !important;
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.campaign-slider {
    background: transparent !important;
}

.campaign-item {
    background: transparent !important;
    color: white !important;
}

.campaign-item * {
    background: transparent !important;
    color: white !important;
}

.campaign-item a {
    color: white !important;
    background: transparent !important;
}

.campaign-item a span {
    color: white !important;
}

.campaign-item a i {
    color: white !important;
}

.campaign-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.campaign-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Header - Modern ve Şık */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 20px auto;
    max-width: 1280px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.header-content {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    gap: 40px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 6px;
    position: relative;
}

.main-nav a i {
    font-size: 10px;
    transition: transform 0.2s;
    opacity: 0.6;
}

.main-nav .dropdown.active > a i {
    transform: rotate(180deg);
}

.main-nav > ul > li > a:hover {
    background: #f8f9fa;
    color: #212529;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    list-style: none;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 8px;
    padding: 8px;
    z-index: 9999;
    display: none !important;
    opacity: 0;
    pointer-events: none;
}

.dropdown.active > .dropdown-menu {
    display: block !important;
    opacity: 1;
    pointer-events: auto;
    animation: dropdownFadeIn 0.3s ease forwards;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.dropdown-menu li a i {
    font-size: 14px;
    color: var(--primary-color);
    opacity: 1;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Language Switcher - Inline Minimalist (Desktop) */
.lang-switcher-inline {
    display: flex !important;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    flex-direction: row;
}

.lang-switcher-inline .lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 6px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    transition: all 0.2s;
    opacity: 0.6;
    text-decoration: none;
}

.lang-switcher-inline .lang-btn:hover {
    opacity: 1;
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.lang-switcher-inline .lang-btn.active {
    opacity: 1;
    background: #00a651;
    border-color: #00a651;
    box-shadow: 0 2px 8px rgba(0, 166, 81, 0.2);
}

.lang-switcher-inline .lang-btn.active:hover {
    background: #008a43;
    border-color: #008a43;
}

.lang-switcher-inline .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Old Language Switcher (for mobile) */
.lang-switcher {
    position: relative;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 400;
    font-size: 13px;
}

.lang-toggle:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.lang-toggle .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.2s;
    opacity: 0.6;
}

.lang-switcher.active .lang-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-menu {
    right: 0;
    left: auto;
    min-width: 150px;
}

.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
}

.lang-menu li a:hover {
    background: #f8f9fa;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #00a651 0%, #008a43 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 60px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Categories Section */
.categories-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.categories-section .section-title {
    justify-content: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #2c3e50;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-btn i {
    font-size: 18px;
    color: #00a651;
    transition: all 0.3s;
}

.category-btn:hover {
    background: #00a651;
    border-color: #00a651;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.2);
}

.category-btn:hover i {
    color: #fff;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-phone {
    background: #27ae60;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-email {
    background: #e74c3c;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Tours Section */
.tours-section {
    padding: 60px 0;
    background: #fff;
}

.tours-section:nth-child(even) {
    background: #fafbfc;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 26px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 600;
}

.section-title i {
    color: #00a651;
    font-size: 22px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    color: #6c757d;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: #00a651;
    color: #fff;
    border-color: #00a651;
    transform: translateX(3px);
}

.view-all-btn i {
    transition: transform 0.3s;
    font-size: 11px;
}

.view-all-btn:hover i {
    transform: translateX(2px);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #e0e0e0;
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
}

.tour-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00a651;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.tour-content {
    padding: 24px;
}

.tour-content h3 {
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.tour-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tour-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
    font-size: 13px;
    color: #6c757d;
}

.tour-info i {
    color: #00a651;
    font-size: 14px;
}

.tour-price {
    font-size: 22px;
    color: #00a651;
    font-weight: 700;
    margin: 16px 0;
}

.btn-primary {
    background: #00a651;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #008a43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.float-btn.btn-phone {
    background: linear-gradient(135deg, #00a651 0%, #008a43 100%);
}

.float-btn.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.float-btn.btn-email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul a:hover {
    color: #00a651;
    padding-left: 5px;
}

.footer-section i {
    margin-right: 10px;
    color: #00a651;
}

.footer-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
}

.footer-btn i {
    font-size: 16px;
    margin-right: 0;
    color: #fff;
}

.footer-btn span {
    color: #fff;
}

.footer-btn.btn-phone {
    background: linear-gradient(135deg, #00a651 0%, #008a43 100%);
}

.footer-btn.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.footer-btn.btn-email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, #00a651 0%, #00c46a 100%);
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    z-index: 1002;
    font-size: 20px;
    color: #fff;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

.mobile-menu-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 166, 81, 0.4);
}

.mobile-menu-toggle:active {
    transform: translateY(0);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.mobile-menu-toggle.active i::before {
    content: "\f00d";
}



.footer-social-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-social-btn {
    color: #ecf0f1;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 1001;
        overflow-y: auto;
        padding-top: 80px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a {
        padding: 15px 20px;
        width: 100%;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0;
        border-radius: 0;
    }
    
    .lang-switcher {
        margin-left: auto;
    }
    

}

/* Mobile Menu Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 992px) {
    .main-header .container {
        padding: 0 12px !important;
    }
    
    .main-header .header-content {
        display: flex !important;
        align-items: center !important;
        padding: 10px 0 !important;
        position: relative !important;
        justify-content: flex-start !important;
    }
    
    /* Mobile Menu Toggle - Left (First in HTML) */
    .main-header .mobile-menu-toggle.mobile-only {
        display: flex !important;
        flex-shrink: 0 !important;
        order: 1 !important;
    }
    
    /* Logo - Absolute Center */
    .main-header .header-content .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1 !important;
        order: 2 !important;
    }
    
    .main-header .logo-img {
        height: 38px !important;
        max-width: 130px !important;
    }
    
    /* Desktop Nav - Hide */
    .main-header .main-nav.desktop-only {
        display: none !important;
    }
    
    /* Header Actions Container */
    .main-header .header-actions {
        margin-left: auto !important;
        z-index: 2 !important;
        order: 3 !important;
    }
    
    /* Hide desktop lang switcher on mobile */
    .main-header .header-actions .desktop-only {
        display: none !important;
    }
    
    /* Mobile Actions - Right (Last in HTML) */
    .main-header .mobile-actions.mobile-only {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        color: #495057;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .mobile-search-btn:hover,
    .mobile-search-btn:active {
        background: #00a651;
        border-color: #00a651;
        color: white;
    }
    
    .mobile-search-btn i {
        font-size: 17px;
    }
    
    /* Hide desktop nav and actions */
    .main-nav.desktop-only,
    .header-actions .desktop-only {
        display: none !important;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
        box-shadow: 2px 0 30px rgba(0,0,0,0.12);
        transition: left 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        padding: 80px 0 20px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        background: linear-gradient(135deg, #00a651 0%, #00c46a 100%);
        border-bottom: none;
        z-index: 1;
        box-shadow: 0 2px 8px rgba(0, 166, 81, 0.2);
    }
    
    .main-nav::after {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 50px;
        background: url('/favicon.png') no-repeat center;
        background-size: contain;
        z-index: 2;
        filter: brightness(0) invert(1);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .main-nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-nav a {
        width: 100%;
        color: #2c3e50;
        border-radius: 0;
        padding: 14px 20px;
        font-size: 14px;
        justify-content: space-between;
        background: transparent;
        font-weight: 500;
    }
    
    .main-nav > ul > li > a:hover {
        background: rgba(0, 166, 81, 0.08);
        color: #00a651;
    }
    
    .main-nav .dropdown-toggle i {
        opacity: 1;
        font-size: 12px;
    }
    
    .dropdown-menu {
        display: none !important;
        position: static;
        box-shadow: none;
        background: #fafbfc;
        margin: 0;
        padding: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid #e9ecef;
        transform: none;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px 12px 40px;
        font-size: 13px;
        color: #6c757d;
        background: rgba(0, 166, 81, 0.03);
        font-weight: 400;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0, 166, 81, 0.12);
        color: #00a651;
        padding-left: 44px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 8px 0;
        gap: 10px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 140px;
    }
    
    .main-nav {
        width: 260px;
    }
    
    .lang-toggle {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .mobile-menu-toggle {
        padding: 8px 12px;
        font-size: 18px;
    }
    
    .main-nav a {
        padding: 15px 20px;
        font-size: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav a::before {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0;
        padding: 0;
        transform: none;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .categories-section {
        padding: 40px 0;
    }
    
    .categories-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-card i {
        font-size: 28px;
    }
    
    .category-card span {
        font-size: 12px;
    }
    
    .tours-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .view-all-btn {
        align-self: flex-end;
    }
    
    .tours-grid {
        gap: 20px;
    }
    
    .tours-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 20px;
        gap: 8px;
    }
    
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-btn {
        padding: 12px 15px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .footer-social-buttons {
        justify-content: flex-start;
        gap: 18px;
    }
    
    .footer-social-btn {
        font-size: 24px;
    }
    
    .lang-toggle {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .flag-icon {
        width: 20px;
        height: 15px;
    }
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    max-height: 70vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6) 0%, rgba(44, 62, 80, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    font-weight: 300;
    opacity: 0.95;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 50%;
    opacity: 0.7;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.3);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

.dot:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 400px;
        max-height: 50vh;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .slider-btn {
        font-size: 16px;
        width: 36px;
        height: 36px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .floating-contact {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 350px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* Footer */
.main-footer {
    background: #2c3e50;
    color: #b0bec5;
    padding: 50px 0 0;
    margin-top: 80px;
    border-top: 3px solid #00a651;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-logo {
    margin-top: 20px;
}

.tursab-logo {
    height: 60px;
    width: auto;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tursab-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.footer-contact-item {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    color: #00a651;
    font-size: 14px;
    width: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #00a651;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #90a4ae;
    margin: 0;
}

/* Minimalist Styles */
.categories-section-minimal {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.section-title-minimal {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-minimal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card i {
    font-size: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s;
}

.category-card span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    color: #2c3e50;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.category-card:hover i {
    transform: scale(1.15);
}

/* Featured Tours Minimal */
.featured-tours-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.category-tours-section {
    padding: 60px 0;
    background: #ffffff;
}

.category-tours-section:nth-child(even) {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
}

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-section-header .section-title-minimal {
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-section-header .section-title-minimal::after {
    display: none;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.tours-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card-minimal {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tour-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.tour-image-minimal {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tour-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card-minimal:hover .tour-image-minimal img {
    transform: scale(1.08);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.tour-card-minimal:hover .tour-overlay {
    opacity: 1;
}

.tour-view-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tour-view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.tour-info-minimal {
    padding: 20px;
}

.tour-info-minimal h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-meta i {
    color: #667eea;
    font-size: 14px;
}

.tour-price-minimal {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: textnter;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.tour-view-btn:hover {
    transform: scale(1.1);
    background: #008a43;
}

.tour-info-minimal {
    padding: 20px;
}

.tour-info-minimal h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #6c757d;
}

.tour-meta i {
    color: #00a651;
    margin-right: 5px;
}

.tour-price-minimal {
    font-size: 16px;
    font-weight: 700;
    color: #00a651;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: #00a651;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: #008a43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 166, 81, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #00a651 0%, #008a43 100%);
    padding: 40px 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

/* Tours Filter */
.tours-filter-section {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    text-decoration: none;
    color: #495057;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-tab i {
    font-size: 14px;
}

.filter-tab:hover,
.filter-tab.active {
    background: #00a651;
    border-color: #00a651;
    color: #fff;
}

/* Tours List Section */
.tours-list-section {
    padding: 50px 0;
    background: #fafbfc;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state p {
    font-size: 16px;
    color: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 18px 12px;
    }

    .category-card i {
        font-size: 24px;
    }

    .category-card span {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .category-card i {
        font-size: 22px;
    }

    .category-card span {
        font-size: 11px;
    }

    .section-title-minimal {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .tours-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tour-image-minimal {
        height: 150px;
    }

    .tour-info-minimal {
        padding: 15px;
    }

    .tour-info-minimal h3 {
        font-size: 14px;
    }

    .tour-meta {
        font-size: 12px;
    }

    .tour-price-minimal {
        font-size: 14px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .tours-list-section {
        padding: 30px 0;
    }

    .featured-tours-section {
        padding: 30px 0;
    }

    .categories-section-minimal {
        padding: 30px 0;
    }
}

@media (max-width: 1200px) {
    .tours-grid-minimal {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .tours-grid-minimal {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .tours-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tours-grid-minimal {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .category-card {
        padding: 12px 8px;
    }
    
    .category-card i {
        font-size: 20px;
    }
    
    .category-card span {
        font-size: 10px;
    }
}

/* Category Tours Section */
.category-tours-section {
    padding: 40px 0;
    background: #fff;
}

.category-tours-section:nth-child(even) {
    background: #fafbfc;
}

.category-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.category-section-header .section-title-minimal {
    margin-bottom: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
}

.category-section-header .section-title-minimal i {
    color: #00a651;
    font-size: 22px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: transparent;
    color: #6c757d;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-view-more:hover {
    background: #00a651;
    color: #fff;
    border-color: #00a651;
    transform: translateX(3px);
}

.btn-view-more i {
    transition: transform 0.3s;
    font-size: 11px;
}

.btn-view-more:hover i {
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .category-tours-section {
        padding: 30px 0;
    }

    .category-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
    }

    .category-section-header .section-title-minimal {
        font-size: 20px;
    }

    .category-section-header .section-title-minimal i {
        font-size: 18px;
    }

    .btn-view-more {
        align-self: flex-end;
    }
}

/* Tour Actions Buttons */
.tour-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-detail,
.btn-reservation {
    flex: 1;
    padding: 8px 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-detail {
    background: #6c757d;
    color: white;
}

.btn-detail:hover {
    background: #545b62;
    transform: translateY(-2px);
}

.btn-reservation {
    background: #28a745;
    color: white;
}

.btn-reservation:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Hero Buttons Update */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-primary {
    background: #007bff;
    color: white;
}

.btn-hero-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #007bff;
}

@media (max-width: 768px) {
    .tour-actions {
        flex-direction: column;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}


/* Hesap Numaraları Sayfası */
.accounts-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.account-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.account-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.bank-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    color: white;
}

.bank-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.account-info {
    padding: 24px;
}

.info-row {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row strong {
    color: #2c3e50;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-field {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.copy-text {
    flex: 1;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #495057;
    word-break: break-all;
}

.copy-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: #5568d3;
    transform: scale(1.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4CAF50;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.copy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.copy-toast i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .accounts-grid {
        grid-template-columns: 1fr;
    }
    
    .copy-toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
    }
}

/* Fleet Section */
.fleet-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.fleet-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fleet-content {
    padding: 24px;
}

.fleet-content h3 {
    margin: 0 0 12px 0;
    font-size: 20px;
    color: #2c3e50;
}

.fleet-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.fleet-specs {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #e9ecef;
}

.fleet-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #667eea;
    font-weight: 500;
    font-size: 14px;
}

.fleet-specs i {
    font-size: 16px;
}


/* Tur Arama Bölümü */
.search-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.search-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.tour-search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

.search-input-wrapper i {
    color: #667eea;
    font-size: 18px;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px 0;
    color: #2c3e50;
}

.search-input::placeholder {
    color: #95a5a6;
}

.search-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.search-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .search-box h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    /* Search input responsive styles removed */
    
    .search-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 30px 0;
    }
    
    .search-input-wrapper {
        flex-direction: column;
        align-items: stretch;
        border-radius: 12px;
        padding: 16px;
        gap: 12px;
    }
    
    .search-input-wrapper i {
        display: none;
    }
    
    .search-input {
        text-align: center;
    }
    
    .search-btn {
        width: 100%;
        border-radius: 8px;
    }
}


/* TÜRSAB Logo */
.footer-logo {
    margin-top: 20px;
}

.tursab-logo {
    max-width: 180px;
    height: auto;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .tursab-logo {
        max-width: 150px;
        padding: 12px;
    }
}


/* Mobil için slider dots düzenlemesi */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 15px;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        transform: scale(1.4);
    }
    
    .hero-buttons {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 10px;
        padding: 5px 10px;
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}


/* IndexSearch - Yeni Tur Arama Tasarımı */
#indexsearch {
    position: relative;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.search-header i {
    font-size: 24px;
    color: #e74c3c;
}

.search-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
    font-weight: 700;
}

/* Ana Arama Kutusu */
.index-search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-icon-wrapper {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
}

.index-search-input {
    width: 100%;
    padding: 16px 50px 16px 55px;
    border: 3px solid #e9ecef;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    color: #2c3e50;
}

.index-search-input::placeholder {
    color: #adb5bd;
}

.index-search-input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.1);
    background: #fffafa;
}

.index-clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #adb5bd;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
    display: none;
}

.index-clear-btn:hover {
    color: #e74c3c;
    transform: translateY(-50%) scale(1.1);
}

/* Kategori Tabları */
.index-category-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.category-tab {
    padding: 12px 10px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
}

.category-tab i {
    font-size: 20px;
    color: #adb5bd;
    transition: all 0.3s;
}

.category-tab span {
    white-space: nowrap;
}

.category-tab:hover {
    border-color: #e74c3c;
    background: #fff5f5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.category-tab:hover i {
    color: #e74c3c;
    transform: scale(1.15);
}

.category-tab.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-color: #e74c3c;
    color: white;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.category-tab.active i {
    color: white;
}

/* Arama Sonuçları Dropdown */
.index-search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

.index-search-results.active {
    max-height: 500px;
    opacity: 1;
    overflow-y: auto;
}

.index-results-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 16px 16px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.index-results-header i {
    margin-right: 8px;
}

/* Sonuç Kartları */
.index-result-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.index-result-card:last-child {
    border-bottom: none;
}

.index-result-card:hover {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
}

.result-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.result-card-content {
    flex: 1;
    min-width: 0;
}

.result-card-content h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
}

.result-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
}

.tour-badge i {
    font-size: 11px;
}

.tour-badge.price {
    background: #d4edda;
    color: #155724;
}

.result-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.select-tour-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

.select-tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.select-tour-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.view-tour-btn {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.view-tour-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
    transform: scale(1.05);
}

/* Sonuç Footer */
.index-results-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid #e74c3c;
    border-radius: 10px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.view-all-link:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Sonuç Bulunamadı */
.index-no-results {
    padding: 50px 20px;
    text-align: center;
}

.index-no-results i {
    font-size: 60px;
    color: #e9ecef;
    margin-bottom: 20px;
}

.index-no-results h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #6c757d;
}

.index-no-results p {
    margin: 0;
    font-size: 14px;
    color: #adb5bd;
}

/* Seçilen Tur */
.index-selected-tour {
    margin-top: 20px;
}

.no-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 14px;
    text-align: center;
}

.no-selection i {
    font-size: 32px;
    color: #adb5bd;
}

.no-selection p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
}

.tour-selected-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 3px solid #28a745;
    border-radius: 14px;
    animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
}

.selected-content {
    flex: 1;
    min-width: 0;
}

.selected-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #155724;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.selected-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #155724;
}

.selected-detail-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #28a745;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #28a745;
    text-decoration: none;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.selected-detail-btn:hover {
    background: #28a745;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Scrollbar */
.index-search-results::-webkit-scrollbar {
    width: 8px;
}

.index-search-results::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.index-search-results::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 10px;
}

.index-search-results::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Responsive */
@media (max-width: 768px) {
    .index-category-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .category-tab i {
        font-size: 18px;
    }
    
    .index-search-input {
        padding: 14px 45px 14px 50px;
        font-size: 14px;
    }
    
    .index-result-card {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .result-card-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .result-card-content {
        flex: 1;
        min-width: 150px;
    }
    
    .result-card-content h4 {
        font-size: 14px;
    }
    
    .tour-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .result-card-actions {
        width: 100%;
        justify-content: stretch;
    }
    
    .select-tour-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .view-tour-btn {
        width: 40px;
        height: 40px;
    }
    
    .index-search-results.active {
        max-height: 400px;
    }
    
    .selected-content h4 {
        font-size: 14px;
    }
}


/* Popular Regions Section */
.popular-regions-section {
    background: #f8f9fa;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
}

.popular-regions-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.popular-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.region-link {
    display: block;
    padding: 12px 15px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Footer Updates */
.footer-company-title {
    font-size: 0.85rem;
    color: #999;
    margin: 5px 0;
}

.footer-certificate {
    font-size: 0.9rem;
    color: #666;
    margin: 10px 0;
}

.footer-certificate i {
    color: #667eea;
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .popular-regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .region-link {
        padding: 10px 8px;
        font-size: 0.85rem;
    }
    
    .popular-regions-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}


/* ========================================
   ETS TUR THEME - CAMPAIGN BANNER & HEADER
   ======================================== */

/* Campaign Banner */
.campaign-banner {
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.campaign-slider {
    position: relative;
    height: 45px;
}

.campaign-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.campaign-item.active {
    opacity: 1;
    z-index: 1;
}

.campaign-item a {
    width: 100%;
    text-align: center;
}

.campaign-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 2;
}

.campaign-close:hover {
    background: rgba(0,0,0,0.4);
}

/* Header Enhancements */
.main-header {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.btn-rezervasyon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-rezervasyon:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu li a i {
    width: 20px;
    color: #667eea;
}

/* Desktop/Mobile Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile Language Dropdown in Header */
.mobile-lang-dropdown {
    position: relative;
}

.mobile-lang-toggle {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-lang-toggle:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.mobile-lang-toggle .flag-icon {
    width: 20px;
    height: 15px;
}

.mobile-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1100;
    overflow: hidden;
}

.mobile-lang-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-lang-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-lang-menu a:last-child {
    border-bottom: none;
}

.mobile-lang-menu a:hover {
    background: #f8f9fa;
    color: #00a651;
}

.mobile-lang-menu a.active {
    background: #00a651;
    color: white;
}

.mobile-lang-menu a img {
    width: 20px;
    height: 15px;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: #e74c3c;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    flex-shrink: 0;
}

.mobile-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.mobile-logo:hover {
    transform: scale(1.05);
}

.mobile-menu-close {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 1.4rem;
    cursor: pointer;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: rotate(90deg);
}

.mobile-menu-close:active {
    transform: rotate(90deg) scale(0.95);
}

.mobile-nav {
    padding: 0;
    background: white;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav > ul > li:last-child {
    border-bottom: none;
}

.mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav > ul > li > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #e74c3c;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav > ul > li > a:hover::before,
.mobile-nav > ul > li > a:active::before {
    transform: scaleY(1);
}

.mobile-nav > ul > li > a:hover {
    background: #fff5f5;
    color: #e74c3c;
}

.mobile-nav > ul > li > a i:first-child {
    margin-right: 16px;
    color: #e74c3c;
    font-size: 1.2rem;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-nav > ul > li > a i.fa-chevron-down {
    margin-left: auto;
    font-size: 0.9rem;
    color: #95a5a6;
}

.mobile-btn-rezervasyon {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: white !important;
    border-radius: 12px;
    margin: 20px 24px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.mobile-btn-rezervasyon::before {
    display: none;
}

.mobile-btn-rezervasyon:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.35);
    transform: translateY(-2px);
}

.mobile-nav .submenu {
    display: none;
    background: #fafafa;
    padding: 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav .has-submenu.open .submenu {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav .has-submenu > a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-nav .has-submenu.open > a i.fa-chevron-down {
    transform: rotate(180deg);
    color: #e74c3c;
}

.mobile-nav .submenu li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav .submenu li:last-child {
    border-bottom: none;
}

.mobile-nav .submenu li a {
    display: flex;
    align-items: center;
    padding: 14px 24px 14px 68px;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav .submenu li a::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav .submenu li a:hover {
    background: #fff;
    color: #e74c3c;
    padding-left: 72px;
}

.mobile-nav .submenu li a:hover::before {
    opacity: 1;
    left: 56px;
}

.mobile-nav .submenu li a i {
    margin-right: 12px;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #e74c3c;
}



.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .mobile-lang-dropdown {
        order: 1;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .header-actions {
        gap: 12px;
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .campaign-banner {
        font-size: 0.85rem;
    }
    
    .campaign-slider {
        height: 40px;
    }
    
    .campaign-item {
        padding: 0 40px;
    }
    
    .mobile-menu {
        width: 90%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .campaign-item {
        font-size: 0.75rem;
        padding: 0 35px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .mobile-lang-toggle {
        padding: 6px 10px;
    }
    
    .mobile-menu {
        width: 100%;
    }
}


/* ========================================
   SEARCH & RESERVATION SECTION
   ======================================== */

.search-reservation-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.search-reservation-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.reservation-grid {
    display: block !important;
    width: 100%;
}

/* Başlıklar */
.tour-search-area h3,
.reservation-form-area h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.tour-search-area h3 i,
.reservation-form-area h3 i {
    color: #e74c3c;
    font-size: 1.3rem;
}

.tour-search-wrapper {
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    color: #95a5a6;
    font-size: 1.1rem;
}

.search-input {
    width: 100%;
    padding: 14px 18px 14px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: all 0.3s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #fff5f5;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.result-info {
    flex: 1;
}

.result-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.result-meta {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.result-select-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.result-select-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.search-no-result {
    padding: 20px;
    text-align: center;
    color: #7f8c8d;
}

/* Seçilen Tur / Uyarı */
.selected-tour-info {
    margin-top: 20px;
}

.no-tour-selected {
    background: #fff3cd;
    border: 2px dashed #ffc107;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #856404;
    font-size: 0.95rem;
}

.no-tour-selected i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.selected-tour-badge {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-tour-badge i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tour-badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-badge-content strong {
    font-size: 0.85rem;
    opacity: 0.9;
}

.tour-badge-content span {
    font-size: 1rem;
    font-weight: 600;
}

.tour-detail-link {
    color: white;
    text-decoration: none;
    padding: 8px 14px;
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-detail-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Tur Arama Alanı */
.tour-search-area {
    width: 100%;
    display: block;
}



/* Rezervasyon Formu */
.reservation-form-area {
    width: 100%;
    display: block;
}

.quick-reservation-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-group-labeled {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group-labeled label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group-labeled input,
.form-group-labeled select,
.form-group-labeled textarea {
    padding: 9px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.88rem;
    transition: all 0.3s;
    background: white;
    width: 100%;
}

.form-group-labeled input:disabled,
.form-group-labeled select:disabled,
.form-group-labeled textarea:disabled {
    background: #fafafa;
    cursor: not-allowed;
    opacity: 0.7;
    color: #999;
}

.form-group-labeled input:focus,
.form-group-labeled select:focus,
.form-group-labeled textarea:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

/* Number Input Group */
.number-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    transition: all 0.3s;
    height: 38px;
}

.number-input-group:focus-within {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.number-input-group input {
    flex: 1;
    border: none !important;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 8px;
    box-shadow: none !important;
    background: white !important;
    min-width: 0;
}

.number-input-group input:disabled {
    background: #fafafa !important;
    color: #999;
}

.btn-decrease,
.btn-increase {
    width: 34px;
    border: none;
    background: #f8f9fa;
    color: #e74c3c;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-decrease {
    border-right: 1px solid #e9ecef;
}

.btn-increase {
    border-left: 1px solid #e9ecef;
}

.btn-decrease:hover:not(:disabled),
.btn-increase:hover:not(:disabled) {
    background: #e74c3c;
    color: white;
}

.btn-decrease:active:not(:disabled),
.btn-increase:active:not(:disabled) {
    transform: scale(0.95);
}

.btn-decrease:disabled,
.btn-increase:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #fafafa;
}

.form-group-labeled textarea {
    font-family: inherit;
    resize: vertical;
    min-height: 55px;
}

.form-extras {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 2px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.82rem;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #e74c3c;
}

.checkbox-label input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.checkbox-label:has(input:disabled) {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-reservation {
    padding: 12px 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 12px rgba(231, 76, 60, 0.3);
    margin-top: 6px;
}

.btn-submit-reservation:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(231, 76, 60, 0.4);
}

.btn-submit-reservation:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit-reservation:disabled {
    background: #95a5a6 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(149, 165, 166, 0.3) !important;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 20px;
}

.success-modal.active {
    opacity: 1;
}

.success-modal-content {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.success-modal.active .success-modal-content {
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 3rem;
    color: white;
}

.success-modal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.reservation-number {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.reservation-number strong {
    color: #e74c3c;
    font-size: 1.4rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
}

.modal-actions .btn {
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.modal-actions .btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.modal-actions .btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.modal-actions .btn-secondary {
    background: #95a5a6;
    color: white;
}

.modal-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Rezervasyon Form Alanı */
.reservation-form-area {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 968px) {
    .reservation-grid {
        gap: 0;
    }
    
    .reservation-form-area {
        padding-top: 25px;
        margin-top: 25px;
    }
    
    .search-reservation-box {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .search-reservation-box {
        padding: 24px 18px;
        border-radius: 12px;
    }
    
    .reservation-grid {
        gap: 0;
    }
    
    .reservation-form-area {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .tour-search-area h3,
    .reservation-form-area h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .quick-reservation-form {
        gap: 10px;
    }
    
    .form-extras {
        flex-direction: column;
        gap: 8px;
        padding: 4px 0;
    }
    
    .selected-tour-badge {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px;
    }
    
    .tour-detail-link {
        align-self: flex-start;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .no-tour-selected {
        font-size: 0.82rem;
        padding: 10px;
    }
    
    .form-group-labeled {
        gap: 4px;
    }
    
    .form-group-labeled label {
        font-size: 0.75rem;
    }
    
    .form-group-labeled input,
    .form-group-labeled select,
    .form-group-labeled textarea {
        padding: 8px 9px;
        font-size: 0.82rem;
    }
    
    .number-input-group {
        height: 34px;
    }
    
    .btn-decrease,
    .btn-increase {
        width: 30px;
        font-size: 0.8rem;
    }
    
    .number-input-group input {
        font-size: 0.85rem;
    }
    
    .checkbox-label {
        font-size: 0.75rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }
    
    .form-extras {
        flex-direction: column;
        gap: 6px;
    }
    
    .btn-submit-reservation {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .success-modal-content {
        padding: 40px 25px;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
    }
    
    .success-icon i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .search-reservation-box {
        padding: 20px 16px;
    }
    
    .reservation-grid {
        gap: 0;
    }
    
    .reservation-form-area {
        padding-top: 18px;
        margin-top: 18px;
        border-top-width: 1px;
    }
    
    .form-row-2 {
        gap: 7px;
    }
    
    .form-group-labeled label {
        font-size: 0.72rem;
    }
    
    .form-group-labeled input,
    .form-group-labeled select,
    .form-group-labeled textarea {
        padding: 7px 8px;
        font-size: 0.8rem;
    }
    
    .number-input-group {
        height: 32px;
    }
    
    .btn-decrease,
    .btn-increase {
        width: 28px;
        font-size: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.7rem;
    }
    
    .form-extras {
        flex-direction: column;
        gap: 5px;
    }
}


/* ============================================
   FOOTER - Siyah Kırmızı Tema
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.footer-section h4 {
    color: #e74c3c;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, transparent 100%);
}

.footer-about {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.footer-company-title {
    font-size: 14px;
    color: #909090;
    margin-bottom: 12px;
    font-style: italic;
}

.footer-certificate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

.footer-logo {
    margin-top: 20px;
}

.tursab-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0.9);
    transition: all 0.3s;
}

.tursab-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0b0b0;
    transition: all 0.3s;
}

.footer-contact-item:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.footer-contact-item i {
    color: #e74c3c;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    flex: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '▸';
    color: #e74c3c;
    font-size: 12px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #e74c3c;
    padding-left: 8px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-social-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #909090;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.btn-phone {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.btn-email {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-social-buttons {
        justify-content: center;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .float-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}


/* ============================================
   RESERVATION SUCCESS MODAL - Minimalist
   ============================================ */

.reservation-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.reservation-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: all 0.3s ease;
    text-align: center;
}

.reservation-success-modal.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    color: #6c757d;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.modal-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success-icon i {
    font-size: 40px;
    color: white;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.modal-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin: 0 0 30px 0;
}

.reservation-number-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.reservation-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.reservation-number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.reservation-number-text {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e74c3c;
    background: white;
    border-radius: 10px;
    color: #e74c3c;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.modal-info {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 30px 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-btn {
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-btn i {
    font-size: 18px;
}

.modal-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.modal-btn-secondary {
    background: white;
    color: #495057;
    border: 2px solid #dee2e6;
}

.modal-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

/* Responsive Modal */
@media (max-width: 576px) {
    .modal-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .modal-success-icon {
        width: 70px;
        height: 70px;
    }
    
    .modal-success-icon i {
        font-size: 35px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-subtitle {
        font-size: 14px;
    }
    
    .reservation-number-text {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .copy-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .modal-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .modal-btn i {
        font-size: 16px;
    }
}


/* ============================================
   HERO SLIDER - Modern ve Ortalanmış
   ============================================ */

.hero-slider-section {
    padding: 40px 0;
    background: transparent;
}

.slider-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(231, 76, 60, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .slider-container {
        height: 500px;
        border-radius: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        padding: 20px 16px;
    }
    
    .slider-container {
        height: 400px;
        border-radius: 16px;
        margin: 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

/* ============================================
   CONTENT SECTIONS - Modern Kartlar
   ============================================ */

.search-reservation-section,
.categories-section-minimal,
.category-tours-section {
    padding: 60px 0;
}

.search-reservation-box,
.category-section-header {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.section-title-minimal {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* Kategori Kartları */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.category-card span {
    font-size: 16px;
    font-weight: 600;
}

/* Tur Kartları */
.tours-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
}

.tour-card-minimal {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.tour-card-minimal:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image-minimal {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card-minimal:hover .tour-image-minimal img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-minimal:hover .tour-overlay {
    opacity: 1;
}

.tour-view-btn {
    padding: 12px 24px;
    background: white;
    color: var(--primary-color);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.tour-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.tour-info-minimal {
    padding: 20px;
}

.tour-info-minimal h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.tour-price-minimal {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}


/* Rezervasyon Butonu - Header */
.btn-rezervasyon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}

.btn-rezervasyon:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #a93226 100%) !important;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.lang-toggle:hover {
    background: white;
    border-color: var(--primary-color);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 150px;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
}

.lang-switcher.dropdown.active .lang-menu,
.lang-switcher.active .lang-menu,
.lang-switcher:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.lang-menu li {
    list-style: none;
}

.lang-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.lang-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mobile-menu-toggle:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #495057;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active {
    background: #00a651;
    border-color: #00a651;
}

.mobile-menu-toggle.active span {
    background: white;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop/Mobile Visibility */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}


/* ============================================
   YENİ KATEGORİLER - Minimalist ve Modern
   ============================================ */

.categories-section-new {
    padding: 80px 0;
    background: white;
}

.section-header-new {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-new {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-subtitle-new {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.category-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.category-card-new {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card-new:hover::before {
    transform: scaleX(1);
}

.category-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.15);
}

.category-icon-new {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.category-icon-new i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.4s;
}

.category-card-new:hover .category-icon-new {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.category-card-new:hover .category-icon-new i {
    color: white;
}

.category-card-new h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s;
}

.category-card-new:hover h3 {
    color: var(--primary-color);
}

/* Responsive Categories */
@media (max-width: 768px) {
    .categories-section-new {
        padding: 60px 0;
    }
    
    .section-title-new {
        font-size: 28px;
    }
    
    .section-subtitle-new {
        font-size: 14px;
    }
    
    .category-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card-new {
        padding: 24px 16px;
    }
    
    .category-icon-new {
        width: 60px;
        height: 60px;
    }
    
    .category-icon-new i {
        font-size: 28px;
    }
    
    .category-card-new h3 {
        font-size: 14px;
    }
}

/* ============================================
   TUR KARTLARI - Yeni Minimalist Tasarım
   ============================================ */

.category-tours-section {
    padding: 40px 0;
    background: transparent;
}

.category-title-centered {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-title-centered i {
    color: var(--primary-color);
    font-size: 22px;
}

.view-more-wrapper {
    text-align: center;
    margin-top: 24px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-view-all i {
    font-size: 12px;
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(3px);
}

.tours-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tour-card-minimal {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #f5f5f5;
}

.tour-card-minimal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.tour-image-minimal {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.tour-image-minimal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-card-minimal:hover .tour-image-minimal img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(231, 76, 60, 0.85) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-minimal:hover .tour-overlay {
    opacity: 1;
}

.tour-view-btn {
    padding: 10px 24px;
    background: white;
    color: var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    transform: translateY(15px);
}

.tour-card-minimal:hover .tour-view-btn {
    transform: translateY(0);
}

.tour-view-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.tour-info-minimal {
    padding: 12px 14px;
}

.tour-info-minimal h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-light);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-meta i {
    font-size: 11px;
}

.tour-price-minimal {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
}

/* Responsive Tours */
@media (max-width: 1024px) {
    .tours-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .category-tours-section {
        padding: 30px 0;
    }
    
    .category-title-centered {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .category-title-centered i {
        font-size: 18px;
    }
    
    .tours-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tour-image-minimal {
        height: 150px;
    }
    
    .tour-info-minimal {
        padding: 10px 12px;
    }
    
    .tour-info-minimal h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .tour-meta {
        font-size: 11px;
    }
    
    .tour-price-minimal {
        font-size: 15px;
    }
    
    .view-more-wrapper {
        margin-top: 20px;
    }
    
    .btn-view-all {
        padding: 8px 24px;
        font-size: 13px;
    }
}


/* ============================================
   POPÜLER BÖLGELER - Yeni Etkileyici Tasarım
   ============================================ */

.popular-regions-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    position: relative;
    overflow: hidden;
}

.popular-regions-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.popular-regions-new::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.regions-header-new {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.regions-title-new {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.regions-title-new i {
    color: var(--primary-color);
    font-size: 32px;
}

.regions-subtitle-new {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.regions-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.region-card-new {
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.region-card-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.region-card-new:hover::before {
    transform: scaleY(1);
}

.region-card-new:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.2);
}

.region-card-new > i:first-child {
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.region-card-new:hover > i:first-child {
    transform: scale(1.2);
}

.region-card-new span {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
}

.region-card-new:hover span {
    color: var(--primary-color);
}

.region-arrow {
    font-size: 14px;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.region-card-new:hover .region-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-color);
}

/* Responsive Regions */
@media (max-width: 1024px) {
    .regions-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .popular-regions-new {
        padding: 60px 0;
    }
    
    .regions-title-new {
        font-size: 28px;
        flex-direction: column;
        gap: 8px;
    }
    
    .regions-title-new i {
        font-size: 28px;
    }
    
    .regions-subtitle-new {
        font-size: 14px;
    }
    
    .regions-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .region-card-new {
        padding: 16px 20px;
    }
    
    .region-card-new > i:first-child {
        font-size: 18px;
    }
    
    .region-card-new span {
        font-size: 14px;
    }
}


/* ============================================
   FOOTER - Siyah Kırmızı Tema (Güncellendi)
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
    border-top: 4px solid var(--primary-color) !important;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.footer-about {
    font-size: 15px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 12px;
}

.footer-company-title {
    font-size: 14px;
    color: #909090;
    margin-bottom: 12px;
    font-style: italic;
}

.footer-certificate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.footer-logo {
    margin-top: 20px;
}

.tursab-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0.9);
    transition: all 0.3s;
}

.tursab-logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0b0b0;
    transition: all 0.3s;
}

.footer-contact-item:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    flex: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '▸';
    color: var(--primary-color);
    font-size: 12px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-social-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #909090;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-btn:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.2);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #909090;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
}


/* Popüler Destinasyonlar */
.popular-regions-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.region-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.region-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.region-card i {
    font-size: 20px;
    color: #667eea;
    transition: color 0.3s ease;
}

.region-card:hover i {
    color: white;
}

.region-card span {
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .region-card {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .region-card i {
        font-size: 18px;
    }
}


/* Ana sayfa rezervasyon formu - Ek hizmetler checkbox'ları */
.quick-reservation-form .form-extras {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.quick-reservation-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    flex: 0 1 auto;
    white-space: nowrap;
    font-size: 14px;
}

.quick-reservation-form .checkbox-label:hover {
    border-color: #667eea;
    background: #f0f4ff;
    transform: translateY(-1px);
}

.quick-reservation-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    accent-color: #667eea;
}

.quick-reservation-form .checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: #667eea;
    background: #f0f4ff;
}

.quick-reservation-form .checkbox-label:has(input[type="checkbox"]:checked) span {
    color: #667eea;
    font-weight: 600;
}

.quick-reservation-form .checkbox-label span {
    color: #333;
    user-select: none;
}

@media (max-width: 768px) {
    .quick-reservation-form .form-extras {
        flex-direction: row;
        gap: 10px;
    }
    
    .quick-reservation-form .checkbox-label {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .quick-reservation-form .form-extras {
        flex-direction: column;
    }
    
    .quick-reservation-form .checkbox-label {
        width: 100%;
    }
}


/* ============================================
   RTL (Arapça) Düzeltmeleri
   ============================================ */

/* Genel RTL düzeltmeleri */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .container {
    direction: rtl;
}

/* Hero Slider RTL düzeltmeleri */
[dir="rtl"] .hero-slider-section {
    direction: ltr;
}

[dir="rtl"] .slider-container {
    direction: ltr;
}

[dir="rtl"] .hero-content {
    text-align: center;
    direction: ltr;
}

[dir="rtl"] .hero-content .container {
    direction: ltr;
}

[dir="rtl"] .hero-title {
    direction: rtl;
    text-align: center;
    display: block;
    width: 100%;
}

[dir="rtl"] .hero-subtitle {
    direction: rtl;
    text-align: center;
    display: block;
    width: 100%;
}

[dir="rtl"] .hero-buttons {
    direction: ltr;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

[dir="rtl"] .btn-hero-primary,
[dir="rtl"] .btn-hero-secondary {
    direction: ltr;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

[dir="rtl"] .slider-btn {
    direction: ltr;
}

[dir="rtl"] .slider-btn.prev {
    right: auto;
    left: 20px;
}

[dir="rtl"] .slider-btn.next {
    left: auto;
    right: 20px;
}

[dir="rtl"] .slider-dots {
    direction: ltr;
}

/* Header RTL düzeltmeleri */
[dir="rtl"] .main-header .header-content {
    flex-direction: row-reverse;
}

[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

/* Rezervasyon formu RTL düzeltmeleri */
[dir="rtl"] .search-reservation-section {
    direction: ltr;
}

[dir="rtl"] .search-reservation-box {
    direction: ltr;
}

[dir="rtl"] .reservation-grid {
    direction: ltr;
}

[dir="rtl"] .tour-search-area {
    direction: ltr;
}

[dir="rtl"] .reservation-form-area {
    direction: ltr;
}

[dir="rtl"] .search-header h3 {
    direction: rtl;
}

[dir="rtl"] .form-row-2 {
    direction: ltr;
}

[dir="rtl"] .form-group-labeled {
    direction: ltr;
}

[dir="rtl"] .form-group-labeled label {
    direction: rtl;
    text-align: right;
    display: block;
    width: 100%;
}

[dir="rtl"] .number-input-group {
    direction: ltr;
}

[dir="rtl"] .form-extras {
    direction: ltr;
    justify-content: flex-start;
}

[dir="rtl"] .checkbox-label {
    flex-direction: row;
    direction: ltr;
}

[dir="rtl"] .index-search-box {
    direction: ltr;
}

[dir="rtl"] .index-category-tabs {
    direction: ltr;
}

[dir="rtl"] .category-tab {
    direction: ltr;
}

/* Tur kartları RTL düzeltmeleri */
[dir="rtl"] .category-tours-section {
    direction: ltr;
}

[dir="rtl"] .category-title-centered {
    direction: rtl;
    text-align: center;
}

[dir="rtl"] .tours-grid-minimal {
    direction: ltr;
}

[dir="rtl"] .tour-card-minimal {
    direction: ltr;
}

[dir="rtl"] .tour-info-minimal h3 {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .tour-meta {
    direction: ltr;
    justify-content: flex-start;
}

[dir="rtl"] .view-more-wrapper {
    direction: ltr;
    text-align: center;
}

/* Popüler bölgeler RTL düzeltmeleri */
[dir="rtl"] .regions-grid,
[dir="rtl"] .regions-grid-new {
    direction: ltr;
}

[dir="rtl"] .region-card,
[dir="rtl"] .region-card-new {
    direction: rtl;
}

/* Footer RTL düzeltmeleri */
[dir="rtl"] .footer-content {
    direction: rtl;
}

[dir="rtl"] .footer-section {
    text-align: right;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

/* Floating buttons RTL düzeltmeleri */
[dir="rtl"] .floating-contact {
    right: auto;
    left: 20px;
}

/* Modal RTL düzeltmeleri */
[dir="rtl"] .modal-card {
    direction: ltr;
    text-align: center;
}

[dir="rtl"] .modal-actions {
    direction: ltr;
}

/* Kampanya banner RTL düzeltmeleri */
[dir="rtl"] .campaign-banner {
    direction: ltr;
    text-align: center;
}

/* Arama sonuçları RTL düzeltmeleri */
[dir="rtl"] .index-search-results {
    direction: ltr;
}

[dir="rtl"] .index-result-card {
    direction: rtl;
}

[dir="rtl"] .result-card-actions {
    direction: ltr;
}

/* Mobil menü RTL düzeltmeleri */
[dir="rtl"] .mobile-menu {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

[dir="rtl"] .mobile-menu.active {
    transform: translateX(0);
}

[dir="rtl"] .mobile-nav ul {
    text-align: right;
}

[dir="rtl"] .mobile-menu-header {
    flex-direction: row-reverse;
}

[dir="rtl"] .mobile-menu-close {
    margin-left: 0;
    margin-right: auto;
}

/* Input ve form elemanları her zaman LTR */
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] input[type="number"],
[dir="rtl"] input[type="date"],
[dir="rtl"] textarea,
[dir="rtl"] select {
    direction: ltr;
    text-align: left;
}

/* Butonlar her zaman LTR */
[dir="rtl"] button,
[dir="rtl"] .btn,
[dir="rtl"] a.btn,
[dir="rtl"] .submit-btn,
[dir="rtl"] .btn-submit-reservation,
[dir="rtl"] .btn-view-all,
[dir="rtl"] .modal-btn,
[dir="rtl"] .wa-btn,
[dir="rtl"] .tour-view-btn {
    direction: ltr !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

[dir="rtl"] button i,
[dir="rtl"] .btn i,
[dir="rtl"] a.btn i {
    margin-right: 8px;
    margin-left: 0;
}


/* Mobil Menü Temel Stiller */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
