/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    /* Renk Paleti (dinamik olarak sayfalardan override ediliyor) */
    --primary-color: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #43a047;
    --secondary-color: #ffd700;
    --accent-color: #cddc39;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}
.nav-logo h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
    font-weight: 800;
}


body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    margin-top: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.btn-instagram:hover {
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--menu-bg-start, var(--primary-color)) 0%, var(--menu-bg-end, var(--primary-dark)) 100%);
    color: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255,255,255,0.15);
    animation: slideDown 0.5s ease-out;
    overflow: visible !important;
    height: auto;
    max-height: 100px;
}

/* Header sadece kendi içeriğini kaplasın, sayfa içeriğini engellemesin */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.header .navbar,
.header .nav-container,
.header .nav-menu,
.header .nav-item,
.header .nav-link,
.header .nav-logo,
.header .hamburger {
    pointer-events: auto !important;
    position: relative;
    z-index: 1001;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1000;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    cursor: pointer;
}

.nav-logo .site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    pointer-events: auto;
}


.nav-logo h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, #cddc39, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1001;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--menu-link-hover, var(--secondary-color));
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1002;
    border: 1px solid var(--border-color);
    max-height: 400px;
    overflow-y: auto;
    pointer-events: none;
}

.dropdown-menu.active,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    position: relative;
    z-index: 1003;
    pointer-events: auto;
    cursor: pointer;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 25px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.05);
}

