/* Gemakoci Adventure - Custom CSS */

/* Ana Renkler - Gemakoci Adventure Color Palette */
:root {
    /* Ana Renkler */
    --primary-color: #2d5016;      /* Koyu orman yeşili - Ana renk */
    --accent-color: #d4641f;       /* Turuncu vurgu - Accent renk */
    --primary: #2d5016;            /* Bootstrap uyumluluğu için */
    --secondary: #d4641f;          /* Bootstrap uyumluluğu için */
    
    /* Destekleyici Renkler */
    --success: #4a7c24;            /* Yeşil başarı */
    --info: #4a90c2;               /* Mavi bilgi */
    --warning: #f39c12;            /* Sarı uyarı */
    --danger: #e74c3c;             /* Kırmızı hata */
    
    /* Nötr Renkler */
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --muted: #6c757d;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Tonlar */
    --primary-dark: #1e3709;       /* Koyu primary */
    --primary-light: #4a7c24;      /* Açık primary */
    --accent-dark: #b8551a;        /* Koyu accent */
    --accent-light: #e88142;       /* Açık accent */
}

/* Bootstrap Özelleştirme */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--accent-color) !important;
}

.bg-secondary {
    background-color: var(--accent-color) !important;
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navigation Stili */
#navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#navbar.scrolled {
    background: rgba(45, 80, 22, 0.95);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--warning) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.8), rgba(30, 55, 9, 0.6));
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section h2 {
    color: var(--warning);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Animasyonlar */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================ */
/* HERO ANIMATED ROAD PATH */
/* ============================================ */

.hero-road-animation {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.road-svg {
    width: 100%;
    height: 80%;
    max-width: 400px;
    filter: drop-shadow(0 0 10px rgba(212, 100, 31, 0.3));
}

.road-asphalt-complete {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    animation: asphaltGlow 8s ease-in-out infinite alternate;
}

.road-lines-complete {
    filter: drop-shadow(0 1px 3px rgba(255,255,255,0.3));
    animation: roadFlow 3s linear infinite;
}

.motorcycle-icon {
    filter: drop-shadow(0 0 15px var(--accent-color));
    opacity: 1;
}

/* Lider Motosiklet Stilleri */
.motorcycle-leader {
    filter: drop-shadow(0 0 20px #FF6B35);
    z-index: 10;
}

.motorcycle-leader .moto-halo {
    animation: motorcyclePulse 3s ease-in-out infinite;
}

/* İkinci Motosiklet Stilleri */
.motorcycle-second {
    filter: drop-shadow(0 0 15px #4CAF50);
    z-index: 9;
}

.motorcycle-second .moto-halo {
    animation: motorcyclePulse 3.5s ease-in-out infinite;
}

/* Üçüncü Motosiklet Stilleri */
.motorcycle-third {
    filter: drop-shadow(0 0 12px #F44336);
    z-index: 8;
}

.motorcycle-third .moto-halo {
    animation: motorcyclePulse 4s ease-in-out infinite;
}

.motorcycle-icon .moto-body {
    animation: motoColorChange 20s ease-in-out 1 forwards;
}

.motorcycle-icon .moto-rider {
    animation: riderColorChange 20s ease-in-out 1 forwards;
}

.motorcycle-icon .moto-wheel {
    animation: wheelRotate 1s linear infinite;
}

.motorcycle-icon .moto-wheel-inner {
    animation: wheelRotate 0.8s linear infinite reverse;
}

.motorcycle-icon .moto-halo {
    animation: motorcyclePulse 3s ease-in-out infinite;
}

.tatil-smiley, .macera-smiley, .eglence-smiley {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    text-anchor: middle;
    dominant-baseline: central;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    pointer-events: none;
}

.tatil-smiley {
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
}

.macera-smiley {
    filter: drop-shadow(0 2px 8px rgba(220, 20, 60, 0.6));
}

.eglence-smiley {
    filter: drop-shadow(0 2px 8px rgba(128, 0, 128, 0.6));
}

@keyframes motorcyclePulse {
    0%, 100% {
        r: 12;
        opacity: 0.3;
    }
    50% {
        r: 15;
        opacity: 0.6;
    }
}

@keyframes motoColorChange {
    0%, 30% {
        fill: var(--accent-color);
        opacity: 0.9;
    }
    30%, 40% {
        fill: gold;
        opacity: 1;
    }
    70%, 100% {
        fill: var(--primary-color);
        opacity: 0.9;
    }
}

@keyframes riderColorChange {
    0%, 30% {
        fill: var(--primary-color);
    }
    30%, 40% {
        fill: var(--accent-color);
    }
    70%, 100% {
        fill: gold;
    }
}

@keyframes wheelRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Journey Points */
.journey-points {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.journey-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.journey-point i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pointPulse 2s ease-in-out infinite;
}

.journey-point.start {
    bottom: 15%;
    left: 47%;
    color: var(--primary-color);
}

.journey-point.middle {
    top: 49%;
    left: 18%;
    color: var(--accent-color);
    animation-delay: 0.5s;
}

.journey-point.end {
    top: 20%;
    right:  12%;
    color: crimson;
    animation-delay: 1s;
}

  .journey-point.eglence {
      bottom: 60%;
      left: 32%; 
      color: purple;
      animation-delay: 1.5s;
  }
  
  .journey-point.tatil {
      top: 36%;
      right: 18%;
      color: gold;
      animation-delay: 2s;
  }

.journey-point span {
    background: rgba(0,0,0,0.7);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

/* ============================================ */
/* ROAD ANIMATIONS */
/* ============================================ */

@keyframes roadFlow {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: 25;
    }
}

@keyframes asphaltGlow {
    from {
        stroke-width: 18;
        opacity: 0.9;
        stroke: #555;
    }
    to {
        stroke-width: 20;
        opacity: 1;
        stroke: #666;
    }
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(212, 100, 31, 0.4);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--accent-color) !important;
}

/* ============================================ */
/* MODERN TOURS SECTION - PREMIUM REDESIGN */
/* ============================================ */

.tours-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.tours-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    z-index: 1;
}

.tours-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 100, 31, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Tours Section Header Enhancement */
.tours-section .row.justify-content-center.mb-5 {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem !important;
}

.tours-section .display-5 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.tours-section .display-5::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.tours-section .lead {
    color: var(--gray-600);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================ */
/* PREMIUM TOUR CARDS */
/* ============================================ */

.tour-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.tour-card:hover::before {
    transform: scaleX(1);
}

.tour-card:hover {
    transform: translateY(-15px) rotateY(2deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 80, 22, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
}

/* Tour Image Enhancements */
.tour-image-slider {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 280px;
}

.tour-slide-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.9) contrast(1.1);
}

.tour-card:hover .tour-slide-image {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

/* Tour Badge Redesign */
.tour-badge {
    z-index: 3;
}

.tour-badge .badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Price styles removed */

/* Card Body Enhancement */
.tour-card .card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour-card .card-body h5 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tour-card .card-body p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Tour Info Section */
.tour-info {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(212, 100, 31, 0.05));
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.tour-info .col-6 {
    position: relative;
}

.tour-info .col-6:first-child::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: linear-gradient(0deg, var(--primary-color), var(--accent-color));
}

.tour-info small {
    color: var(--gray-500);
    font-weight: 600;
    font-size: 0.85rem;
}

.tour-info strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Tour Badges */
.tour-badges {
    pointer-events: none;
}

.tour-difficulty-badge .badge,
.tour-duration-badge .badge {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-difficulty-badge .badge.bg-success {
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.9), rgba(32, 201, 151, 0.9)) !important;
}

.tour-duration-badge .badge.bg-primary {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(212, 100, 31, 0.9)) !important;
}

/* Tour Actions Enhancement */
.tour-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
}

