* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        :root {
            --primary-red: #e30613;
            --dark-red: #c00510;
            --light-red: #ff1a2c;
            --text-dark: #1a1a1a;
            --text-gray: #666;
            --bg-light: #f5f5f5;
            --white: #ffffff;
            --border-gray: #e0e0e0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Loading Screen - GÜÇLENDİRİLMİŞ */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loading-logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .loading-bar {
            width: 200px;
            height: 4px;
            background: #f0f0f0;
            border-radius: 2px;
            margin-top: 20px;
            overflow: hidden;
        }

        .loading-progress {
            height: 100%;
            background: var(--primary-red);
            width: 0%;
            animation: loading 1.5s ease-out forwards;
        }

        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }

        /* Page Container */
        .page {
            display: none;
            animation: fadeIn 0.5s ease;
            min-height: 100vh;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Integrated Header */
        .main-header {
            background: var(--white);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-gray);
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
            justify-content: center;
        }

        .btn-back {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 2px solid var(--border-gray);
            background: var(--white);
            color: var(--primary-red);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .btn-back:hover {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
            transform: translateX(-3px);
        }

        .btn-back.visible {
            display: flex !important;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }

        .contact-item:hover {
            color: var(--primary-red);
        }

        .contact-item i {
            color: var(--primary-red);
            font-size: 16px;
        }

        .logo-section {
            text-align: center;
            flex: 1;
        }

        .logo-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .logo-text:hover {
            transform: none;
        }

        .logo-year {
            font-size: 13px;
            color: var(--primary-red);
            font-weight: 700;
            margin-top: -5px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            justify-content: flex-end;
        }

        .btn-auth {
            padding: 10px 22px;
            border: 2px solid var(--border-gray);
            background: var(--white);
            color: var(--text-dark);
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .btn-auth:hover {
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .btn-auth.primary {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
        }

        .btn-auth.primary:hover {
            background: var(--dark-red);
            box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-red);
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        /* Navigation - Integrated */
        .main-nav {
            background: var(--white);
        }

        .nav-content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 55px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 18px 25px;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            border-bottom: 3px solid transparent;
        }

        .nav-links a:hover {
            color: var(--primary-red);
            border-bottom-color: var(--primary-red);
            background: rgba(227, 6, 19, 0.02);
        }

        .nav-links a i {
            font-size: 11px;
            color: #999;
            transition: transform 0.3s;
        }

        .nav-links li:hover > a i {
            transform: rotate(180deg);
        }

        .campaign-link {
            color: var(--primary-red) !important;
        }

        .campaign-link i {
            color: var(--primary-red) !important;
        }

        /* Dropdown */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 260px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            border-radius: 0 0 16px 16px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s;
            z-index: 999;
            border-top: 3px solid var(--primary-red);
            overflow: hidden;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 15px 20px;
            border-bottom: 1px solid #f5f5f5;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .dropdown-item:hover {
            background: #fff5f5;
            color: var(--primary-red);
            padding-left: 25px;
        }

        .dropdown-item i {
            color: var(--primary-red);
            width: 20px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100vh;
            background: var(--white);
            z-index: 2000;
            box-shadow: -5px 0 30px rgba(0,0,0,0.2);
            transition: right 0.4s;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .mobile-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-header {
            padding: 20px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .mobile-menu-close {
            font-size: 24px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 20px;
        }

        .mobile-nav-links li {
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-nav-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 0;
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 16px;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.18), rgba(0,0,0,0.38)), 
                        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=85') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 180px 20px 80px;
            margin-top: 130px;
        }

        .hero-content {
            text-align: center;
            width: 100%;
            max-width: 900px;
        }

        .tursab-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.95);
            padding: 12px 24px;
            border-radius: 30px;
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            animation: fadeInDown 0.8s ease;
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tursab-hero-badge i {
            color: #4CAF50;
            font-size: 18px;
        }

        .hero-title {
            color: var(--white);
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0,0,0,0.3);
            letter-spacing: -1px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.95);
            font-size: 20px;
            margin-bottom: 40px;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeInUp 0.8s ease 0.3s both;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .search-wrapper {
            background: rgba(255,255,255,0.98);
            border-radius: 24px;
            padding: 35px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .search-tabs {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 20px;
        }

        .search-tab {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border: 2px solid var(--border-gray);
            background: var(--white);
            border-radius: 30px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s;
            color: var(--text-gray);
        }

        .search-tab.active {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
            box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
        }

        .search-form {
            display: flex;
            gap: 15px;
            align-items: end;
            flex-wrap: wrap;
        }

        .search-field {
            flex: 1;
            min-width: 200px;
            text-align: left;
        }

        .search-field label {
            display: block;
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 8px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .search-field input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--border-gray);
            border-radius: 12px;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-field input:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
            outline: none;
        }

        .search-field select:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
            outline: none;
        }

        .btn-search {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border: none;
            padding: 16px 40px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            height: 56px;
            box-shadow: 0 8px 25px rgba(227, 6, 19, 0.3);
        }

        .btn-search:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(227, 6, 19, 0.4);
        }

        /* Featured Tours */
        .featured-tours {
            padding: 80px 0;
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 16px;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            perspective: 1000px;
        }

        .featured-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            opacity: 0;
            transform: translateY(60px) rotateX(15deg);
            animation: cardEnter 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .featured-card:nth-child(1) { animation-delay: 0.1s; }
        .featured-card:nth-child(2) { animation-delay: 0.2s; }
        .featured-card:nth-child(3) { animation-delay: 0.3s; }
        .featured-card:nth-child(4) { animation-delay: 0.4s; }

        @keyframes cardEnter {
            0% {
                opacity: 0;
                transform: translateY(60px) rotateX(15deg) scale(0.9);
            }
            60% {
                transform: translateY(-10px) rotateX(0deg) scale(1.02);
            }
            100% {
                opacity: 1;
                transform: translateY(0) rotateX(0deg) scale(1);
            }
        }

        .featured-card:hover {
            transform: translateY(-15px) scale(1.03) !important;
            box-shadow: 0 25px 50px rgba(227, 6, 19, 0.15);
        }

        .featured-image {
            height: 200px;
            position: relative;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .featured-card:hover .featured-image img {
            transform: scale(1.1);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-red);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .featured-content {
            padding: 20px;
        }

        .featured-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 12px;
            color: var(--text-gray);
        }

        .featured-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .featured-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

        .featured-price {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary-red);
        }

        .featured-price span {
            font-size: 12px;
            color: var(--text-gray);
        }

        .btn-reserve {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .google-reviews-box {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            background: var(--white);
            padding: 25px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .google-reviews-box:hover {
            transform: translateY(-5px);
        }

        .google-logo-big {
            width: 60px;
            height: 60px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            font-weight: bold;
            color: #4285F4;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .reviews-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .reviews-stars {
            color: #FFC107;
            font-size: 24px;
            margin-bottom: 5px;
        }

        .reviews-count {
            color: var(--text-gray);
            font-size: 14px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
        }

        .review-meta h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 3px;
        }

        .review-stars-small {
            color: #FFC107;
            font-size: 12px;
        }

        .review-text {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.7;
            font-style: italic;
        }

        .review-date {
            margin-top: 15px;
            font-size: 13px;
            color: #999;
        }

        /* Campaigns Section */
        .campaigns-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .campaigns-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 25px;
        }

        .campaign-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            position: relative;
            height: 400px;
            cursor: pointer;
            transition: all 0.4s;
        }

        .campaign-card:hover {
            transform: translateY(-5px);
        }

        .campaign-card.large {
            display: flex;
        }

        .campaign-image {
            width: 50%;
            position: relative;
            overflow: hidden;
        }

        .campaign-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }

        .campaign-card:hover .campaign-image img {
            transform: scale(1.1);
        }

        .campaign-content {
            width: 50%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--white);
        }

        .campaign-tag {
            display: inline-block;
            background: var(--primary-red);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 20px;
            width: fit-content;
        }

        .campaign-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .campaign-features {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .feature-box {
            background: rgba(255,255,255,0.1);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature-box .number {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-red);
            display: block;
        }

        .feature-box .text {
            font-size: 11px;
            opacity: 0.9;
        }

        .slider-controls {
            position: absolute;
            bottom: 30px;
            left: 40px;
            display: flex;
            gap: 12px;
        }

        .arrow-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(255,255,255,0.3);
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            font-size: 18px;
        }

        .arrow-btn:hover {
            background: var(--white);
            color: var(--text-dark);
        }

        .slider-dots {
            position: absolute;
            bottom: 30px;
            right: 40px;
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--primary-red);
            width: 30px;
            border-radius: 5px;
        }

        .campaign-card.small {
            position: relative;
        }

        .campaign-card.small .campaign-image {
            width: 100%;
            height: 100%;
        }

        .campaign-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--light-red) 100%);
            color: var(--white);
            padding: 15px 25px;
            font-weight: 700;
            font-size: 15px;
            z-index: 2;
        }



        /* Campaign visual polish */
        .campaign-card.large > .campaign-image,
        .campaign-card.large > .campaign-content {
            width: 50%;
        }
        .campaign-card.small .campaign-overlay {
            background: linear-gradient(90deg, var(--primary-red) 0%, var(--light-red) 100%);
        }
        /* Categories */
        .tour-categories {
            padding: 80px 0;
            background: var(--white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .category-card {
            position: relative;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s;
        }

        .category-card:hover {
            transform: translateY(-10px);
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s;
        }

        .category-card:hover img {
            transform: scale(1.15);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: var(--white);
        }

        .category-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .category-count {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Features */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--white);
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            transition: all 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-15px);
        }

        .feature-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: var(--primary-red);
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            background: var(--primary-red);
            color: var(--white);
        }

        .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .feature-desc {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Category Page */
        .category-page {
            padding-top: 150px;
            min-height: 100vh;
            background: var(--bg-light);
        }

        .category-header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--white);
            padding: 60px 0;
            text-align: center;
        }

        .category-header h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .category-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .filters {
            background: var(--white);
            padding: 25px;
            border-radius: 16px;
            margin-bottom: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .filter-group {
            flex: 1;
            min-width: 200px;
        }

        .filter-group label {
            display: block;
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .filter-group select {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--border-gray);
            border-radius: 10px;
            font-size: 14px;
            cursor: pointer;
        }


        .filters-toggle-wrap {
            margin-bottom: 30px;
        }

        .filters-toggle-btn {
            display: none;
            width: 100%;
            border: none;
            border-radius: 14px;
            background: var(--white);
            color: var(--text-dark);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 14px 16px;
            font-size: 14px;
            font-weight: 700;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            gap: 12px;
        }

        .filters-toggle-left {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .filters-toggle-left i {
            color: var(--primary-red);
            font-size: 16px;
        }

        .filters-toggle-arrow {
            transition: transform 0.3s ease;
            color: var(--text-gray);
        }

        .filters-toggle-btn.active .filters-toggle-arrow {
            transform: rotate(180deg);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tour-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s;
            cursor: pointer;
        }

        .tour-card:hover {
            transform: translateY(-10px);
        }

        .disabled-event-card {
            cursor: default !important;
        }

        .disabled-event-card:hover {
            transform: none !important;
        }

        .tour-image {
            height: 220px;
            position: relative;
            overflow: hidden;
        }

        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }

        .tour-card:hover .tour-image img {
            transform: scale(1.1);
        }

        .tour-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-red);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
        }

        .tour-info {
            padding: 25px;
        }

        .tour-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .tour-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .tour-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 2px solid #f5f5f5;
        }

        .tour-price {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-red);
        }

        .btn-detail {
            background: transparent;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-detail:hover {
            background: var(--primary-red);
            color: var(--white);
        }

        /* Tour Detail Page */
        .tour-detail-page {
            padding-top: 150px;
            min-height: 100vh;
            background: var(--bg-light);
        }

        .tour-hero {
            height: 500px;
            position: relative;
            overflow: hidden;
        }

        .tour-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .tour-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: var(--white);
        }

        .tour-detail-content {
            max-width: 1200px;
            margin: -80px auto 0;
            padding: 0 20px 60px;
            position: relative;
            z-index: 10;
        }

        .tour-detail-card {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .detail-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .detail-info h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .detail-meta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .detail-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: var(--text-gray);
        }

        .detail-meta-item i {
            color: var(--primary-red);
            font-size: 20px;
        }

        .detail-description {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .detail-highlights {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 16px;
            margin-bottom: 30px;
        }

        .detail-highlights h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .highlight-list {
            list-style: none;
        }

        .highlight-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: var(--text-gray);
        }

        .highlight-list li i {
            color: var(--primary-red);
        }

        .booking-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--white);
            padding: 30px;
            border-radius: 20px;
            position: sticky;
            top: 170px;
        }

        .booking-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 5px;
        }

        .booking-price-note {
            font-size: 14px;
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            margin-bottom: 8px;
            opacity: 0.9;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            background: rgba(255,255,255,0.1);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .price-calculation {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .calc-row.total {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-red);
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 10px;
            margin-top: 10px;
        }

        .btn-book {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-book:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(227, 6, 19, 0.4);
        }



        /* Safranbolu Otelleri - Otel Rezervasyon Sayfası */
        .hotel-page-intro {
            background: var(--white);
            border-radius: 18px;
            padding: 24px;
            margin-bottom: 26px;
            box-shadow: 0 6px 24px rgba(0,0,0,0.06);
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 18px;
            align-items: center;
        }

        .hotel-page-intro h2 {
            font-size: 26px;
            line-height: 1.2;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .hotel-page-intro p {
            color: var(--text-gray);
            font-size: 14px;
        }

        .hotel-search-panel {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .hotel-search-field label {
            display: block;
            font-size: 12px;
            color: var(--text-gray);
            margin-bottom: 7px;
            font-weight: 700;
        }

        .hotel-search-field input,
        .hotel-search-field select {
            width: 100%;
            padding: 13px 12px;
            border: 2px solid var(--border-gray);
            border-radius: 12px;
            font-size: 13px;
            font-family: inherit;
            background: var(--white);
        }

        .hotel-reservation-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .hotel-list-loading,
        .hotel-list-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--text-gray);
            font-size: 15px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .hotel-list-loading i {
            color: var(--primary-red);
            margin-right: 8px;
        }

        .hotel-reservation-card {
            background: var(--white);
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 330px 1fr;
            transition: all 0.3s ease;
        }

        .hotel-reservation-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 45px rgba(0,0,0,0.11);
        }

        .hotel-reservation-image {
            min-height: 285px;
            position: relative;
            overflow: hidden;
        }

        .hotel-reservation-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hotel-location-badge {
            position: absolute;
            left: 16px;
            top: 16px;
            background: rgba(255,255,255,0.94);
            color: var(--primary-red);
            padding: 8px 13px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 800;
            box-shadow: 0 6px 18px rgba(0,0,0,0.14);
        }

        .hotel-reservation-content {
            padding: 24px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 22px;
        }

        .hotel-name {
            font-size: 23px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .hotel-rating {
            color: #FFC107;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .hotel-desc {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .hotel-facilities {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hotel-facility {
            background: #f8f9fa;
            border: 1px solid #eee;
            color: var(--text-dark);
            border-radius: 20px;
            padding: 7px 10px;
            font-size: 11px;
            font-weight: 700;
        }

        .room-options {
            display: grid;
            gap: 10px;
        }

        .room-option {
            border: 2px solid #f0f0f0;
            border-radius: 14px;
            padding: 14px;
            background: #fff;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 10px;
            align-items: center;
        }

        .room-title {
            font-size: 14px;
            font-weight: 800;
            margin-bottom: 3px;
            color: var(--text-dark);
        }

        .room-detail {
            font-size: 12px;
            color: var(--text-gray);
        }

        .room-price {
            text-align: right;
            color: var(--primary-red);
            font-size: 18px;
            font-weight: 900;
            white-space: nowrap;
        }

        .room-price span {
            display: block;
            font-size: 10px;
            color: var(--text-gray);
            font-weight: 600;
        }

        .btn-room-select {
            grid-column: 1 / -1;
            border: none;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-room-select:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(227,6,19,0.22);
        }

        @media (max-width: 1024px) {
            .hotel-page-intro,
            .hotel-reservation-card,
            .hotel-reservation-content {
                grid-template-columns: 1fr;
            }

            .hotel-search-panel {
                grid-template-columns: 1fr 1fr;
            }

            .hotel-reservation-image {
                min-height: 240px;
            }
        }

        @media (max-width: 768px) {
            .hotel-page-intro {
                padding: 18px;
                border-radius: 16px;
            }

            .hotel-page-intro h2 {
                font-size: 21px;
            }

            .hotel-search-panel {
                grid-template-columns: 1fr 1fr;
                gap: 9px;
            }

            .hotel-search-field input,
            .hotel-search-field select {
                padding: 11px 10px;
                font-size: 12px;
            }

            .hotel-reservation-content {
                padding: 18px;
                gap: 16px;
            }

            .hotel-name {
                font-size: 20px;
            }

            .room-option {
                padding: 12px;
            }
        }

        /* Footer - Düzeltilmiş */
        footer {
            background: #0f0f1e;
            color: var(--white);
            padding: 60px 0 0;
            margin-top: 0;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-brand {
            padding-right: 20px;
        }

        .footer-brand .logo-text {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .footer-desc {
            font-size: 15px;
            line-height: 1.8;
            color: #a0a0a0;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .social-links a:hover {
            background: var(--primary-red);
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            padding-bottom: 12px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-red);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: #a0a0a0;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .footer-links a::before {
            content: "›";
            color: var(--primary-red);
            font-size: 18px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .footer-contact {
            margin-top: 10px;
        }

        .contact-line {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            color: #a0a0a0;
            font-size: 15px;
            transition: all 0.3s;
        }

        .contact-line:hover {
            color: var(--white);
        }

        .contact-line i {
            color: var(--primary-red);
            margin-top: 3px;
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            text-align: center;
            font-size: 14px;
            color: #666;
        }

        /* Chat Widget */
        .chat-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #ff6b6b 0%, var(--primary-red) 100%);
            color: var(--white);
            padding: 18px 28px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 8px 30px rgba(227, 6, 19, 0.4);
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s;
            animation: pulse 2s infinite;
        }

        .chat-widget:hover {
            transform: translateY(-5px);
        }

        .chat-widget.whatsapp-widget {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
        }


        /* Toast */
        .toast {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #1a1a2e;
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            z-index: 3000;
            opacity: 0;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border: 2px solid var(--border-gray);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
        }


        /* Hizmet Verilen İller Bölümü */
        .service-cities-section {
            padding: 50px 0 30px 0;
        }

        .service-cities-header {
            margin-bottom: 30px;
        }

        .service-cities-grid {
            gap: 15px;
        }

        @media (max-width: 768px) {
            .service-cities-section {
                padding: 26px 0 14px 0;
            }

            .service-cities-container {
                padding: 0 14px;
            }

            .service-cities-header {
                margin-bottom: 16px;
            }

            .service-cities-header p {
                font-size: 11px !important;
                letter-spacing: 1px !important;
                margin-bottom: 4px !important;
            }

            .service-cities-header h3 {
                font-size: 17px !important;
            }

            .service-cities-grid {
                display: grid !important;
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .service-city-card {
                padding: 10px 12px !important;
                gap: 8px !important;
                border-radius: 10px !important;
            }

            .service-city-card > div:first-child {
                width: 28px !important;
                height: 28px !important;
                border-radius: 7px !important;
            }

            .service-city-card > div:first-child i {
                font-size: 13px !important;
            }

            .service-city-card div[style*="font-weight: 700"] {
                font-size: 13px !important;
            }

            .service-city-card div[style*="font-size: 11px"] {
                font-size: 10px !important;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .header-left {
                display: none;
            }
            
            .featured-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .campaigns-grid {
                grid-template-columns: 1fr;
            }
            
            .campaign-card.large {
                flex-direction: column;
                height: auto;
            }
            
            .campaign-image, .campaign-content {
                width: 100%;
            }
            
            .campaign-image {
                height: 250px;
            }
            
            .categories-grid, .features-grid, .reviews-grid, .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .detail-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Hakkımızda Sayfası Mobil Düzeltmeleri */
        @media (max-width: 768px) {
            #aboutPage {
                padding-top: 110px !important;
                padding-bottom: 50px !important;
            }

            #aboutPage .about-feature-grid {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 16px !important;
                margin-bottom: 36px !important;
            }

            #aboutPage .about-feature-card {
                padding: 28px 20px !important;
                border-radius: 18px !important;
                min-height: auto !important;
            }

            #aboutPage .about-feature-card h3 {
                font-size: 26px !important;
                line-height: 1.2 !important;
                white-space: normal !important;
                word-break: normal !important;
                overflow-wrap: break-word !important;
                hyphens: none !important;
                max-width: 100% !important;
                text-align: center !important;
            }

            #aboutPage .about-feature-card p,
            #aboutPage .about-feature-card strong {
                white-space: normal !important;
                word-break: normal !important;
                overflow-wrap: break-word !important;
                hyphens: none !important;
            }

            #aboutPage .about-feature-card > div:first-child {
                width: 68px !important;
                height: 68px !important;
                margin: 0 auto 18px auto !important;
            }

            #aboutPage .about-feature-card > div:first-child i {
                font-size: 28px !important;
            }

            #aboutPage .container {
                padding: 0 14px !important;
            }

            #aboutPage h1 {
                font-size: 28px !important;
                line-height: 1.15 !important;
                margin-bottom: 18px !important;
            }

            #aboutPage h2 {
                font-size: 20px !important;
                line-height: 1.2 !important;
                white-space: normal !important;
                word-break: normal !important;
                overflow-wrap: normal !important;
            }

            #aboutPage p {
                font-size: 15px !important;
                line-height: 1.75 !important;
            }

            #aboutPage > .container > div:first-child {
                margin-bottom: 34px !important;
            }

            #aboutPage > .container > div:nth-child(2) {
                display: grid !important;
                grid-template-columns: 1fr !important;
                gap: 16px !important;
                margin-bottom: 40px !important;
            }

            #aboutPage .about-card {
                padding: 24px 20px !important;
                border-radius: 18px !important;
            }

            #aboutPage .about-card > div:first-child {
                display: flex !important;
                align-items: center !important;
                gap: 12px !important;
                margin-bottom: 16px !important;
                flex-wrap: nowrap !important;
            }

            #aboutPage .about-card > div:first-child > div {
                width: 42px !important;
                height: 42px !important;
                min-width: 42px !important;
                border-radius: 50% !important;
                flex: 0 0 42px !important;
            }

            #aboutPage .about-card > div:first-child i {
                font-size: 18px !important;
            }

            #aboutPage .about-card > div:first-child h2 {
                margin: 0 !important;
                display: block !important;
            }

            #aboutPage > .container > div:nth-child(3) {
                margin-bottom: 36px !important;
            }

            #aboutPage > .container > div:nth-child(3) h2 {
                font-size: 26px !important;
                margin-bottom: 10px !important;
            }

            #aboutPage > .container > div:nth-child(3) p {
                font-size: 15px !important;
                margin-bottom: 24px !important;
            }

            #aboutPage > .container > div:nth-child(3) > div:last-child {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 12px !important;
            }

            #aboutPage .region-card {
                padding: 20px 14px !important;
                border-radius: 14px !important;
            }

            #aboutPage .region-card > div:first-child {
                width: 46px !important;
                height: 46px !important;
                border-radius: 12px !important;
                margin-bottom: 14px !important;
            }

            #aboutPage .region-card > div:first-child i {
                font-size: 20px !important;
            }
        }

        @media (max-width: 768px) {
            .header-right {
                gap: 10px;
            }
            
            .btn-auth span {
                display: none;
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-section {
                margin-top: 74px;
                padding: 100px 15px 40px;
            }
            
            .hero-title {
                font-size: 28px;
            }
            
            .tursab-hero-badge {
                font-size: 11px;
                padding: 10px 16px;
            }
            
            .search-wrapper {
                padding: 20px;
            }
            
            .search-form {
                flex-direction: column;
            }
            
            .btn-search {
                width: 100%;
                justify-content: center;
            }
            
            .featured-grid, .categories-grid, .features-grid, .reviews-grid, .category-grid {
                grid-template-columns: 1fr;
            }
            
            .google-reviews-box {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .footer-brand {
                text-align: center;
                padding-right: 0;
            }
            
            .social-links {
                justify-content: center;
            }
        }
    
        /* Tur Kartı İçerik Stilleri */
        .tour-includes {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .include-section {
            margin-bottom: 12px;
        }

        .include-title {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .include-title.included {
            color: #28a745;
        }

        .include-title.excluded {
            color: #dc3545;
        }

        .include-title.extra {
            color: #fd7e14;
        }

        .include-list {
            font-size: 11px;
            color: var(--text-gray);
            line-height: 1.5;
            padding-left: 18px;
            margin: 0;
        }

        .include-list li {
            margin-bottom: 2px;
        }

        .featured-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .featured-bottom {
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }

    
        .category-info {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255,255,255,0.95);
            color: var(--text-dark);
            padding: 8px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            max-width: 200px;
        }

        .category-card:hover .category-info {
            opacity: 1;
            transform: translateY(0);
        }

        .category-info-title {
            color: var(--primary-red);
            font-size: 10px;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .category-info-list {
            font-size: 10px;
            line-height: 1.4;
            color: #666;
        }

    
        /* Tur Detay 4 Sütun Responsive */
        @media (max-width: 1024px) {
            .detail-grid > div[style*="grid-template-columns: 1fr 1fr 1fr 1fr"] {
                grid-template-columns: 1fr 1fr !important;
            }
        }

        @media (max-width: 768px) {
            .detail-grid > div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
            }
        }

    
        /* Scroll Animation Styles */
        .scroll-animate {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), 
                        transform 0.8s cubic-bezier(0.5, 0, 0, 1);
            will-change: opacity, transform;
        }

        .scroll-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-animate.delay-1 { transition-delay: 0.1s; }
        .scroll-animate.delay-2 { transition-delay: 0.2s; }
        .scroll-animate.delay-3 { transition-delay: 0.3s; }
        .scroll-animate.delay-4 { transition-delay: 0.4s; }
        .scroll-animate.delay-5 { transition-delay: 0.5s; }

        /* Staggered children animation */
        .scroll-animate-children > * {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scroll-animate-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .scroll-animate-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .scroll-animate-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
        .scroll-animate-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
        .scroll-animate-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
        .scroll-animate-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

        .tour-reservation-modal.active {
            display: flex !important;
        }

        .btn-reserve:active {
            transform: scale(0.95);
        }

        .btn-reserve.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .site-logo-img {
            display: inline-block;
            height: auto;
            object-fit: contain;
            vertical-align: middle;
        }

        .site-logo-red {
            content: url('images/logo.png');
        }

        .site-logo-white {
            content: url('images/logo.png');
        }

        .loading-logo-img {
            width: 240px;
            max-width: 62vw;
            animation: pulse 1.5s infinite;
        }

        .header-logo-img {
            width: 155px;
            max-width: 100%;
            transition: all 0.3s;
        }

        .header-logo-img:hover {
            transform: scale(1.05);
        }

        .mobile-logo-img {
            width: 145px;
            max-width: 100%;
        }

        .footer-logo-img {
            width: 170px;
            max-width: 100%;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .header-logo-img {
                width: 125px;
            }

            .mobile-logo-img {
                width: 120px;
            }

            .footer-logo-img {
                width: 145px;
            }

            .loading-logo-img {
                width: 180px;
            }
        }



        /* Mobile compact Google Reviews */
        @media (max-width: 768px) {
            .reviews-section {
                padding: 45px 0;
            }

            .reviews-header {
                margin-bottom: 25px;
            }

            .google-reviews-box {
                flex-direction: row;
                text-align: left;
                gap: 14px;
                padding: 14px 16px;
                border-radius: 16px;
                margin-bottom: 22px;
                width: 100%;
                max-width: 340px;
            }

            .google-logo-big {
                width: 42px;
                height: 42px;
                min-width: 42px;
                font-size: 22px;
            }

            .reviews-info h3 {
                font-size: 18px;
                margin-bottom: 2px;
            }

            .reviews-stars {
                font-size: 16px;
                margin-bottom: 2px;
            }

            .reviews-count {
                font-size: 12px;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .review-card {
                padding: 16px;
                border-radius: 16px;
            }

            .review-header {
                gap: 10px;
                margin-bottom: 12px;
            }

            .review-avatar {
                width: 38px;
                height: 38px;
                min-width: 38px;
                font-size: 15px;
            }

            .review-meta h4 {
                font-size: 14px;
                margin-bottom: 1px;
            }

            .review-stars-small {
                font-size: 11px;
            }

            .review-text {
                font-size: 13px;
                line-height: 1.55;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .review-date {
                margin-top: 10px;
                font-size: 11px;
            }
        }


        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
            }

            .header-right {
                gap: 6px !important;
            }

            .header-right .btn-auth {
                padding: 9px 12px !important;
                border-radius: 18px;
                font-size: 13px;
            }

            .logo-section {
                min-width: 0;
            }

            .header-logo-img {
                width: 106px !important;
            }

            .mobile-menu {
                width: 88%;
                max-width: 360px;
            }

            .mobile-menu-header {
                padding: 16px 18px;
            }

            .mobile-logo-img {
                width: 104px !important;
            }

            .mobile-nav-links {
                padding: 16px 18px 26px;
            }

            .mobile-nav-links li {
                border-bottom: 1px solid #f2f2f2;
            }

            .mobile-nav-links a {
                padding: 15px 0;
                font-size: 14px;
                gap: 12px;
                align-items: center;
                min-height: 48px;
            }

            .mobile-nav-links a span {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                min-width: 0;
                flex: 1;
                line-height: 1.45;
                padding-right: 10px;
                white-space: normal;
            }

            .mobile-nav-links a i:last-child {
                font-size: 12px;
                color: #999;
                flex-shrink: 0;
            }

            .mobile-group-title {
                padding: 18px 0 10px;
                border-bottom: none !important;
            }

            .mobile-group-title span {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                font-size: 12px;
                font-weight: 800;
                letter-spacing: 0.5px;
                text-transform: uppercase;
                color: var(--primary-red);
            }

            .mobile-campaign-link {
                color: var(--primary-red) !important;
                font-weight: 700;
            }

            .main-nav {
                display: none;
            }

            .header-top {
                padding: 10px 0;
            }

            .header-container {
                padding: 0 14px;
            }

            .section-header,
            .reviews-header,
            .category-content,
            .tour-detail-content,
            .container {
                max-width: 100%;
            }

            body, html {
                overflow-x: hidden;
            }
        }



        @media (max-width: 768px) {
            .school-references {
                margin-top: 30px !important;
                padding: 24px 14px !important;
                border-radius: 16px !important;
            }
            .school-references .section-title {
                font-size: 24px !important;
                line-height: 1.2 !important;
                margin-bottom: 10px !important;
            }
            .school-references .section-subtitle {
                font-size: 13px !important;
                line-height: 1.5 !important;
                padding: 0 4px !important;
            }
            .school-references .references-grid {
                grid-template-columns: 1fr !important;
                gap: 14px !important;
                margin-bottom: 24px !important;
            }
            .school-references .reference-card {
                padding: 18px !important;
                border-radius: 14px !important;
            }
            .school-references .reference-card > div:first-child {
                gap: 12px !important;
                margin-bottom: 12px !important;
            }
            .school-references .reference-card > div:first-child > div:first-child {
                width: 44px !important;
                height: 44px !important;
                min-width: 44px !important;
                min-height: 44px !important;
            }
            .school-references .reference-card h4 {
                font-size: 16px !important;
                line-height: 1.35 !important;
            }
            .school-references .reference-card p {
                font-size: 13px !important;
                line-height: 1.55 !important;
            }
            .school-references .reference-card span {
                font-size: 11px !important;
            }
            .school-references > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
                margin-bottom: 24px !important;
            }
            .school-references > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] > div {
                padding: 14px 10px !important;
                border-radius: 14px !important;
            }
            .school-references > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] h3,
            .school-references > .container > div[style*="grid-template-columns: repeat(4, 1fr)"] div[style*="font-size: 36px"] {
                font-size: 24px !important;
            }
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] {
                padding: 24px 18px !important;
                border-radius: 16px !important;
            }
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] h3 {
                font-size: 20px !important;
                line-height: 1.3 !important;
            }
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] p {
                font-size: 14px !important;
                line-height: 1.55 !important;
            }
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] > div:last-child {
                flex-direction: column !important;
                gap: 10px !important;
                align-items: stretch !important;
            }
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] a,
            .school-references > .container > div[style*="background: linear-gradient(135deg, #e30613 0%, #c00510 100%)"] button {
                width: 100% !important;
                justify-content: center !important;
                text-align: center !important;
            }
        }



        @media (max-width: 768px) {
            .main-header {
                box-shadow: 0 2px 14px rgba(0,0,0,0.06);
            }

            .header-top {
                min-height: 68px;
                gap: 8px;
            }

            .logo-section {
                display: flex;
                align-items: center;
                min-height: 42px;
            }

            .header-logo-img,
            .site-logo-img.header-logo-img {
                width: 84px !important;
                max-width: 84px !important;
                height: auto !important;
                object-fit: contain;
            }

            .mobile-menu-btn {
                min-width: 40px;
                min-height: 40px;
            }

            .mobile-menu {
                width: min(90vw, 380px) !important;
                max-width: min(90vw, 380px) !important;
                display: flex;
                flex-direction: column;
            }

            .mobile-menu-header {
                position: sticky;
                top: 0;
                z-index: 2;
                padding: 14px 16px !important;
                min-height: 72px;
            }

            .mobile-logo-img,
            .site-logo-img.mobile-logo-img {
                width: 96px !important;
                max-width: 96px !important;
                height: auto !important;
                object-fit: contain;
            }

            .mobile-menu-close {
                width: 38px;
                height: 38px;
                flex-shrink: 0;
            }

            .mobile-nav-links {
                flex: 1 1 auto;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                padding: 10px 16px 24px !important;
            }

            .mobile-nav-links li {
                min-width: 0;
            }

            .mobile-nav-links a {
                min-height: 46px;
                padding: 13px 0 !important;
                font-size: 14px !important;
                line-height: 1.35;
            }

            .mobile-nav-links a span {
                flex: 1 1 auto;
                min-width: 0;
                white-space: normal;
                word-break: break-word;
            }

            .mobile-nav-links a i:first-child {
                flex-shrink: 0;
            }

            .mobile-group-title {
                padding: 16px 0 8px !important;
                margin-top: 2px;
            }

            .mobile-group-title span {
                line-height: 1.3;
                white-space: normal;
            }

            .legal-page-standalone {
                padding-top: 98px !important;
                padding-bottom: 28px !important;
            }

            .legal-page-standalone .container {
                padding: 0 12px !important;
            }

            .legal-page-standalone .legal-box {
                border-radius: 18px !important;
                padding: 18px 16px !important;
                box-shadow: 0 12px 30px rgba(0,0,0,0.08) !important;
            }

            .legal-page-standalone .legal-header {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
                gap: 12px !important;
                margin-bottom: 18px !important;
                padding-bottom: 16px !important;
            }

            .legal-page-standalone #legalTitle {
                font-size: 22px !important;
                line-height: 1.25 !important;
            }

            .legal-page-standalone .legal-header button {
                width: 100% !important;
                padding: 12px 16px !important;
                font-size: 14px !important;
                border-radius: 14px !important;
                display: inline-flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .legal-page-standalone #legalContent,
            .legal-page-standalone .legal-text-content {
                font-size: 14px !important;
                line-height: 1.75 !important;
                word-break: break-word;
                overflow-wrap: anywhere;
            }

            .legal-page-standalone #legalContent h2,
            .legal-page-standalone #legalContent h3,
            .legal-page-standalone #legalContent h4,
            .legal-page-standalone .legal-text-content h2,
            .legal-page-standalone .legal-text-content h3,
            .legal-page-standalone .legal-text-content h4 {
                font-size: 18px !important;
                line-height: 1.35 !important;
                margin-top: 18px !important;
                margin-bottom: 10px !important;
            }

            .legal-page-standalone #legalContent p,
            .legal-page-standalone #legalContent li,
            .legal-page-standalone .legal-text-content p,
            .legal-page-standalone .legal-text-content li {
                font-size: 14px !important;
                line-height: 1.75 !important;
            }

            .legal-page-standalone #legalContent table,
            .legal-page-standalone .legal-text-content table {
                display: block;
                width: 100% !important;
                overflow-x: auto;
                border-collapse: collapse;
            }
        }



        /* Menu layout fix - desktop & mobile */
        .nav-content {
            overflow: visible;
        }

        .nav-links {
            display: flex;
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav-links li {
            flex: 0 0 auto;
        }

        .nav-links a {
            white-space: nowrap;
            line-height: 1;
        }

        @media (max-width: 1280px) {
            .nav-links a {
                padding: 18px 16px;
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .mobile-nav-links {
                padding: 18px 18px 28px !important;
            }

            .mobile-nav-links a {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                gap: 12px !important;
                padding: 16px 0 !important;
                min-height: 54px !important;
            }

            .mobile-nav-links a span {
                display: flex !important;
                align-items: center !important;
                gap: 10px !important;
                flex: 1 1 auto !important;
                min-width: 0 !important;
                line-height: 1.5 !important;
                padding-right: 14px !important;
                white-space: normal !important;
                word-break: break-word;
            }

            .mobile-nav-links a i:last-child {
                flex: 0 0 14px !important;
                text-align: right !important;
            }

            .mobile-group-title {
                padding: 20px 0 12px !important;
            }
        }


        @media (max-width: 768px) {
            .tour-hero-overlay {
                padding: 24px 20px 78px !important;
            }
            .tour-hero-overlay h1 {
                font-size: 24px !important;
                line-height: 1.2 !important;
                margin-bottom: 10px !important;
            }
        }

    
        @media (max-width: 768px) {
            .filters {
                padding: 16px !important;
                margin-bottom: 18px !important;
                border-radius: 14px !important;
                gap: 12px !important;
            }

            .filter-group {
                min-width: 100% !important;
            }

            .filter-group label {
                font-size: 12px !important;
                margin-bottom: 6px !important;
            }

            .filter-group select {
                padding: 10px 12px !important;
                font-size: 14px !important;
                min-height: 44px !important;
                border-radius: 10px !important;
            }

            .category-content {
                padding: 20px 14px !important;
            }
        }

    
        @media (max-width: 768px) {
            .category-content {
                padding: 20px 14px !important;
            }

            .filters-toggle-wrap {
                margin-bottom: 18px !important;
            }

            .filters-toggle-btn {
                display: flex !important;
            }

            .filters {
                display: none !important;
                padding: 14px !important;
                margin-top: 10px !important;
                margin-bottom: 0 !important;
                border-radius: 14px !important;
                gap: 10px !important;
            }

            .filters.active {
                display: flex !important;
            }

            .filter-group {
                min-width: 100% !important;
            }

            .filter-group label {
                font-size: 12px !important;
                margin-bottom: 6px !important;
            }

            .filter-group select {
                padding: 10px 12px !important;
                font-size: 14px !important;
                min-height: 42px !important;
                border-radius: 10px !important;
            }
        }


@media (max-width: 768px) {
  footer {
    padding: 36px 0 0 !important;
  }
  .footer-container {
    padding: 0 16px !important;
  }
  .footer-grid {
    gap: 20px !important;
    margin-bottom: 24px !important;
  }
  .footer-brand {
    text-align: left !important;
  }
  .footer-brand .site-logo-img {
    max-width: 170px !important;
    height: auto !important;
  }
  .footer-desc {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }
  .social-links {
    justify-content: flex-start !important;
    gap: 10px !important;
  }
  .social-links a {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }
  .footer-title {
    font-size: 16px !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
  }
  .footer-links li {
    margin-bottom: 8px !important;
  }
  .footer-links a {
    font-size: 13px !important;
    gap: 6px !important;
    padding-left: 0 !important;
  }
  .footer-contact {
    margin-top: 0 !important;
  }
  .contact-line {
    font-size: 13px !important;
    line-height: 1.5 !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
  }
  .contact-line i {
    width: 16px !important;
    font-size: 14px !important;
    margin-top: 2px !important;
  }
  .footer-bottom {
    padding: 18px 0 !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
  .footer-bottom > div {
    margin-top: 6px !important;
    font-size: 11px !important;
  }
}


        /* Karabük-Bartın Tur Carousel - Estetik Kaydırma */
        .tour-carousel-shell {
            position: relative;
            margin: 0 -6px;
            padding: 0 54px;
        }

        .tour-carousel-track {
            scrollbar-width: thin;
            scrollbar-color: rgba(227, 6, 19, 0.45) rgba(227, 6, 19, 0.08);
            scroll-behavior: smooth;
        }

        .tour-carousel-track::-webkit-scrollbar {
            height: 8px;
        }

        .tour-carousel-track::-webkit-scrollbar-track {
            background: rgba(227, 6, 19, 0.08);
            border-radius: 999px;
        }

        .tour-carousel-track::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, var(--primary-red), var(--dark-red));
            border-radius: 999px;
        }

        .tour-carousel-track .featured-card {
            scroll-snap-align: start;
        }

        .tour-carousel-shell::before,
        .tour-carousel-shell::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 20px;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .tour-carousel-shell::before {
            left: 0;
            background: linear-gradient(90deg, var(--white) 0%, rgba(255,255,255,0) 100%);
        }

        .tour-carousel-shell::after {
            right: 0;
            background: linear-gradient(270deg, var(--white) 0%, rgba(255,255,255,0) 100%);
        }

        .tour-carousel-arrow {
            position: absolute;
            top: 43%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(227, 6, 19, 0.18);
            background: rgba(255,255,255,0.95);
            color: var(--primary-red);
            box-shadow: 0 12px 30px rgba(0,0,0,0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.25s ease;
        }

        .tour-carousel-arrow:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: translateY(-50%) scale(1.08);
            box-shadow: 0 16px 38px rgba(227, 6, 19, 0.28);
        }

        .tour-carousel-arrow-left { left: 0; }
        .tour-carousel-arrow-right { right: 0; }

        @media (max-width: 768px) {
            .tour-carousel-shell {
                padding: 0 0 0 0;
                margin: 0;
            }

            .tour-carousel-shell::before,
            .tour-carousel-shell::after {
                display: none;
            }

            .tour-carousel-arrow {
                width: 42px;
                height: 42px;
                top: 45%;
            }

            .tour-carousel-arrow-left { left: 8px; }
            .tour-carousel-arrow-right { right: 8px; }

            .tour-carousel-track {
                padding-left: 4px !important;
                padding-right: 4px !important;
            }
        }

    
        @media (max-width: 768px) {
            .tour-categories .categories-grid[style] {
                grid-template-columns: 1fr !important;
            }
        }


        /* Rezervasyon kartı: eski genişlik, kısa yükseklik ve sabit tarih alanı */
        .booking-card {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            min-height: 0 !important;
            align-self: flex-start !important;
            padding: 22px 24px !important;
        }

        .booking-card .booking-form {
            display: block !important;
        }

        .booking-date-display {
            width: 100%;
            min-height: 44px;
            padding: 11px 13px;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            color: var(--white);
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            pointer-events: none;
        }

        .booking-card .form-group {
            margin-bottom: 12px !important;
        }

        .booking-card .price-calculation {
            margin: 12px 0 14px !important;
        }

        .booking-card .btn-book {
            margin-top: 0 !important;
        }



/* v32 - Tur detay sekmeleri: mobilde 2x2 düzen */
@media (max-width: 768px) {
  .tour-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 22px !important;
  }

  .tour-tabs .tab-btn {
    width: 100% !important;
    min-width: 0 !important;
    flex: initial !important;
    padding: 12px 8px !important;
    min-height: 48px !important;
    border: 1px solid #e7e7e7 !important;
    border-bottom: 1px solid #e7e7e7 !important;
    border-radius: 14px !important;
    background: #fff !important;
    color: #444 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    text-align: center !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04) !important;
  }

  .tour-tabs .tab-btn.active {
    background: #fff5f5 !important;
    border-color: #e30613 !important;
    color: #e30613 !important;
    box-shadow: 0 8px 22px rgba(227,6,19,0.10) !important;
  }
}


/* Mobile menu logo placeholder fix */
.mobile-menu-brand-placeholder {
    width: 1px;
    height: 40px;
}
.mobile-menu-header .mobile-logo-img {
    display: none !important;
}


        /* Tur liste sayfalarında sadece ilgili tur içeriği gösterilir */
        body.category-only-view #homePage,
        body.detail-only-view #homePage {
            display: none !important;
        }



/* Kategori/tur liste sayfası temiz görünüm düzeltmesi */
body.category-only-view #homePage,
body.category-only-view #homePage *,
body.category-only-view .hero-section,
body.category-only-view .featured-tours,
body.category-only-view .reviews-section,
body.category-only-view .campaigns-section,
body.category-only-view .tour-categories,
body.category-only-view .features-section,
body.category-only-view .service-cities-section {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

body.category-only-view #categoryPage,
body.category-only-view #categoryPage.active {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

body.category-only-view #categoryPage *,
body.category-only-view footer,
body.category-only-view footer * {
    visibility: visible !important;
}