.whatsapp-text {
    font-weight: 500;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Hero Slider */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin-top: 80px;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f5f5f5;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    position: absolute;
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.prev-btn,
.next-btn {
    position: absolute;
    background: rgba(255,255,255,0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Search Section */
.search-section {
    background: var(--light-bg);
    padding: 60px 0;
}

.search-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.search-box h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.search-inputs {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.input-group {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 10;
}

.input-group select,
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Tours Section */
.tours-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

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

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    z-index: 1;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.tour-duration-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(33, 150, 243, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.4);
    backdrop-filter: blur(10px);
}

.tour-duration-badge i {
    font-size: 11px;
}

/* Responsive - Mobil için süre rozeti */
@media (max-width: 768px) {
    .tour-duration-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
    
    .tour-badge {
        top: 10px;
        left: 10px;
    }
    
    .tour-badge .badge {
        font-size: 10px;
        padding: 4px 8px;
    }
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-popular {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.5);
}

.badge-standard {
    background: var(--primary-color);
    color: var(--white);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none !important;
    z-index: 10 !important;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
    pointer-events: auto !important;
}

.tour-overlay .btn,
.tour-overlay a {
    pointer-events: auto !important;
    z-index: 11 !important;
    position: relative;
}

.tour-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    text-shadow: none !important;
}

.tour-content *,
.tour-content *::before,
.tour-content *::after {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
    text-shadow: none !important;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    text-shadow: none !important;
}

.tour-meta .tour-dates,
.tour-meta .clickable-date,
.tour-meta .date-highlight {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-dates {
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    background: rgba(34, 139, 34, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: inline-block !important;
    isolation: isolate;
    touch-action: manipulation;
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-dates *,
.tour-dates span,
.tour-dates .date-highlight,
.tour-dates a,
.tour-dates i,
.clickable-date *,
.clickable-date span,
.clickable-date .date-highlight,
.clickable-date a,
.clickable-date i {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-date-range {
    color: var(--text-dark) !important;
    font-weight: 500;
    background: rgba(46, 125, 50, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: inline-block;
    margin-left: 5px;
}

.date-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9em;
    opacity: 0.9;
    margin-left: 5px;
}

.date-highlight,
.date-highlight *,
span.date-highlight,
.date-highlight span,
.date-highlight::before,
.date-highlight::after {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(34, 139, 34, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--primary-color);
    border-width: 1px !important;
    border-style: solid !important;
    border-color: var(--primary-color) !important;
    border-image: none !important;
    -webkit-border-image: none !important;
    display: inline-block;
    margin: 0 2px;
    outline: none !important;
}

.tour-dates .date-highlight,
.clickable-date .date-highlight,
.tour-dates.date-highlight,
.clickable-date.date-highlight,
.tour-card .tour-dates .date-highlight,
.tour-card .clickable-date .date-highlight,
.tours-grid .tour-card .tour-dates .date-highlight,
.tours-grid .tour-card .clickable-date .date-highlight {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 14px;
}

.stars i.active {
    color: var(--secondary-color);
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex: 1 1 auto;
    flex-wrap: wrap;
    min-width: 0;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1;
}

.price-discount {
    white-space: nowrap;
    display: inline-block;
    overflow: visible;
    word-wrap: normal;
    text-overflow: clip;
}

.tour-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

.tour-actions .btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.tour-actions .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

.tour-actions .btn-whatsapp.btn-sm {
    padding: 10px 14px;
    min-width: 44px;
}

.section-footer {
    text-align: center;
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2rem;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-card p {
    margin-bottom: 25px;
    font-size: 14px;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info p {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-method:nth-child(1) .contact-icon {
    background: #25d366;
}

.contact-method:nth-child(2) .contact-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-method:nth-child(3) .contact-icon {
    background: var(--primary-color);
}

.contact-details h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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


.footer-logo h3 {
    margin: 0;
    color: var(--white);
}

.footer-section p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 11;
    pointer-events: auto;
    cursor: pointer;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: left;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 0;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-logo {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-logo:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.visa-logo:hover {
    box-shadow: 0 6px 20px rgba(20, 52, 203, 0.5) !important;
    background: linear-gradient(135deg, #1434CB 0%, #1A1F71 50%, #1434CB 100%) !important;
}

.mastercard-logo:hover {
    box-shadow: 0 6px 20px rgba(235, 0, 27, 0.5) !important;
    background: linear-gradient(135deg, #F79E1B 0%, #EB001B 50%, #FF5F00 100%) !important;
}

@media (max-width: 768px) {
    .payment-logo {
        width: 70px !important;
        height: 45px !important;
    }
    
    .payment-logo svg {
        width: 60px !important;
        height: 30px !important;
    }
}

.payment-logo:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}

.payment-logo.visa-logo:hover {
    box-shadow: 0 6px 20px rgba(20, 52, 203, 0.4) !important;
}

.payment-logo.mastercard-logo:hover {
    box-shadow: 0 6px 20px rgba(235, 0, 27, 0.4) !important;
}

@media (max-width: 768px) {
    .footer-bottom > div {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin-bottom: 15px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Admin Secret Link */
.admin-secret-link {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: adminPulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.admin-secret-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

@keyframes adminPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(46, 125, 50, 0.8);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    margin-top: 80px;
}

.page-header-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    font-size: 12px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Category Filter */
.category-filter {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--light-bg);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid transparent;
}

.filter-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow);
}

.filter-tab i {
    font-size: 1.1rem;
}

.filter-tab .count {
    background: rgba(255,255,255,0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.filter-tab.active .count {
    background: rgba(255,255,255,0.3);
}

/* No Tours */
.no-tours {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.no-tours-icon {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--text-light);
    font-size: 2.5rem;
}

.no-tours h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-tours p {
    margin-bottom: 30px;
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    margin-top: 60px;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Category Filter */
.category-filter {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.filter-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.filter-tab i {
    font-size: 1.1rem;
}

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

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-popular {
    background: linear-gradient(135deg, #e53935, #c62828);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 179, 0, 0.5);
}

.badge-standard {
    background: var(--primary-color);
    color: var(--white);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none !important;
    z-index: 10 !important;
}

.tour-card:hover .tour-overlay {
    opacity: 1;
    pointer-events: auto !important;
}

.tour-overlay .btn,
.tour-overlay a {
    pointer-events: auto !important;
    z-index: 11 !important;
    position: relative;
    cursor: pointer !important;
}

.tour-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
    text-shadow: none !important;
}

.tour-content *,
.tour-content *::before,
.tour-content *::after {
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.tour-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-meta i {
    color: var(--primary-color);
}

.tour-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.tour-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ddd;
    font-size: 14px;
}

.stars i.active {
    color: var(--secondary-color);
}

.rating-text {
    font-size: 14px;
    color: var(--text-light);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex: 1 1 auto;
    flex-wrap: wrap;
    min-width: 0;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1;
}

.price-discount {
    white-space: nowrap;
    display: inline-block;
    overflow: visible;
    word-wrap: normal;
    text-overflow: clip;
}

.tour-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
}

.tour-actions .btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
}

.tour-actions .btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

.tour-actions .btn-whatsapp.btn-sm {
    padding: 10px 14px;
    min-width: 44px;
}

/* No Tours */
.no-tours {
    text-align: center;
    padding: 80px 20px;
}

.no-tours-icon {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.no-tours-icon i {
    font-size: 2.5rem;
    color: var(--text-light);
}

.no-tours h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-tours p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.social-content {
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.social-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    min-width: 120px;
}

.social-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.social-btn i {
    font-size: 2rem;
}

.social-btn span {
    font-weight: 500;
    font-size: 14px;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.whatsapp:hover {
    background: #25d366;
}

.social-btn.facebook:hover {
    background: #1877f2;
}

.social-btn.phone:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.tour-detail-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition);
        z-index: 9998;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        padding: 15px 20px;
        display: block;
        width: 100%;
        color: var(--text-dark);
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--secondary-color);
        background: rgba(46, 125, 50, 0.1);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border-top: 1px solid var(--border-color);
        margin-top: 0;
        background: var(--light-bg);
    }
    
    .nav-item:hover .dropdown-menu,
    .nav-item.active .dropdown-menu {
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        height: 50vh;
    }
    
    .slide-content h1 {
    font-size: 2.5rem;
}

    .slide-content p {
    font-size: 1rem;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .slide-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-inputs {
        flex-direction: column;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .tour-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-section {
        position: static;
    }
}

/* Rezervasyon Tablosu */
.reservation-table {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.reservation-table h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.2rem;
}

.reservation-info {
    width: 100%;
    border-collapse: collapse;
}

.reservation-info td {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.reservation-info td:first-child {
    width: 40%;
    font-weight: 600;
    color: var(--text-dark);
}

.reservation-info td:last-child {
    width: 60%;
    color: var(--text-light);
}

.reservation-info tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .tour-header h1 {
        font-size: 1.8rem;
    }
    
    .tour-meta {
        flex-direction: column;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .itinerary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .itinerary-item .time {
        min-width: auto;
    }
    
    .filter-tabs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .social-btn {
    width: 100%;
        max-width: 200px;
    }
    
    .social-content h2 {
        font-size: 2rem;
    }
    
    .social-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        height: 40vh;
    }
    
    .slide-content h1 {
    font-size: 2rem;
    }
    
    .tour-card {
        margin: 0 10px;
    }
    
    .search-box {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Tur Detayları Tablo Stilleri */
.details-table-container {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.details-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.details-table thead {
    background: linear-gradient(135deg, var(--primary-color), #2d5a2d);
    color: white;
}

.details-table th {
        padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border: none;
}

.details-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
}

.details-table tr:last-child td {
    border-bottom: none;
}

.details-table tr:hover {
    background: #f8f9fa;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-color);
    width: 200px;
    min-width: 200px;
    background: rgba(34, 139, 34, 0.05);
    border-right: 3px solid var(--primary-color);
}

.detail-label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.detail-content {
    color: #333;
    line-height: 1.6;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
}

.detail-list li i.fa-check {
    color: #28a745;
}

.detail-list li i.fa-times {
    color: #dc3545;
}

.detail-list li i.fa-location-dot {
    color: #007bff;
}

.detail-list li i.fa-arrow-right {
    color: #6c757d;
}

.itinerary {
    margin: 0;
}

.itinerary-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.itinerary-item:last-child {
    border-bottom: none;
}

.itinerary-number {
    background: var(--primary-color);
    color: white;
    min-width: 32px;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.itinerary-content {
    flex: 1;
    color: #333;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .details-table {
        font-size: 14px;
    }
    
    .details-table th,
    .details-table td {
        padding: 15px 10px;
    }
    
    .detail-label {
        width: 150px;
        min-width: 150px;
    }
    
    .itinerary-item {
    flex-direction: column;
        align-items: flex-start;
    }
    
    .itinerary-number {
        margin-bottom: 8px;
        margin-right: 0;
    }
}

/* Fiyat Hesaplama Stilleri */
.price-calculation {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.1);
}

.price-calculation h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    gap: 20px;
}

.price-item:last-child {
    border-bottom: none;
}

.price-total {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0;
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    background: rgba(34, 139, 34, 0.05);
    border-radius: 8px;
    padding: 15px;
    gap: 20px;
}

.price-label {
    color: #495057;
    font-weight: 500;
    flex: 0 0 auto;
    white-space: nowrap;
}

.price-amount {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
    flex: 0 0 auto;
    min-width: 150px;
    margin-left: auto;
    display: inline-block;
}

.price-total .price-label,
.price-total .price-amount {
    font-size: 16px;
    color: var(--primary-color);
}

.participant-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.participant-details .form-row {
    margin-bottom: 15px;
}

.participant-details .form-row:last-child {
    margin-bottom: 0;
}

.participant-details label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
}

.participant-details input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
}

.participant-details input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .price-calculation {
        padding: 15px;
    }
    
    .price-item {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }
    
    .price-item .price-label {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .price-item .price-amount {
        text-align: right;
        margin-left: auto;
        min-width: 120px;
        flex: 0 0 auto;
        display: inline-block;
    }
    
    .price-total {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;
    }
    
    .price-total .price-label {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    
    .price-total .price-amount {
        text-align: right;
        margin-left: auto;
        flex: 0 0 auto;
        min-width: 120px;
        display: inline-block;
    }
}

/* Ödeme Seçenekleri Stilleri */
.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    position: relative;
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
    min-height: 120px;
    justify-content: center;
}

.payment-method label:hover {
    border-color: var(--primary-color);
    background: rgba(34, 139, 34, 0.05);
}

.payment-method input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(34, 139, 34, 0.1);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.2);
}

.payment-method label i {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.payment-method label span {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.payment-method label small {
    color: #666;
    font-size: 12px;
}

.card-payment-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.1);
}

.card-payment-section h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-payment-section p {
    color: #666;
    margin-bottom: 15px;
}

.btn-card-payment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color), #2d5a2d);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.btn-card-payment:hover {
    background: linear-gradient(135deg, #2d5a2d, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.3);
    color: white;
    text-decoration: none;
}

.payment-info {
    background: rgba(34, 139, 34, 0.05);
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.payment-info small {
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info i {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .payment-method label {
        min-height: 100px;
        padding: 15px 10px;
    }
    
    .card-payment-section {
        padding: 15px;
    }
}

/* Tur Galerisi Stilleri */
.tour-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.tour-gallery .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tour-gallery .section-header p {
    color: #666;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border: 2px solid transparent;
    background: white;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 1;
}

.gallery-item:hover::before {
    transform: scaleX(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.85), rgba(0, 0, 0, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s;
}

.gallery-overlay i:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Galeri Filtre Stilleri */
.gallery-filter {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gallery-filter h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--text-dark);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transition: left 0.4s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    border-color: var(--primary-light);
}

/* Galeri Info Stilleri */
.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
}

.gallery-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.gallery-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.gallery-actions i {
    padding: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.gallery-actions i:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

/* Galeri Section Stilleri */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;charset=utf-8,%3Csvg width=%22100%22 height=%22100%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cdefs%3E%3Cpattern id=%22grid%22 width=%2240%22 height=%2240%22 patternUnits=%22userSpaceOnUse%22%3E%3Cpath d=%22M 40 0 L 0 0 0 40%22 fill=%22none%22 stroke=%22rgba(46,125,50,0.05)%22 stroke-width=%221%22/%3E%3C/pattern%3E%3C/defs%3E%3Crect width=%22100%22 height=%22100%22 fill=%22url(%23grid)%22/%3E%3C/svg%3E');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.gallery-section .container {
    position: relative;
    z-index: 1;
}

/* Lightbox Stilleri - Modernize */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    box-shadow: 0 25px 80px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 3px solid rgba(255,255,255,0.1);
}

.lightbox-content img.sliding {
    opacity: 0;
    transform: scale(0.9);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg) scale(1.1);
    border-color: rgba(255,255,255,0.4);
}

.lightbox-info {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: white;
    max-width: 600px;
    position: relative;
    width: 100%;
}

.lightbox-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.lightbox-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.95;
}

.lightbox-meta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.9rem;
}

.lightbox-meta span {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10000;
    padding: 0 30px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1.8rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-close {
        width: 45px;
        height: 45px;
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

.lightbox-info {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
        text-align: center;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 15px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.lightbox-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Rezervasyon Galerisi Stilleri */
.reservation-gallery-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.reservation-gallery-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.reservation-gallery-section p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.reservation-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
.reservation-gallery-section .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.reservation-gallery-section .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reservation-gallery-section .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.reservation-gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.reservation-gallery-section .gallery-overlay i {
    color: white;
    font-size: 1.5rem;
}

.reservation-gallery-section .gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.reservation-gallery-section .gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.reservation-gallery-section .tour-title {
    display: block;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.reservation-gallery-section .reservation-date {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Rezervasyon Butonları */
.btn-reserve-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-reserve-secondary:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* WhatsApp Mesaj Bölümü */
.whatsapp-message-section {
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 15px;
    color: white;
    text-align: center;
}

.whatsapp-message-section h3 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-message-section p {
    margin: 0 0 25px 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.whatsapp-message-preview {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
        padding: 20px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.message-content {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
    background: rgba(255,255,255,0.95);
    color: #333;
        padding: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-whatsapp-large {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-whatsapp-large:hover {
    background: white;
    color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Tur Galerisi Bölümü */
.tour-gallery-section {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.tour-gallery-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tour-gallery-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.tour-gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tour-gallery-section .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tour-gallery-section .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tour-gallery-section .gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.tour-gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour-gallery-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.tour-gallery-section .gallery-overlay i {
    color: white;
    font-size: 1.5rem;
}

/* ========== CALENDAR MODAL STYLES ========== */
.date-calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.date-calendar-modal[style*="display: flex"] {
    display: flex !important;
}

.date-calendar-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #ffffff 100%);
    padding: 30px;
    border-radius: 24px;
    width: 480px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    border: 3px solid rgba(46, 125, 50, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.date-calendar-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.date-calendar-close:hover {
    color: #fff;
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.calendar-header h4 {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.calendar-nav-btn {
    background: rgba(255,255,255,0.25);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.calendar-nav-btn:hover {
    background: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 15px;
    padding: 0 5px;
}

.calendar-weekdays span {
    text-align: center;
    font-weight: 800;
    color: #0d4f14;
    padding: 12px 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.3), rgba(46, 125, 50, 0.2));
    border-radius: 8px;
    border: 2px solid rgba(46, 125, 50, 0.3);
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
    border-radius: 20px;
    box-shadow: inset 0 2px 20px rgba(46, 125, 50, 0.15), 0 4px 25px rgba(0,0,0,0.1);
    border: 3px solid rgba(46, 125, 50, 0.2);
    min-height: 350px;
    width: 100%;
    box-sizing: border-box;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    font-size: 15px;
    min-height: 48px;
    max-height: 48px;
    height: 48px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f5fcff 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transform: none !important;
}

.calendar-day:hover:not(.empty):not(.past):not(.selected) {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.45), rgba(46, 125, 50, 0.3)) !important;
    border-color: rgba(46, 125, 50, 0.9) !important;
    box-shadow: 0 4px 18px rgba(46, 125, 50, 0.5) !important;
    color: #053a0a !important;
    font-weight: 800 !important;
}

.calendar-day.empty {
    cursor: default;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
    background: linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%) !important;
    color: #999 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

.calendar-day.today {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.45)) !important;
    border: 3px solid #FFD700 !important;
    color: #8b6914 !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7) !important;
    transform: none !important;
}

.calendar-day.tour-date {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.65), rgba(46, 125, 50, 0.5)) !important;
    border: 3px solid rgba(46, 125, 50, 1) !important;
    color: #053a0a !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(46, 125, 50, 0.7) !important;
    transform: none !important;
}

.calendar-day.tour-date:hover:not(.selected) {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.8), rgba(46, 125, 50, 0.65)) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.8) !important;
    color: #021a05 !important;
    font-weight: 900 !important;
    transform: none !important;
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white !important;
    font-weight: 900;
    border: 3px solid var(--primary-dark) !important;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.7), 0 0 0 3px rgba(46, 125, 50, 0.3) !important;
    z-index: 10;
    animation: pulseSelected 0.4s ease-out;
    transform: none !important;
}

@keyframes pulseSelected {
    0% {
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(46, 125, 50, 0.8), 0 0 0 4px rgba(46, 125, 50, 0.4);
    }
    100% {
        box-shadow: 0 6px 20px rgba(46, 125, 50, 0.7), 0 0 0 3px rgba(46, 125, 50, 0.3);
    }
}

.calendar-day.selected .day-number {
    color: white !important;
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tour-indicator {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.4);
    border: 1px solid rgba(255,255,255,0.3);
}

.calendar-day.selected .tour-indicator {
    background: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    width: 10px;
    height: 10px;
}

.clickable-date {
    transition: all 0.2s;
    cursor: pointer !important;
    position: relative !important;
    z-index: 99999 !important;
    pointer-events: auto !important;
    display: inline-block !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    isolation: isolate;
    touch-action: manipulation;
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.clickable-date *,
.clickable-date *::before,
.clickable-date *::after {
    pointer-events: none !important;
    text-shadow: 0 0 0 transparent !important;
    -webkit-text-shadow: 0 0 0 transparent !important;
    -moz-text-shadow: 0 0 0 transparent !important;
    -ms-text-shadow: 0 0 0 transparent !important;
    -o-text-shadow: 0 0 0 transparent !important;
    filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
    box-shadow: 0 0 0 transparent !important;
    -webkit-box-shadow: 0 0 0 transparent !important;
    -moz-box-shadow: 0 0 0 transparent !important;
    -ms-box-shadow: 0 0 0 transparent !important;
    -o-box-shadow: 0 0 0 transparent !important;
    drop-shadow: none !important;
    -webkit-drop-shadow: none !important;
}

.clickable-date:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Rezervasyon Butonu Modernize */
#reservation-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white !important;
    border: none !important;
    padding: 14px 24px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

#reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

#reservation-btn:hover::before {
    left: 100%;
}

#reservation-btn:not(:disabled):hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5) !important;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
}

#reservation-btn:not(:disabled):active {
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3) !important;
}

#reservation-btn:disabled {
    background: linear-gradient(135deg, #ccc, #bbb) !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
}

.date-calendar-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 25px 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
    letter-spacing: 0.5px;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.image-modal[style*="display: flex"] {
    display: flex !important;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

.image-modal-close:hover {
    color: #ccc;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.modal-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* ============================================
   DÖNEMSEL TEMA EFEKTLERİ - MODERN & ÇARPICI
   ============================================ */

/* Kış Teması - Zarif Kar Efekti */
.header.theme-kis {
    position: relative;
    background: linear-gradient(135deg, #475569 0%, #334155 100%) !important;
}

.header.theme-kis::before {
    content: '❄';
    position: absolute;
    top: 8px;
    right: 8%;
    font-size: 20px;
    opacity: 0.8;
    animation: snowFloat 4s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.5));
}

.header.theme-kis::after {
    content: '❄';
    position: absolute;
    top: 10px;
    right: 12%;
    font-size: 16px;
    opacity: 0.7;
    animation: snowFloat 5s ease-in-out infinite 1s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.4));
}

@keyframes snowFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-3px) rotate(10deg); opacity: 0.9; }
}

.header.theme-kis .navbar {
    position: relative;
    z-index: 1001;
}

/* Yılbaşı Teması - Zarif Yılbaşı Dekorasyonu */
.header.theme-yilbasi {
    position: relative;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
}

.header.theme-yilbasi::before {
    content: '✨';
    position: absolute;
    top: 8px;
    left: 8%;
    font-size: 22px;
    opacity: 0.9;
    animation: sparkleTwinkle 2s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
}

.header.theme-yilbasi::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10%;
    font-size: 20px;
    opacity: 0.8;
    animation: sparkleTwinkle 2.5s ease-in-out infinite 0.5s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.7));
}