.tour-actions .btn {
    flex: 1;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 0;
    white-space: nowrap;
}

.tour-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.tour-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tour-actions .btn-primary:hover::before {
    left: 100%;
}

.tour-actions .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

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

.tour-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
}

/* View Tours Button Enhancement */
.tours-section .row.justify-content-center.mt-5 {
    margin-top: 4rem !important;
    position: relative;
    z-index: 2;
}

.tours-section .btn-lg {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.3);
}

.tours-section .btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.tours-section .btn-lg:hover::before {
    left: 100%;
}

.tours-section .btn-lg:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(45, 80, 22, 0.4);
    color: white;
}

/* ============================================ */
/* MOBILE RESPONSIVE DESIGN */
/* ============================================ */

@media screen and (max-width: 1024px) {
    .tours-section {
        padding: 4rem 0;
    }
    /* Mobilde büyük gutter kullanan satırlar sağa taşma yapıyordu */
    .row.g-5 {
        --bs-gutter-x: 1.5rem; /* negatif margin -0.75rem olur, container paddingi ile hizalanır */
        --bs-gutter-y: 1.5rem;
    }
    
    .tours-section .display-5 {
        font-size: 2.5rem;
    }
    
    .tours-section .lead {
        font-size: 1.2rem;
    }
    
    .tour-card .card-body {
        padding: 1.5rem;
    }
    
    .tour-image-slider,
    .tour-slide-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center center;
    }
    
    /* Hero Road Animation - 1024px Responsive */
    .hero-road-animation {
        height: 80vh;
        padding: 1.5rem 0.8rem;
    }
    
    .road-svg {
        max-width: 350px;
        height: 75%;
    }
    
    .motorcycle-icon {
        transform: scale(0.8);
    }

    .journey-point i {
        font-size: 1.3rem;
        padding: 0.7rem;
    }
    
    .journey-point span {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .journey-point.start {
        bottom: 5%;
        left: 45%;
    }

    .journey-point.middle {
        top: 42%;
        left: 15%;
    }

    .journey-point.end {
        top: 18%;
        right: 10%;
    }

    .journey-point.tatil {
        top: 35%;
        right: 25%;
    }

    .journey-point.eglence {
        top: 18%;
        left: 40%;
    }
}

