/*
Theme Name: Mirzade Turizm
Theme URI: https://mirzadeturizm.com
Author: Mirzade Turizm
Author URI: https://mirzadeturizm.com
Description: Mirzade Turizm - Hac, Umre ve Kültür Turları için özel WordPress teması. Profesyonel tur yönetimi, otel entegrasyonu ve modern tasarım.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mirzade-theme
Tags: travel, tourism, hajj, umrah, custom-colors, custom-menu, featured-images, theme-options

Mirzade Turizm WordPress Theme
Copyright (C) 2024 Mirzade Turizm
*/

/* ========================================
   CSS VARIABLES - RENK ŞEMASI
======================================== */
:root {
    /* Brand Colors */
    --primary-color: #00927E;
    --primary-dark: #007a69;
    --primary-light: #e6f5f3;
    --primary-rgb: 0, 146, 126;
    
    /* Secondary Colors */
    --secondary-color: #1a2942;
    --secondary-light: #2d3e57;
    
    /* Accent Colors */
    --accent-green: #4caf50;
    --accent-gold: #f59e0b;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Neutral Colors */
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-color: #e5e7eb;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #06b6d4;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE STYLES
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: #fff !important; }
.text-center { text-align: center; }

.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--bg-white) !important; }

/* ========================================
   LICENSE BANNER (Belge No Bandı)
======================================== */
.license-banner {
    background-color: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.license-banner strong {
    font-weight: 600;
}

/* ========================================
   TOP HEADER
======================================== */
.top-header {
    background-color: var(--primary-color) !important;
    padding: 8px 0;
    font-size: 14px;
}

.top-header .contact-item {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

.top-header .contact-item i {
    margin-right: 6px;
    font-size: 14px;
}

.top-header a {
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-header a:hover {
    opacity: 0.8;
    color: #fff !important;
    text-decoration: none;
}

.top-social-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-social-links .social-link {
    margin-left: 12px;
    font-size: 16px;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-social-links .social-link:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: var(--primary-color) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Facebook */
.top-social-links .social-link:hover .fa-facebook-f {
    color: #4267B2 !important;
}

/* Instagram */
.top-social-links .social-link:hover .fa-instagram {
    color: #C13584 !important;
}

/* Twitter */
.top-social-links .social-link:hover .fa-twitter {
    color: #1DA1F2 !important;
}

/* YouTube */
.top-social-links .social-link:hover .fa-youtube {
    color: #FF0000 !important;
}

/* ========================================
   MAIN NAVBAR
======================================== */
.navbar {
    padding: 0.5rem 1rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    will-change: transform;
}

.navbar-brand {
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

/* Logo Stilleri */
.logo-img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .logo-img {
        width: 90px;
    }
}

.nav-item {
    margin: 0 0.25rem;
    height: 40px;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #00917D;
}


.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition-normal);
}

.main-menu > li > a:hover,
.main-menu > li.current-menu-item > a {
    color: var(--primary-color);
}

/* Dropdown Menu */
.main-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1001;
}

.main-menu > li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.main-menu .sub-menu li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--whatsapp-green);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

/* ========================================
   HERO SLIDER
======================================== */
/* Modern Hero Slider - Django yapısına birebir uyumlu */
.hero-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
}

.modern-hero-slider {
    height: 100%;
}

.modern-hero-slider .carousel-inner {
    height: 100%;
}

.modern-hero-slider .carousel-item {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s ease;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.carousel-item.active .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.2) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    padding: 0;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.hero-cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff !important;
}

/* Eski hero-btn class'ı için uyumluluk */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.hero-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff !important;
}

