/* =====================================================
   BIKE AND HIKE TURKEY - MAIN STYLESHEET
   Premium Bisiklet Tur Platformu CSS
   ===================================================== */

/* =====================================================
   GLOBAL STYLES - TEMEL STILLER
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Ana Renkler - Premium Outdoor Teması */
    --primary-color: #E74C3C;      /* Canlı Kırmızı - Ana vurgu rengi */
    --primary-hover: #C0392B;      /* Koyu Kırmızı - Hover durumu */
    --secondary-color: #2C3E50;    /* Gece Mavisi - Kontrast renk */
    --secondary-light: #34495E;    /* Açık Gece Mavisi */
    --accent-color: #F39C12;       /* Altın Sarısı - Vurgu rengi */
    --accent-hover: #D68910;       /* Koyu Altın */
    
    /* Doğa Renkleri */
    --nature-green: #27AE60;       /* Doğa Yeşili */
    --sky-blue: #3498DB;           /* Gökyüzü Mavisi */
    --earth-brown: #8B6F47;        /* Toprak Kahvesi */
    --sunset-orange: #E67E22;      /* Gün Batımı Turuncusu */
    
    /* Text ve Background */
    --text-dark: #2C3E50;          /* Ana metin rengi */
    --text-light: #7F8C8D;         /* İkincil metin */
    --text-muted: #95A5A6;         /* Sessiz metin */
    --bg-light: #F8FAFB;           /* Açık arka plan */
    --bg-gray: #ECF0F1;            /* Gri arka plan */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Gradientler */
    --gradient-primary: linear-gradient(135deg, #E74C3C 0%, #F39C12 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    --gradient-nature: linear-gradient(135deg, #27AE60 0%, #3498DB 100%);
    
    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 20px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    
    /* Geçişler */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* =====================================================
   PREMIUM BIKE & HIKE PRELOADER - CAPPADOCIA EXPERIENCE
   ===================================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 50%, #16213e 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Cappadocia Landscape Background */
.cappadocia-landscape {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

/* Fairy Chimneys */
.fairy-chimney {
    position: absolute;
    bottom: 0;
    width: 80px;
    height: 200px;
    background: linear-gradient(to top, #8B7355 0%, #D2B48C 50%, #F5DEB3 100%);
    clip-path: polygon(30% 100%, 70% 100%, 65% 30%, 50% 0%, 35% 30%);
    animation: chimney-sway 6s ease-in-out infinite;
}

.chimney-1 {
    left: 10%;
    height: 180px;
    animation-delay: 0s;
}

.chimney-2 {
    left: 45%;
    height: 220px;
    animation-delay: 1s;
}

.chimney-3 {
    right: 15%;
    height: 160px;
    animation-delay: 2s;
}

/* Hot Air Balloons */
.hot-air-balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    animation: balloon-float 15s ease-in-out infinite;
}

.hot-air-balloon::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 45px;
    background: radial-gradient(ellipse at center, #E74C3C 0%, #C0392B 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.hot-air-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 10px;
    background: #654321;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.balloon-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.balloon-2 {
    top: 30%;
    right: 30%;
    animation-delay: 5s;
}

.balloon-3 {
    top: 15%;
    left: 50%;
    animation-delay: 10s;
}

.preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Bike & Hike Activity Icons */
.activity-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Bike Icon Animation */
.bike-icon {
    position: relative;
    color: var(--primary-color);
}

.bike-icon i {
    font-size: 4rem;
    animation: bike-ride-motion 3s ease-in-out infinite;
}

.bike-wheel-track {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    animation: track-fade 3s ease-in-out infinite;
}

/* Connect Symbol */
.connect-symbol {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    animation: symbol-pulse 2s ease-in-out infinite;
}

/* Hike Icon Animation */
.hike-icon {
    position: relative;
    color: var(--nature-green);
}

.hike-icon i {
    font-size: 4rem;
    animation: hiker-walk-motion 3s ease-in-out infinite;
}

.hike-footprints {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.footprint {
    width: 6px;
    height: 10px;
    background: var(--nature-green);
    border-radius: 50%;
    opacity: 0;
    animation: footprint-appear 3s ease-in-out infinite;
}

.footprint:nth-child(1) { animation-delay: 0s; }
.footprint:nth-child(2) { animation-delay: 0.3s; }
.footprint:nth-child(3) { animation-delay: 0.6s; }

/* Brand Text Animation */
.brand-text {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 2rem;
}

.brand-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
}

.word {
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.bike-word {
    color: var(--primary-color);
    animation: slide-in-left 1s ease-out 0.5s both;
}

.hike-word {
    color: var(--nature-green);
    animation: slide-in-right 1s ease-out 0.5s both;
}

.word-symbol {
    color: var(--accent-color);
    font-size: 3rem;
    animation: symbol-rotate 2s ease-in-out 1s both;
}

.brand-country {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: fade-in-up 1s ease-out 1.5s both;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    animation: fade-in-up 1s ease-out 1.8s both;
}

/* Trail Animation */
.trail-animation {
    margin: 2rem 0;
}

.trail-svg {
    width: 300px;
    height: 100px;
}

.trail-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
}

/* Loading Text */
.loading-text {
    display: flex;
    gap: 1rem;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.loading-word {
    color: rgba(255, 255, 255, 0.6);
    animation: word-fade 3s ease-in-out infinite;
}

.loading-word:nth-child(1) { animation-delay: 0s; }
.loading-word:nth-child(2) { animation-delay: 0.3s; }
.loading-word:nth-child(3) { animation-delay: 0.6s; }
    z-index: 2;
}

/* Mountain Landscape Silhouette */
.mountain-landscape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    clip-path: polygon(0 100%, 0 60%, 15% 45%, 25% 55%, 35% 40%, 50% 50%, 65% 35%, 75% 45%, 85% 30%, 100% 40%, 100% 100%);
    opacity: 0.6;
}

/* Animated Bike Trail */
.bike-trail {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto 3rem;
}

.trail-path {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    border-radius: 2px;
    opacity: 0.6;
    animation: trail-glow 3s ease-in-out infinite;
}

.bike-rider {
    position: absolute;
    bottom: 35px;
    left: 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: bike-ride 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(231, 76, 60, 0.3));
}