/* Family Section */
.family-section {
    padding: 5rem 0;
}

.family-features .fas {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.family-features .d-flex:hover .fas {
    transform: scale(1.2);
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.why-card {
    transition: all 0.3s ease;
}

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

.why-icon {
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    color: var(--primary) !important;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item img {
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    background: rgba(45, 80, 22, 0.8);
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

/* ============================================ */
/* ENHANCED CONTACT SECTION */
/* ============================================ */

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

/* Enhanced Contact Info Cards */
.contact-info {
    padding: 1rem;
    position: relative;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border-color: rgba(45, 80, 22, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

.contact-item h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item .text-muted {
    font-size: 0.875rem;
    color: var(--gray-600) !important;
    margin-top: 0.5rem;
}

.contact-item .btn {
    margin-top: 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Social Links Section */
.social-links {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(212, 100, 31, 0.05));
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.social-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.social-links h6 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.social-links h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.social-links .btn {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

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

.social-links .btn:hover::before {
    left: 100%;
}

.social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Contact Form */
.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-form h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.contact-form h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Enhanced Form Elements */
.form-control {
    border: 2px solid rgba(45, 80, 22, 0.1);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.15);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.form-label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Enhanced Form Button */
.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--dark), #1a252f);
    color: var(--light);
}

.footer-section a {
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--warning) !important;
    transform: translateX(5px);
}

.footer-section a.text-muted {
    color: rgb(175 175 175 / 75%) !important;
}

/* Scroll to Top Button */
#scrollToTop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin: 0.3rem;
    }
    
    .service-card,
    .tour-card,
    .why-card {
        margin-bottom: 2rem;
    }
    
    .contact-info {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .services-section,
    .tours-section,
    .family-section,
    .why-section,
    .gallery-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

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

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .tour-card:hover,
    .why-card:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    .service-card:active,
    .tour-card:active,
    .why-card:active {
        transform: scale(0.95);
    }
}

/* Tours Slider Styles */
.tours-slider-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.tours-slider .swiper-slide {
    height: auto;
}

.tour-slide-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.tour-image-slider {
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.tour-image-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.tour-image-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 8px;
    height: 8px;
    margin: 0 4px;
}

.tour-image-swiper .swiper-pagination-bullet-active {
    background: var(--warning);
}

/* Price overlay removed */

/* ============================================ */
/* TOURS PAGINATION - DESKTOP */
/* ============================================ */

.tours-pagination {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    padding: 1rem 0;
}

.tours-pagination .swiper-pagination-bullet {
    background: rgba(45, 80, 22, 0.3);
    width: 12px;
    height: 12px;
    margin: 0 8px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tours-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.4);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
}

/* ============================================ */
/* DESKTOP NAVIGATION BUTTONS - ENHANCED */
/* ============================================ */

/* ============================================ */
/* PREMIUM DESKTOP NAVIGATION BUTTONS */
/* ============================================ */

.tours-next,
.tours-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(248, 249, 250, 0.9)
    );
    backdrop-filter: blur(20px);
    color: var(--primary-color) !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 12;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(45, 80, 22, 0.25);
    position: relative;
    overflow: hidden;
}

.tours-next::before,
.tours-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.tours-next:hover::before,
.tours-prev:hover::before {
    left: 100%;
}

.tours-next {
    right: 25px;
}

.tours-prev {
    left: 25px;
}

.tours-next:hover,
.tours-prev:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1), 
        rgba(248, 249, 250, 0.95)
    );
    color: var(--accent-color) !important;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 50px rgba(45, 80, 22, 0.4);
    border-color: rgba(212, 100, 31, 0.3);
}

.tours-next::after,
.tours-prev::after {
    font-size: 18px;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

/* ============================================ */
/* ENHANCED MOBILE NAVIGATION BUTTONS */
/* ============================================ */

@media (max-width: 768px) {
    .tours-next,
    .tours-prev {
        width: 45px;
        height: 45px;
        font-size: 16px;
        background: linear-gradient(135deg, rgba(45, 80, 22, 0.9), rgba(45, 80, 22, 0.8));
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 15;
        position: relative;
        overflow: hidden;
    }
    
    .tours-next::before,
    .tours-prev::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;
    }
    
    .tours-next:hover::before,
    .tours-prev:hover::before {
        left: 100%;
    }
    
    .tours-next:hover,
    .tours-prev:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 12px 35px rgba(45, 80, 22, 0.6);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .tours-next {
        right: 12px;
    }
    
    .tours-prev {
        left: 12px;
    }
    
    
    
    /* Enhanced Tours Pagination - 768px Mobile */
    .tours-pagination {
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
        background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(212, 100, 31, 0.05));
        border-radius: 20px;
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .tours-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        margin: 0 10px;
        background: rgba(45, 80, 22, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
    }
    
    .tours-pagination .swiper-pagination-bullet-active {
        background: var(--primary-color);
        transform: scale(1.3);
        border-color: var(--accent-color);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    }
}