/* Carousel Controls - Django yapısına birebir uyumlu */
.modern-hero-slider .carousel-control-prev,
.modern-hero-slider .carousel-control-next {
    z-index: 5;
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-hero-slider .carousel-control-prev {
    left: 30px;
}

.modern-hero-slider .carousel-control-next {
    right: 30px;
}

.modern-hero-slider .carousel-control-prev:hover,
.modern-hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.modern-hero-slider .carousel-control-prev-icon,
.modern-hero-slider .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.modern-hero-slider .carousel-indicators {
    z-index: 5;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.modern-hero-slider .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.modern-hero-slider .carousel-indicators [data-bs-target].active {
    background-color: #fff;
    width: 30px;
    border-radius: 6px;
}

/* Mobil için özel slider ayarları */
@media (max-width: 768px) {
    .hero-slider-container {
        height: auto !important;
        min-height: 250px !important;
        max-height: none !important;
    }
    
    .hero-slider-container .modern-hero-slider {
        height: auto !important;
    }
    
    .hero-slider-container .carousel-inner {
        height: auto !important;
    }
    
    .hero-slider-container .carousel-item {
        height: auto !important;
    }
    
    .hero-slider-container .hero-slide {
        height: auto !important;
        min-height: 250px;
    }
    
    .hero-slider-container .hero-background {
        height: auto !important;
        min-height: 250px;
    }
    
    .hero-slider-container .hero-image {
        height: auto !important;
        max-height: 50vh;
        min-height: 250px;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-slide {
        padding: 15px 0 !important;
    }
    
    .hero-content {
        padding: 0 15px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-btn,
    .hero-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .modern-hero-slider .carousel-control-prev,
    .modern-hero-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .modern-hero-slider .carousel-control-prev {
        left: 15px;
    }
    
    .modern-hero-slider .carousel-control-next {
        right: 15px;
    }
    
    .modern-hero-slider .carousel-control-prev-icon,
    .modern-hero-slider .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .modern-hero-slider .carousel-indicators {
        bottom: 20px;
    }
}

/* ========================================
   SEARCH FORM
======================================== */
.tour-search-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-light);
}

.search-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.search-card-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: var(--spacing-lg);
    text-align: center;
}

.search-card-header h4 {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
}

.search-card-body {
    padding: var(--spacing-xl);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.btn-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-search:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CATEGORY CARDS
======================================== */
.category-section {
    padding: var(--spacing-3xl) 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
}

.category-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card-bg img {
    transform: scale(1.1);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    color: #fff;
    z-index: 10;
}

.category-card-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-xs);
}

.category-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #fff;
}

.category-card-date {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-md);
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.category-card-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* ========================================
   TOUR CARDS