@keyframes sparkleTwinkle {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

.header.theme-yilbasi .navbar {
    position: relative;
    z-index: 1001;
}

/* Ramazan Bayramı Teması - Zarif Hilal */
.header.theme-ramazan {
    position: relative;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.header.theme-ramazan::before {
    content: '🌙';
    position: absolute;
    top: 6px;
    left: 8%;
    font-size: 26px;
    opacity: 0.95;
    animation: moonGlow 3s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.9));
}

.header.theme-ramazan::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10%;
    font-size: 18px;
    opacity: 0.85;
    animation: starGlow 2.5s ease-in-out infinite 0.8s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
}

@keyframes moonGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes starGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

.header.theme-ramazan .navbar {
    position: relative;
    z-index: 1001;
}

/* Kurban Bayramı Teması - Zarif Dekorasyon */
.header.theme-kurban {
    position: relative;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%) !important;
}

.header.theme-kurban::before {
    content: '✨';
    position: absolute;
    top: 8px;
    left: 8%;
    font-size: 22px;
    opacity: 0.9;
    animation: sparkleTwinkle 2s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.8));
}

.header.theme-kurban::after {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10%;
    font-size: 20px;
    opacity: 0.8;
    animation: sparkleTwinkle 2.5s ease-in-out infinite 0.5s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.7));
}