.hiker-figure {
    position: absolute;
    bottom: 35px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--nature-green);
    animation: hiker-walk 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(39, 174, 96, 0.3));
}

/* Premium Brand Typography */
.brand-container {
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0;
    animation: title-reveal 2s ease 1s forwards;
}

.bike-text {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
    animation: text-glow-red 3s ease-in-out infinite;
}

.and-text {
    color: var(--white);
    font-weight: 300;
    margin: 0 1rem;
    opacity: 0.8;
}

.hike-text {
    color: var(--nature-green);
    text-shadow: 0 0 20px rgba(39, 174, 96, 0.5);
    animation: text-glow-green 3s ease-in-out infinite 1.5s;
}

.country-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--accent-color);
    text-transform: uppercase;
    opacity: 0;
    animation: country-reveal 1.5s ease 2.5s forwards;
    margin-top: 0.5rem;
}

/* Adventure Loading Animation */
.adventure-loading {
    margin-top: 3rem;
}

.loading-label {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 3s forwards;
}

.progress-trail {
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.progress-bike {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    animation: progress-ride 4s ease-in-out infinite;
    border-radius: 2px;
}

/* Preloader Keyframe Animations */
@keyframes chimney-sway {
    0%, 100% { 
        transform: translateX(0) rotate(0deg); 
    }
    25% { 
        transform: translateX(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateX(5px) rotate(1deg); 
    }
}

@keyframes balloon-float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(5deg);
    }
    50% {
        transform: translateY(-50px) translateX(-10px) rotate(-3deg);
    }
    75% {
        transform: translateY(-20px) translateX(15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
}

@keyframes wheel-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes letter-pop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(180deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes symbol-glow {
    0%, 100% {
        color: var(--accent-color);
        text-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
    }
    50% {
        color: var(--primary-color);
        text-shadow: 0 0 30px rgba(231, 76, 60, 0.8),
                     0 0 40px rgba(231, 76, 60, 0.4);
    }
}

@keyframes word-fade {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(5px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New Bike & Hike Animations */
@keyframes bike-ride-motion {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(-5deg);
    }
    75% {
        transform: translateX(-10px) rotate(5deg);
    }
}

@keyframes hiker-walk-motion {
    0%, 100% {
        transform: translateY(0) scaleY(1);
    }
    25% {
        transform: translateY(-5px) scaleY(0.95);
    }
    50% {
        transform: translateY(0) scaleY(1);
    }
    75% {
        transform: translateY(-3px) scaleY(0.98);
    }
}

@keyframes footprint-appear {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes track-fade {
    0%, 100% {
        opacity: 0;
        width: 0;
    }
    50% {
        opacity: 1;
        width: 80px;
    }
}

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

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes symbol-rotate {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    50% {
        transform: rotate(0deg) scale(1.2);
    }
    100% {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
    100% { left: 100%; }
}

/* =====================================================
   HEADER & NAVIGATION - ÜST MENÜ
   ===================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: var(--transition);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop .nav-item {
    position: relative;
    z-index: 2050;
}

.nav-desktop .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: var(--transition);
    display: inline-block;
}

.nav-desktop .nav-link:hover {
    color: var(--primary-color);
}

/* Premium Dropdown Menu - Mobile Style for Desktop */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(231, 76, 60, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 2100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: dropdown-entrance 0.4s ease-out;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.dropdown a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown a::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(5px);
}

.dropdown a:hover::before {
    transform: scaleY(1);
}

.dropdown a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown Entrance Animation */
@keyframes dropdown-entrance {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.95) rotateX(-10deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.02) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* =====================================================
   HERO SECTION - VİDEO BACKGROUND
   ===================================================== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    color: var(--white);
    z-index: 1;
    text-align: center;
    max-width: 600px;
    padding: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease 1s;
    animation-fill-mode: both;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease 1.3s;
    animation-fill-mode: both;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 1.6s;
    animation-fill-mode: both;
}

/* Desktop optimizations */
@media (min-width: 1024px) {
    .hero {
        height: 85vh;
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-content {
        max-width: 700px;
        padding: 3rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
        align-items: flex-end;
    }
    
    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem 1.5rem;
        max-width: 100%;
        text-align: center;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        min-width: 220px;
        text-align: center;
        padding: 1rem 1.5rem;
    }
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

/* =====================================================
   TRUST BADGES - GÜVEN ROZET
   ===================================================== */
.trust-badges {
    background: var(--bg-light);
    padding: 2rem 0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: var(--transition);
    min-height: 140px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    font-size: 1.3rem;
    min-height: 1.5em;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.trust-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

/* Simple hover animation for trust items */
.trust-item i {
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* =====================================================
   ANIMATIONS - ANIMASYONLAR
   ===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   MOBILE BOTTOM BAR - MOBİL ALT MENÜ
   ===================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 900;
    justify-content: space-around;
    padding: 0.5rem 0;
}

.bottom-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    transition: var(--transition);
}

.bottom-bar-item i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.bottom-bar-item:active {
    color: var(--primary-color);
}

/* =====================================================
   FEATURED TOURS SECTION - ÖNE ÇIKAN TURLAR
   ===================================================== */
.featured-tours {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.tours-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.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: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.tour-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.tour-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

/* =====================================================
   TOUR CATEGORIES - TUR KATEGORİLERİ
   ===================================================== */
.tour-categories {
    padding: 5rem 0;
    background: var(--bg-light);
}

.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =====================================================
   VIDEO SECTION - VIDEO BÖLÜMÜ
   ===================================================== */
.video-section {
    padding: 5rem 0;
    background: var(--white);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =====================================================
   REVIEWS SECTION - YORUMLAR
   ===================================================== */
.reviews-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.review-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-average {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    color: var(--accent-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-rating {
    color: var(--accent-color);
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* =====================================================
   FOOTER - ALT BÖLÜM
   ===================================================== */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.social-links a i {
    font-size: 1.2rem;
    color: var(--white);
}

/* TripAdvisor specific styling */
.social-links a[aria-label="TripAdvisor"] i {
    color: #00AF87;
}

.social-links a[aria-label="TripAdvisor"]:hover {
    background: rgba(0, 175, 135, 0.2);
}

.social-links a[aria-label="TripAdvisor"]:hover i {
    color: #00AF87;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* =====================================================
   FLOATING ACTION BUTTONS - FLOATING AKSYON BUTONLARI
   ===================================================== */

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20b954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.5);
    animation: fabEntrance 0.8s ease 2s forwards;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 1.5s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(37, 211, 102, 0.3), transparent);
    border-radius: 50%;
    animation: whatsappRing 3s infinite;
    opacity: 0;
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px) scale(0.5);
    z-index: 999;
    cursor: pointer;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    animation: slideInUp 0.5s ease forwards;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.3), transparent);
    border-radius: 50%;
    animation: scrollRing 2s infinite;
    opacity: 0;
}

.scroll-top:hover::before {
    opacity: 1;
}

/* FAB Animations */
@keyframes fabEntrance {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(100px) scale(0.5) rotate(180deg);
    }
    50% {
        opacity: 1;
        visibility: visible;
        transform: translateY(-20px) scale(1.1) rotate(0deg);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100px) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
    }
}

@keyframes whatsappRing {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes scrollRing {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0;
    }
}

/* =====================================================
   MOBILE MENU - PREMIUM MOBİL MENÜ
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 2001;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-bottom: none;
}

.mobile-menu-header .logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.close-menu {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mobile-nav {
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mobile-nav-item:hover {
    background: rgba(231, 76, 60, 0.05);
}

.mobile-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    padding-left: 2rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-dropdown {
    display: none;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-left: 3px solid var(--accent-color);
}

.mobile-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-dropdown a {
    display: block;
    padding: 1rem 2.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.mobile-dropdown a:hover {
    color: var(--primary-color);
    background: rgba(231, 76, 60, 0.1);
    padding-left: 3rem;
}

.mobile-dropdown a::before {
    content: '→';
    position: absolute;
    left: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0;
    transition: var(--transition);
}

.mobile-dropdown a:hover::before {
    opacity: 1;
    left: 2.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* =====================================================
   MOBILE RESPONSIVE RULES - MOBİL RESPONSIVE KURALLARI
   ===================================================== */

/* Tablet ve Mobil için Header Düzenlemeleri */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 2002;
    }
    
    .nav-desktop {
        display: none !important;
    }
    
    .lang-switcher {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 1rem;
        min-height: 60px;
        align-items: center;
    }
    
    header {
        min-height: 60px;
    }
}

/* Mobil için Bottom Bar */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--bg-gray);
        padding: 0.5rem 0;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }
    
    .bottom-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-light);
        transition: var(--transition);
        padding: 0.4rem 0.2rem;
        border-radius: 0.5rem;
        min-width: 50px;
        flex: 1;
        max-width: 70px;
    }
    
    .bottom-bar-item:hover,
    .bottom-bar-item:active {
        opacity: 0.8;
        transform: translateY(-2px);
    }
    
    /* Bottom bar item colors */
    .bottom-bar-item:nth-child(1) { /* Call - Blue */
        color: #3498db;
    }
    
    .bottom-bar-item:nth-child(2) { /* WhatsApp - Green */
        color: #25d366;
    }
    
    .bottom-bar-item:nth-child(3) { /* Tours - Red */
        color: #e74c3c;
    }
    
    .bottom-bar-item:nth-child(4) { /* Reviews - Orange */
        color: #f39c12;
    }
    
    .bottom-bar-item:nth-child(5) { /* Menu - Purple */
        color: #9b59b6;
    }
    
    .bottom-bar-item i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .bottom-bar-item span {
        font-size: 0.65rem;
        font-weight: 500;
        text-align: center;
    }
    
    /* Body padding for mobile bottom bar */
    body {
        padding-bottom: 70px;
    }
}