/* ============================================ */
/* EXTRA SMALL SCREENS - COMPACT NAVIGATION */
/* ============================================ */

@media (max-width: 576px) {
    .tours-next,
    .tours-prev {
        width: 38px;
        height: 38px;
        font-size: 14px;
        background: linear-gradient(135deg, rgba(45, 80, 22, 0.95), rgba(45, 80, 22, 0.85));
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.35);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .tours-next:hover,
    .tours-prev:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 8px 25px rgba(45, 80, 22, 0.5);
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    }
    
    .tours-next {
        right: 10px;
    }
    
    .tours-prev {
        left: 10px;
    }
    
    /* Enhanced Swiper Pagination - 576px Mobile */
    .tours-pagination {
        position: relative;
        margin-top: 2rem;
        padding: 1.2rem 0.8rem;
        background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(212, 100, 31, 0.08));
        border-radius: 25px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        z-index: 15;
    }
    
    .tours-pagination .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        margin: 0 8px;
        background: rgba(45, 80, 22, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .tours-pagination .swiper-pagination-bullet::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0;
        height: 0;
        background: var(--accent-color);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .tours-pagination .swiper-pagination-bullet-active {
        background: var(--primary-color);
        border-color: var(--accent-color);
        transform: scale(1.3);
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.4);
    }
    
    .tours-pagination .swiper-pagination-bullet-active::before {
        width: 8px;
        height: 8px;
    }
}

/* ============================================ */
/* TOUCH DEVICE OPTIMIZATIONS FOR TOURS */
/* ============================================ */

@media (hover: none) and (pointer: coarse) {
    .tours-next,
    .tours-prev {
        /* Touch cihazlarda butonları biraz daha büyük yap */
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .tours-next:active,
    .tours-prev:active {
        transform: translateY(-50%) scale(0.95);
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    }
    
    /* Enhanced Touch feedback için tour kartları */
    .tour-card:active {
        transform: translateY(-8px) rotateY(1deg) scale(0.98);
        transition: transform 0.1s ease;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    }
    
    .tour-card:active .tour-slide-image {
        transform: scale(1.03);
        filter: brightness(1) contrast(1.1);
    }
    
    .tour-card:active .tour-badge .badge {
        transform: scale(1.05);
    }
    
    
    
    /* Pagination touch feedback */
    .tours-pagination .swiper-pagination-bullet:active {
        transform: scale(0.9);
    }
}

/* Tour slider container için swipe hint */
.tours-slider-container {
    position: relative;
}

.tours-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(90deg, 
        transparent 0%, 
        transparent 15%, 
        rgba(255, 255, 255, 0.03) 50%, 
        transparent 85%, 
        transparent 100%
    );
    z-index: 1;
}

/* ============================================ */
/* MOBILE SWIPE OPTIMIZATION */
/* ============================================ */

@media (max-width: 768px) {
    .tours-slider {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
    }
    
    .tours-slider-container {
        margin-bottom: 1rem;
        position: relative;
    }
    
    .tour-card {
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
        margin-bottom: 0.5rem;
    }
}

/* FAQ Section - Modern Premium Tasarım */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.faq-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
}

.faq-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-section .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

/* Premium Accordion Tasarımı */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion .accordion {
    border: none;
    background: transparent;
}