.header.theme-kurban .navbar {
    position: relative;
    z-index: 1001;
}

/* Yaz Teması - Zarif Güneş */
.header.theme-yaz {
    position: relative;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%) !important;
}

.header.theme-yaz::before {
    content: '☀️';
    position: absolute;
    top: 4px;
    right: 10%;
    font-size: 28px;
    opacity: 0.95;
    animation: sunRotate 8s linear infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8));
}

.header.theme-yaz::after {
    content: '☁️';
    position: absolute;
    top: 8px;
    left: 8%;
    font-size: 20px;
    opacity: 0.8;
    animation: cloudFloat 6s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
}

@keyframes sunRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(5px); opacity: 0.9; }
}

.header.theme-yaz .navbar {
    position: relative;
    z-index: 1001;
}

/* İlkbahar Teması - Zarif Çiçekler */
.header.theme-ilkbahar {
    position: relative;
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.header.theme-ilkbahar::before {
    content: '🌸';
    position: absolute;
    top: 6px;
    left: 8%;
    font-size: 24px;
    opacity: 0.9;
    animation: flowerBloom 3s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.6));
}

.header.theme-ilkbahar::after {
    content: '🌺';
    position: absolute;
    top: 10px;
    right: 10%;
    font-size: 20px;
    opacity: 0.85;
    animation: flowerBloom 3.5s ease-in-out infinite 1s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
}