/* =====================================================
   UTILITIES - YARDIMCI SINIFLAR
   ===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS - RESPONSİF DÜZENLEMELER
   ===================================================== */
@media (max-width: 768px) {
    .tours-grid,
    .categories-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Mobile Hero Height Optimization */
    .hero {
        height: 70vh; /* Reduced from 100vh */
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem 1.5rem 2rem;
        text-align: center;
        bottom: 10%;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        border-radius: 20px 20px 0 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        font-weight: 800;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        animation: hero-title-mobile 1.2s ease-out;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        opacity: 0.9;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
        animation: hero-text-mobile 1.4s ease-out 0.3s both;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        animation: hero-buttons-mobile 1.6s ease-out 0.6s both;
    }
    
    .hero .btn {
        width: 100%;
        max-width: 260px;
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
        font-weight: 700;
        border-radius: 30px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hero .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.6s ease;
    }
    
    .hero .btn:active::before {
        left: 100%;
    }
    
    .hero .btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
        border: none;
        box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    }
    
    .hero .btn-primary:active {
        transform: translateY(2px) scale(0.98);
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.6);
    }
    
    .hero .btn-secondary {
        background: rgba(255,255,255,0.12);
        border: 2px solid rgba(255,255,255,0.8);
        backdrop-filter: blur(15px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .hero .btn-secondary:active {
        background: rgba(255,255,255,0.25);
        transform: translateY(2px) scale(0.98);
        box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    }
    
    /* Trust Badges - 2x2 Grid */
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .trust-item {
        padding: 1rem;
    }
    
    .trust-item i {
        font-size: 1.5rem;
    }
    
    .trust-item h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .trust-item p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Mobile Hero Animations */
    @keyframes hero-title-mobile {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.9);
            filter: blur(5px);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }
    
    @keyframes hero-text-mobile {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 0.9;
            transform: translateY(0);
        }
    }
    
    @keyframes hero-buttons-mobile {
        0% {
            opacity: 0;
            transform: translateY(25px) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        display: none !important; /* Hide on mobile */
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float:hover,
    .scroll-top:hover {
        transform: translateY(-2px) scale(1.03);
    }
    
    body {
        padding-bottom: 70px;
    }
}

/* =====================================================
   MOBILE MENU - PREMIUM MOBİL MENÜ
   ===================================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 2001;
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-bottom: none;
}

.mobile-menu-header .logo {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.close-menu {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.close-menu:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mobile-nav {
    padding: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.mobile-nav-item:hover {
    background: rgba(231, 76, 60, 0.05);
}

.mobile-nav-link {
    display: block;
    padding: 1.2rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(231, 76, 60, 0.1) 0%, transparent 100%);
    padding-left: 2rem;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-dropdown {
    display: none;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-left: 3px solid var(--accent-color);
}

.mobile-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-dropdown a {
    display: block;
    padding: 1rem 2.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.mobile-dropdown a:hover {
    color: var(--primary-color);
    background: rgba(231, 76, 60, 0.1);
    padding-left: 3rem;
}

.mobile-dropdown a::before {
    content: '→';
    position: absolute;
    left: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    opacity: 0;
    transition: var(--transition);
}

.mobile-dropdown a:hover::before {
    opacity: 1;
    left: 2.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* =====================================================
   MOBILE RESPONSIVE RULES - MOBİL RESPONSIVE KURALLARI
   ===================================================== */

/* Tablet ve Mobil için Header Düzenlemeleri */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 2002;
    }
    
    .nav-desktop {
        display: none !important;
    }
    
    .lang-switcher {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
        padding: 1rem;
        min-height: 60px;
        align-items: center;
    }
    
    header {
        min-height: 60px;
    }
}