.faq-accordion .accordion-item {
    border: none;
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.faq-accordion .accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.faq-accordion .accordion-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-accordion .accordion-button {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button .faq-icon {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-accordion .accordion-button:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    color: var(--primary-color);
    transform: translateY(-50%) rotate(45deg);
}

.faq-accordion .accordion-button .faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-right: 1rem;
    flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed) .faq-number {
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    color: var(--primary-color);
}

.faq-accordion .accordion-button .faq-question {
    flex: 1;
    margin-right: 80px;
    line-height: 1.4;
}

.faq-accordion .accordion-collapse {
    border: none;
}

.faq-accordion .accordion-body {
    padding: 0 2.5rem 2.5rem 2.5rem;
    background: var(--white);
    color: var(--gray-700);
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.faq-accordion .accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

.faq-accordion .accordion-body p {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.faq-accordion .accordion-body .highlight {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(212, 100, 31, 0.1));
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 1rem 0;
}

/* FAQ Animasyonları */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.faq-accordion .accordion-item {
    animation: slideInUp 0.6s ease forwards;
}

.faq-accordion .accordion-item:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.faq-accordion .accordion-item:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.faq-accordion .accordion-item:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.faq-accordion .accordion-item:nth-child(4) { animation-delay: 0.4s; opacity: 0; }
.faq-accordion .accordion-item:nth-child(5) { animation-delay: 0.5s; opacity: 0; }

.faq-accordion .accordion-button .faq-icon:hover {
    animation: pulse 0.6s ease-in-out;
}

/* Responsive FAQ Tasarımı */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-section .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .faq-section .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .faq-section .section-subtitle {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .faq-section .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-accordion {
        padding: 0 1rem;
    }
    
    .faq-accordion .accordion-item {
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .faq-accordion .accordion-button {
        padding: 1.5rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .faq-accordion .accordion-button .faq-icon {
        right: 1.5rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .faq-accordion .accordion-button .faq-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-right: 0.75rem;
    }
    
    .faq-accordion .accordion-button .faq-question {
        margin-right: 60px;
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 1.5rem 2rem 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .faq-accordion .accordion-body::before {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .faq-accordion .accordion-body .highlight {
        margin: 1rem 0;
        padding: 0.75rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    #scrollToTop,
    .contact-form,
    .tours-slider {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .faq-section {
        page-break-inside: avoid;
    }
    
    .accordion-item {
        page-break-inside: avoid;
        animation: none;
    }
} 

.breadcrumb-item.active {
    color: white !important;
}

/* ============================================ */
/* CONTENT FIGURE (INLINE IMAGE IN TEXT AREAS)  */
/* ============================================ */
.tour-detail-section .intro-text::after {
    content: "";
    display: table;
    clear: both; /* float içeriğini sarmala */
}

.content-figure {
    margin-bottom: 1.25rem;
}

.content-figure img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .content-figure {
        width: 35%;
        max-width: 460px;
    }
    .content-figure.float-md-start { margin-right: 1.25rem; }
    .content-figure.float-md-end { margin-left: 1.25rem; }
}

@media (max-width: 767.98px) {
    .content-figure {
        float: none !important;
        width: 100%;
        max-width: none;
        margin: 0 0 1rem 0;
    }
}

/* ============================================ */
/* TALIVIO POWERED BY STILI */
/* ============================================ */

.powered-by-talivio {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.powered-by-talivio,
.powered-by-talivio a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.875rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.talivio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.talivio-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    opacity: 1;
}

.talivio-icon {
    height: 18px;
    width: 18px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.talivio-link:hover .talivio-icon {
    transform: scale(1.1);
}

/* ============================================ */
/* KAPSAMLI MOBİL OPTİMİZASYONU */
/* ============================================ */

/* Genel Mobil Ayarları */
@media screen and (max-width: 1024px) {
    /* Tablet Görünüm */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tours-section,
    .services-section,
    .why-section,
    .gallery-section,
    .contact-section {
        padding: 4rem 0;
    }
}

/* Ana Mobil Breakpoint */
@media screen and (max-width: 768px) {
    
    /* ============================================ */
    /* NAVIGATION - MOBİL */
    /* ============================================ */
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
        font-size: 1.25rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        font-size: 1.1rem;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* ============================================ */
    /* HERO SECTION - MOBİL */
    /* ============================================ */
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-section h2 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        border-radius: 50px;
    }
    
    /* Hero Road Animation - Mobilde Gizle */
    .hero-road-animation {
        display: none !important;
    }
    
    /* ============================================ */
    /* SERVICES SECTION - MOBİL */
    /* ============================================ */
    
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.25rem;
    }
    
    /* ============================================ */
    /* TOURS SECTION - MOBİL */
    /* ============================================ */
    
    .tours-section {
        padding: 3rem 0;
    }
    
    .tours-section .display-5 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .tours-section .display-5::after {
        width: 80px;
        height: 3px;
    }
    
    .tours-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .tours-section .row.justify-content-center.mb-5 {
        margin-bottom: 3rem !important;
    }
    
    .tour-card {
        margin-bottom: 2rem;
        border-radius: 20px;
    }
    
    .tour-card .card-body {
        padding: 1.5rem;
    }
    
    .tour-card .card-body h5 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }
    
    .tour-card .card-body p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .tour-image-slider,
    .tour-slide-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .tour-badge .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    
    
    .tour-info {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .tour-actions .btn {
        flex: 1;
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tours-section .btn-lg {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        border-radius: 40px;
    }
    
    /* Tours Section - Bottom margin for pagination */
    .tours-section .row.justify-content-center.mt-5 {
        margin-top: 3rem !important;
    }
    
    /* ============================================ */
    /* GALLERY - MOBİL */
    /* ============================================ */
    
    .gallery-section {
        padding: 3rem 0;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-overlay h5 {
        font-size: 1rem;
    }
    
    /* ============================================ */
    /* CONTACT FORM - MOBİL */
    /* ============================================ */
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-section::before {
        height: 2px;
    }
    
    .contact-info {
        margin-bottom: 3rem;
        padding: 0 0.5rem;
    }
    
    .contact-info h4 {
        text-align: center;
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }
    
    .contact-info h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        border-radius: 2px;
    }
    
    .contact-info > p {
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 1rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .contact-item:hover::before {
        transform: scaleX(1);
    }
    
    .contact-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.95));
        border-color: rgba(45, 80, 22, 0.2);
    }
    
    .contact-icon {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 1.3rem;
        margin-right: 1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    }
    
    .contact-item:hover .contact-icon {
        transform: scale(1.05) rotate(5deg);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
    }
    
    .contact-item > div:not(.contact-icon) {
        flex: 1;
    }
    
    .contact-item h6 {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item a {
        color: var(--dark);
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .contact-item a:hover {
        color: var(--accent-color);
    }
    
    .contact-item .text-muted {
        font-size: 0.8rem;
        color: var(--gray-600) !important;
        margin-top: 0.3rem;
        margin-bottom: 0;
    }
    
    .contact-item .btn {
        margin-top: 0.8rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .contact-item .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .social-links {
        background: linear-gradient(135deg, rgba(45, 80, 22, 0.08), rgba(212, 100, 31, 0.08));
        border-radius: 20px;
        padding: 1.5rem;
        margin-top: 1.5rem;
        border: 1px solid rgba(45, 80, 22, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .social-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }
    
    .social-links h6 {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: center;
        position: relative;
    }
    
    .social-links h6::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
        background: var(--accent-color);
        border-radius: 1px;
    }
    
    .social-links .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 20px;
        margin: 0.25rem;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: calc(50% - 0.5rem);
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-links .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .contact-form {
        margin-top: 2rem;
        padding: 1.8rem 1.2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        position: relative;
        overflow: hidden;
    }
    
    .contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }
    
    .contact-form h4 {
        color: var(--primary-color);
        font-weight: 700;
        margin-bottom: 1.5rem;
        text-align: center;
        position: relative;
        font-size: 1.1rem;
    }
    
    .contact-form h4::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 2px;
        background: var(--accent-color);
        border-radius: 2px;
    }
    
    .contact-form .form-control {
        border: 2px solid rgba(45, 80, 22, 0.15);
        border-radius: 12px;
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        background: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
    }
    
    .contact-form .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.15rem rgba(45, 80, 22, 0.15);
        background: rgba(255, 255, 255, 1);
        transform: translateY(-1px);
    }
    
    .contact-form .form-label {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 0.4rem;
        font-size: 0.9rem;
    }
    
    .contact-form .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        border: none;
        border-radius: 40px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        font-weight: 700;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .contact-form .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .contact-form .btn-primary:hover::before {
        left: 100%;
    }
    
    .contact-form .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    }
    
    /* Mobile Layout Optimizations */
    .contact-info .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .contact-section .row.g-5 {
        row-gap: 1.5rem !important;
    }
    
    .contact-section .display-5 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem !important;
        color: var(--primary-color);
        font-weight: 800;
    }
    
    .contact-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem;
        color: var(--gray-600);
        line-height: 1.5;
    }
    
    /* Contact Section Header Enhancement */
    .contact-section .row.justify-content-center.mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .contact-section .row.justify-content-center.mb-5 .col-lg-8 {
        position: relative;
    }
    
    .contact-section .row.justify-content-center.mb-5 .col-lg-8::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        border-radius: 2px;
    }
    
    .form-control {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .form-control:focus {
        box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
    }
    
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        border-radius: 50px;
    }
    
    /* ============================================ */
    /* FOOTER - MOBİL */
    /* ============================================ */
    
    .footer-section {
        padding: 3rem 0 2rem 0;
    }
    
    .footer-section .col-lg-4,
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-section h5,
    .footer-section h6 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .powered-by-talivio {
        text-align: center;
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* ============================================ */
    /* WHY SECTION - MOBİL */
    /* ============================================ */
    
    .why-section {
        padding: 3rem 0;
    }
    
    .why-card {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .why-icon {
        margin-bottom: 1.5rem;
    }
}

/* Küçük Mobil Cihazlar */
@media screen and (max-width: 576px) {
    
    /* ============================================ */
    /* EXTRA SMALL MOBILE */
    /* ============================================ */
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    /* Küçük mobilde de aynı hizalama için güvence */
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-section,
    .tours-section,
    .why-section,
    .gallery-section,
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .service-card,
    .tour-card,
    .why-card {
        margin-bottom: 1.5rem;
    }
    
    /* Tours Section - Küçük Mobil */
    .tours-section .display-5 {
        font-size: 1.9rem;
    }
    
    .tours-section .display-5::after {
        width: 70px;
        height: 2px;
    }
    
    .tours-section .lead {
        font-size: 1rem;
    }
    
    .tour-card {
        border-radius: 18px;
    }
    
    .tour-card .card-body {
        padding: 1.2rem;
    }
    
    .tour-card .card-body h5 {
        font-size: 1.1rem;
    }
    
    .tour-card .card-body p {
        font-size: 0.9rem;
    }
    
    .tour-image-slider,
    .tour-slide-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center center;
    }
    
    .tour-badge .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .tour-difficulty-badge .badge,
    .tour-duration-badge .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .tour-info {
        padding: 0.7rem;
        margin-bottom: 1rem;
    }
    
    .tour-actions .btn {
        flex: 1;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
    }
    
    .tours-section .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        border-radius: 35px;
    }
    
    /* Tours Section - Bottom margin for pagination */
    .tours-section .row.justify-content-center.mt-5 {
        margin-top: 2.5rem !important;
    }
    
    /* Contact Page - Extra Small Mobile */
    .contact-info h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-info h4::after {
        width: 50px;
        height: 2px;
    }
    
    .contact-info > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin-bottom: 1.2rem;
        border-radius: 18px;
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 0.8rem;
        border-radius: 12px;
    }
    
    .contact-item h6 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item a {
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .contact-item .text-muted {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
    
    .contact-item .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 18px;
        margin-top: 0.6rem;
    }
    
    .social-links {
        padding: 1.2rem;
        border-radius: 18px;
        margin-top: 1.2rem;
    }
    
    .social-links h6 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .social-links h6::after {
        width: 35px;
        height: 2px;
        bottom: -5px;
    }
    
    .social-links .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 18px;
        width: calc(50% - 0.3rem);
        margin: 0.2rem;
    }
    
    .contact-form {
        padding: 1.3rem 0.8rem;
        border-radius: 20px;
        margin-top: 1.5rem;
    }
    
    .contact-form h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-form h4::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }
    
    .contact-form .form-control {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        border-radius: 10px;
        margin-bottom: 0.6rem;
    }
    
    .contact-form .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-form .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 35px;
        margin-top: 0.4rem;
    }
    
    .contact-section .row.justify-content-center.mb-5 {
        margin-bottom: 1.5rem !important;
    }
    
    .contact-section .display-5 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem !important;
    }
    
    .contact-section .lead {
        font-size: 0.9rem;
        margin-bottom: 1.2rem !important;
        padding: 0 0.5rem;
    }
    
    .contact-section .row.justify-content-center.mb-5 .col-lg-8::after {
        width: 60px;
        height: 2px;
        bottom: -10px;
    }
    
    .hero-buttons .btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
    }
    
    .talivio-link {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
    }
    
    .talivio-icon {
        height: 16px;
        width: 16px;
    }
    
    /* FAQ section için ekstra düzeltmeler */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-section .section-subtitle {
        font-size: 1rem;
    }
    
    .faq-section .section-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .faq-accordion .accordion-button {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-accordion .accordion-button .faq-icon {
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .faq-accordion .accordion-button .faq-number {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
        margin-right: 0.5rem;
    }
    
    .faq-accordion .accordion-button .faq-question {
        margin-right: 50px;
        font-size: 0.95rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 1rem 1.5rem 1rem;
        font-size: 0.95rem;
    }
    
    .faq-accordion .accordion-body::before {
        left: 1rem;
        right: 1rem;
    }
}

/* ============================================ */
/* TOUCH-FRIENDLY ELEMENTLERİ */
/* ============================================ */

/* Touch active states */
.touch-device .service-card.touch-active,
.touch-device .tour-card.touch-active,
.touch-device .why-card.touch-active,
.touch-device .gallery-item.touch-active {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.touch-device .gallery-item.gallery-touch-active {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-open .navbar-collapse {
    background: rgba(45, 80, 22, 0.98);
    backdrop-filter: blur(10px);
}

@media (hover: none) and (pointer: coarse) {
    
    /* Touch cihazlar için optimizasyonlar */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    .form-control {
        min-height: 44px;
        padding: 0.75rem 1rem;
    }
    
    .navbar-nav .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .contact-item {
        min-height: 60px;
    }
    
    /* Hover efektlerini touch'a çevir */
    .service-card:active,
    .tour-card:active,
    .why-card:active,
    .gallery-item:active {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .btn:active {
        transform: translateY(-1px);
    }
}

/* ============================================ */
/* RESPONSIVE TYPOGRAPHİ */
/* ============================================ */

@media screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        line-height: 1.5;
    }
    
    h1, .h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2, .h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    h5, .h5 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    p, .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* ============================================ */
/* SCROLL TO TOP - MOBİL */
/* ============================================ */

@media screen and (max-width: 768px) {
    #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================ */
/* BREADCRUMB - MOBİL */
/* ============================================ */

@media screen and (max-width: 768px) {
    .breadcrumb {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .breadcrumb-item {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

/* ============================================ */
/* LOADING ANIMATION - MOBİL */
/* ============================================ */

@media screen and (max-width: 768px) {
    .loading {
        padding: 2rem 1rem;
    }
    
    .loading .spinner-border {
        width: 2rem;
        height: 2rem;
    }
}
.swiper-pagination { position: inherit !important; }

/* ============================================ */
/* SAĞ SABİT AKSİYON BUTONLARI */
/* ============================================ */
.fixed-right-buttons {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1050;
}

.fixed-right-buttons .fixed-btn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    backdrop-filter: blur(8px);
}

.fixed-right-buttons .fixed-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
}

.fixed-btn-whatsapp { 
    background: linear-gradient(135deg, #25D366, #1ebe57);
}

.fixed-btn-whatsapp i { font-size: 22px; }

.fixed-btn-lang {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .fixed-right-buttons {
        right: 12px;
        top: auto;
        bottom: 18px;
        transform: none;
        flex-direction: row;
    }
}

/* Navigation Dropdown Styles */
.navbar-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    max-height: none;
    overflow-y: visible;
    animation: fadeInDown 0.2s ease-out;
    z-index: 1050;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* ensure left alignment */
    text-align: left;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.3);
}

.navbar-nav .dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.navbar-nav .dropdown-menu .dropdown-item:hover i {
    opacity: 1;
}

.navbar-nav .dropdown-menu .dropdown-header {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.navbar-nav .dropdown-menu .dropdown-divider {
    margin: 0.75rem 1rem;
    border-color: rgba(45, 80, 22, 0.1);
}

/* Bootstrap 5 Dropdown Enhancements */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem 0;
    min-width: 280px;
    max-height: none;
    overflow-y: visible;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(45, 80, 22, 0.1);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(45, 80, 22, 0.3);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 80, 22, 0.5);
}

/* Dropdown Items */
.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: rgba(45, 80, 22, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.2);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--accent-color);
    color: white;
}

/* Dropdown Headers */
.dropdown-header {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dropdown Dividers */
.dropdown-divider {
    margin: 0.75rem 1rem;
    border-color: rgba(45, 80, 22, 0.1);
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left align content */
    cursor: pointer;
}

.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
    margin-left: auto; /* push arrow to the far right */
    font-size: 0.8rem;
    content: "›";
    font-weight: bold;
    color: var(--primary-color);
}

.dropdown-submenu.show .dropdown-toggle::after {
    transform: rotate(0deg);
}

.dropdown-submenu-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
    border-radius: 10px;
    min-width: 260px;
    display: none;
    z-index: 1070;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
    animation: fadeInRight 0.2s ease-out;
    border-left: 3px solid var(--accent-color);
}