@keyframes flowerBloom {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.1); }
}

.header.theme-ilkbahar .navbar {
    position: relative;
    z-index: 1001;
}

/* Sonbahar Teması - Zarif Yapraklar */
.header.theme-sonbahar {
    position: relative;
    background: linear-gradient(135deg, #B45309 0%, #92400E 100%) !important;
}

.header.theme-sonbahar::before {
    content: '🍂';
    position: absolute;
    top: 6px;
    left: 8%;
    font-size: 24px;
    opacity: 0.9;
    animation: leafFloat 4s ease-in-out infinite;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.6));
}

.header.theme-sonbahar::after {
    content: '🍁';
    position: absolute;
    top: 10px;
    right: 10%;
    font-size: 22px;
    opacity: 0.85;
    animation: leafFloat 4.5s ease-in-out infinite 1s;
    z-index: -1 !important;
    pointer-events: none !important;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.5));
}

@keyframes leafFloat {
    0%, 100% { opacity: 0.7; transform: translateY(0); }
    50% { opacity: 0.9; transform: translateY(-3px); }
}

.header.theme-sonbahar .navbar {
    position: relative;
    z-index: 1001;
}

/* Standart Tema - Özel efekt yok */
.header.theme-standart {
    /* Standart tema için özel efekt yok */
}