======================================== */
.tours-section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.tour-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.tour-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-badge.luxury {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.tour-badge.hac {
    background-color: #8b5cf6;
    color: #fff;
}

.tour-badge.umre {
    background-color: var(--primary-color);
    color: #fff;
}

.tour-badge.kultur {
    background-color: #3b82f6;
    color: #fff;
}

.tour-card-content {
    padding: var(--spacing-lg);
}

.tour-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.tour-card-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tour-card-info i {
    color: var(--primary-color);
    width: 20px;
}

.tour-features {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

.tour-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-feature i {
    color: var(--primary-color);
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.tour-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.btn-detail:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-whatsapp-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.btn-whatsapp-small:hover {
    background-color: var(--whatsapp-dark);
    color: #fff;
}

/* ========================================
   WHY US SECTION
======================================== */
.why-us-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   DOCUMENTS SECTION
======================================== */
.documents-section {
    padding: var(--spacing-2xl) 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    text-align: center;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.document-card:hover {
    transform: translateY(-5px);
}

.document-card img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.document-card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.document-card h5 {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.document-card:hover h5 {
    color: var(--secondary-color);
}

/* Document Modal Styles */
.document-modal .modal-dialog {
    max-width: 90%;
}

.document-modal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.document-modal .modal-header {
    background-color: var(--primary-color);
    color: #fff;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.document-modal .modal-title {
    font-weight: 600;
    font-size: 1.25rem;
}

.document-modal .btn-close {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 1;
    padding: 0.5rem;
}

.document-modal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.document-modal-image {
    max-height: 85vh;
    width: auto;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .document-modal .modal-dialog {
        max-width: 95%;
        margin: 0.5rem;
    }
    
    .document-modal-image {
        max-height: 75vh;
    }
    
    .document-modal .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .document-modal .modal-title {
        font-size: 1rem;
    }
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Footer Üst Kısım */
.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Logo Stilleri */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #b4b4b4;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

/* Footer Sosyal Medya İkonları */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.footer-social .social-link.facebook {
    background-color: #4267B2;
}

.footer-social .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social .social-link.twitter {
    background-color: #1DA1F2;
}

.footer-social .social-link.youtube {
    background-color: #FF0000;
}

.footer-social .social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #4caf50;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list li a {
    color: #b4b4b4;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.footer-list li a:hover {
    color: #4caf50;
    padding-left: 5px;
}

.footer-list li a i {
    color: #4caf50;
    margin-right: 8px;
    font-size: 12px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #b4b4b4;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.footer-menu a:hover {
    color: #4caf50;
    padding-left: 5px;
}

.footer-menu a i {
    color: #4caf50;
    margin-right: 8px;
    font-size: 12px;
}

/* Footer İletişim */
.footer-contact .contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact .contact-item i {
    color: #4caf50;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact .contact-item p {
    color: #b4b4b4;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact .contact-item a {
    color: #b4b4b4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #4caf50;
}

.footer-bottom {
    background-color: #14202f;
    padding: 20px 0;
}

.footer-bottom p {
    color: #b4b4b4;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b4b4b4;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #4caf50;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 1200px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-form {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-slider-container {
        height: auto !important;
        min-height: 250px !important;
        max-height: none !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .top-header {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-img {
        width: 90px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   DJANGO TASARIM UYUMLAMASI
   Kategori Kartları ve Tur Kartları
======================================== */

/* Modern Category Cards Section */
.category-cards-section {
    padding: 80px 0;
    background: white;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-card-modern {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card-modern:hover .category-card-bg img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

.category-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.category-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-date {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

/* Category-specific colors */
.umre-card .category-btn {
    background: #FFD700;
    color: #333;
}

.umre-card .category-btn:hover {
    background: #FFC107;
    color: #333;
    transform: translateY(-2px);
}

.hac-card .category-btn {
    background: #dc3545;
    color: white;
}

.hac-card .category-btn:hover {
    background: #c82333;
    color: white;
    transform: translateY(-2px);
}

.domestic-card .category-btn {
    background: #17a2b8;
    color: white;
}

.domestic-card .category-btn:hover {
    background: #138496;
    color: white;
    transform: translateY(-2px);
}

.international-card .category-btn {
    background: #28a745;
    color: white;
}

.international-card .category-btn:hover {
    background: #20c997;
    color: white;
    transform: translateY(-2px);
}

/* Modern Featured Tours Section */
.featured-tours-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 146, 126, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Modern Tour Card */
.tour-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.tour-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tour-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-category-badge-fixed {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hac-badge {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.umre-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.kultur-badge {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.luxury-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333 !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: luxury-glow 2s ease-in-out infinite alternate;
}

@keyframes luxury-glow {
    from {
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 4px 16px rgba(255, 215, 0, 0.6);
    }
}

.luxury-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-right: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

/* Tour Card Content */
.tour-card-content {
    padding: 25px;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.tour-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-date-info,
.tour-duration-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.tour-date-info i,
.tour-duration-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.tour-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #495057;
}

.feature-item i {
    color: var(--primary-color);
    width: 16px;
}

.tour-price-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.price-info {
    margin-bottom: 15px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-cta-buttons {
    display: flex;
    gap: 10px;
}

.btn-details,
.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-details {
    background: var(--primary-color);
    color: white;
}

.btn-details:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 146, 126, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 146, 126, 0.4);
    color: white;
    text-decoration: none;
}

.no-tours-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
}

/* Responsive Modern Tour Cards */
@media (max-width: 768px) {
    .featured-tours-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .tour-card-image {
        height: 200px;
    }
    
    .tour-card-content {
        padding: 20px;
    }
    
    .tour-title {
        font-size: 1.2rem;
    }
    
    .tour-info {
        gap: 15px;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    /* Category Cards Responsive */
    .category-cards-section {
        padding: 40px 0;
    }
    
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }
    
    .category-card-modern {
        height: 280px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .category-badge {
        padding: 10px 12px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-subtitle {
        font-size: 0.7rem;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* ========================================
   GOOGLE REVIEWS SECTION
======================================== */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.google-reviews-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.google-rating-badge {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.google-rating-badge:hover {
    border-color: var(--primary-color, #00927E);
    box-shadow: 0 5px 15px rgba(0, 146, 126, 0.2);
    transform: translateY(-3px);
}

.google-rating-badge .d-flex {
    align-items: center;
}

.rating-score .score {
    font-size: 2.5rem;
    color: #333;
    margin-right: 10px;
}

.rating-score .stars {
    margin-top: 5px;
}

.rating-count .count-text {
    color: #666;
    font-size: 0.9rem;
}

.reviews-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.review-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.review-header {
    margin-bottom: 15px;
}

.review-author h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.review-stars {
    margin-bottom: 5px;
}

.review-stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .google-reviews-container {
        padding: 20px;
    }
    
    .rating-score .score {
        font-size: 2rem;
    }
    
    .review-card {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .featured-tours-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .tour-card-image {
        height: 180px;
    }
    
    .tour-card-content {
        padding: 15px;
    }
    
    .tour-title {
        font-size: 1.1rem;
    }
    
    .tour-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-cta-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-details,
    .btn-whatsapp {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .category-cards-grid {
        grid-template-columns: 1fr;
    }
}