.dropdown-submenu-menu.show {
    display: block;
}

@media (min-width: 992px) {
    .dropdown-submenu:hover .dropdown-submenu-menu {
        display: block;
    }
    .dropdown-submenu:hover .dropdown-toggle::after {
        transform: rotate(0deg);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Mobile dropdown adjustments */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        background-color: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        min-width: auto;
        max-height: none;
        overflow-y: visible;
        position: static !important;
        transform: none !important;
        display: none;
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block;
        background-color: rgba(45, 80, 22, 0.2);
        border-radius: 8px;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 0.9rem;
        color: #fff;
    }
    
    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.08);
        color: #fff;
        transform: none;
    }
    
    .navbar-nav .dropdown-menu .dropdown-header {
        font-size: 0.8rem;
        padding: 0.5rem 2rem;
        color: #fff;
    }
    
    .dropdown-submenu-menu {
        position: static !important;
        display: none;
        background-color: rgba(45, 80, 22, 0.25);
        border-radius: 8px;
        margin: 0.25rem 0;
        padding: 0.5rem 0;
        margin-left: 1rem;
        border-left: 3px solid var(--accent-color);
        box-shadow: none;
        backdrop-filter: none;
        width: 100%;
    }
    
    .dropdown-submenu-menu.show {
        display: block;
    }
    
    .dropdown-submenu .dropdown-item {
        padding-left: 2.5rem;
        color: #fff;
    }
    
    .dropdown-submenu-menu .dropdown-item {
        padding-left: 3rem;
        font-size: 0.85rem;
        color: #fff;
    }

    .navbar-nav .dropdown-menu .dropdown-item i,
    .dropdown-submenu-menu .dropdown-item i {
        color: #fff;
        opacity: 0.9;
    }

    /* Make submenu toggles clear and aligned on mobile */
    .dropdown-submenu > .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: flex-start; /* left align on mobile too */
        color: #fff;
        width: 100%;
    }
    .dropdown-submenu > .dropdown-toggle::after {
        color: #fff;
        font-weight: 700;
        margin-left: 0.5rem;
        margin-left: auto; /* push arrow to the far right */
        transform: rotate(0deg); /* caret pointing right by default */
    }
    .dropdown-submenu.show > .dropdown-toggle::after {
        transform: rotate(90deg); /* caret pointing down when open */
    }
}

/* Navbar active state for dropdown parents */
.navbar-nav .dropdown.show > .nav-link,
.navbar-nav .dropdown > .nav-link:focus {
    color: var(--accent-color) !important;
}

/* ============================================ */
/* PAGE HEADER (moved from includes/page-header.php) */
/* ============================================ */
.page-header {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.7);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 80, 22, 0.8), rgba(212, 100, 31, 0.6));
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    justify-content: center;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-header-actions {
    margin-top: 2rem;
}

.page-header-actions .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.page-header-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .page-header {
        height: 60vh;
        min-height: 400px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .page-header-bg {
        background-attachment: scroll;
    }
}