/* Mobil için Bottom Bar */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--bg-gray);
        padding: 0.5rem 0;
        justify-content: space-around;
        align-items: center;
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }
    
    .bottom-bar-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text-light);
        transition: var(--transition);
        padding: 0.4rem 0.2rem;
        border-radius: 0.5rem;
        min-width: 50px;
        flex: 1;
        max-width: 70px;
    }
    
    .bottom-bar-item:hover,
    .bottom-bar-item:active {
        opacity: 0.8;
        transform: translateY(-2px);
    }
    
    /* Bottom bar item colors */
    .bottom-bar-item:nth-child(1) { /* Call - Blue */
        color: #3498db;
    }
    
    .bottom-bar-item:nth-child(2) { /* WhatsApp - Green */
        color: #25d366;
    }
    
    .bottom-bar-item:nth-child(3) { /* Tours - Red */
        color: #e74c3c;
    }
    
    .bottom-bar-item:nth-child(4) { /* Reviews - Orange */
        color: #f39c12;
    }
    
    .bottom-bar-item:nth-child(5) { /* Menu - Purple */
        color: #9b59b6;
    }
    
    .bottom-bar-item i {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }
    
    .bottom-bar-item span {
        font-size: 0.65rem;
        font-weight: 500;
        text-align: center;
    }
    
    /* Body padding for mobile bottom bar */
    body {
        padding-bottom: 70px;
    }
}