/* Doğaya Yolculuk Başlık Renkleri - Her zaman korunacak */
.dogaya-yolculuk-title {
    font-size: 3rem !important;
    font-weight: 900 !important;
    margin-bottom: 30px !important;
    line-height: 1.2 !important;
    letter-spacing: 2px !important;
}

.dogaya-yolculuk-title span:first-child {
    color: var(--primary-color) !important;
    text-shadow: 0 0 20px rgba(46, 125, 50, 0.5) !important;
}

.dogaya-yolculuk-title span:nth-child(2) {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5), 0 0 15px rgba(255,255,255,0.3) !important;
}

.dogaya-yolculuk-title span:nth-child(3) {
    color: #FFD700 !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.4) !important;
}

/* Hotels Section */
.hotels-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: var(--light-bg);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.hotel-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hotel-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.95);
    color: #8b6914;
    backdrop-filter: blur(10px);
}

.hotel-badge.badge-popular {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.hotel-badge.badge-premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.hotel-badge.badge-standard {
    background: linear-gradient(135deg, var(--primary-color, #2e7d32), var(--primary-light, #43a047));
    color: white;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.hotel-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.hotel-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
    white-space: nowrap;
}

.hotel-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.hotel-location i {
    color: var(--primary-color);
}

.hotel-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.amenity-tag i {
    font-size: 0.75rem;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.hotel-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hotel-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hotel-footer .btn {
        width: 100%;
    }
}