/* Genel Ayarlar (Eğer daha önce eklemediysen) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Topbar Stilleri */
.topbar {
    background-color: #f1f2f6;
    font-size: 13px;
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #e1e1e1;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
}

/* Navbar Stilleri */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    gap: 0px;
}

.firma-logo {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    margin-left:auto;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37; /* Altın sarısı hover efekti */
}

/* Hero Section (Karşılama Alanı) Stilleri */

/* Aktif Sayfa Menü Stili */
.nav-links a.active {
    font-weight: 700; /* Yazıyı kalınlaştırır */
    color: #d4af37; /* Aktif sayfayı altın sarısı yapar (opsiyonel) */
    text-decoration: underline; /* Altını çizer */
    text-underline-offset: 6px; /* Çizgiyi yazıdan biraz uzaklaştırıp ferahlatır */
    text-decoration-thickness: 2px; /* Çizgiyi belirginleştirir */
}

.hero {
    position: relative;
    height: 60vh; /* Ekranın %60'ını kaplar */
    background-image: url('img/kabe.png'); /* Kabe görseli örneği */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Metin okunabilirliği için karanlık filtre */
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.btn-primary {
    display: inline-block;
    background-color: #d4af37;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #b5952f;
}

/* Öne Çıkan Programlar Stilleri */
.packages-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

/* Grid Yapısı ile Responsive Kartlar */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.package-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.package-content {
    padding: 25px;
}

.badge {
    background-color: #d4af37;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.package-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.package-features {
    list-style: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.package-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-outline {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #2c3e50;
    color: #fff;
}

/* Neden Biz (Features) Stilleri */
.features-section {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Footer Stilleri */
.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 18px;
    color: #d4af37; /* Altın Sarısı */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.6;
    font-size: 14px;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.contact-info {
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-info a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #d4af37;
}

.footer-bottom {
    background-color: #11181f;
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #7f8c8d;
}

/* Sabit WhatsApp Butonu Stilleri */
/* Sabit WhatsApp Butonu Stilleri */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition kısmına bottom eklendi */
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* --- MOBİL MENÜ VE ANİMASYON STİLLERİ --- */

/* Masaüstünde Hamburger Menüyü Gizle */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 101; 
    margin-left: auto; /* Ekran ne olursa olsun hamburgeri en sağa iter */
}

/* Hamburger İkonunun Çizgileri */
.hamburger .bar {
    width: 28px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

/* Hamburger X Animasyonu (Menü Açıkken) */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0; 
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Tablet ve Mobil Cihazlar İçin Medya Sorgusu (992px ve altı) */
@media (max-width: 992px) {
    /* Dinamik Logo Boyutlandırması */
    .logo {
        font-size: 20px; 
        letter-spacing: 0.5px;
    }

    .hamburger {
        display: flex;
    }

    /* Yukarıdan Aşağıya İnen Menü Tasarımı */
    .nav-links {
        position: absolute;
        top: 80px; 
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        
        /* Gizli ve Yukarıda Başlatma */
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        
        z-index: -1; 
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    }

    /* Menü Açıldığındaki Durum */
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 10px 0;
    }
    
    .nav-links a {
        font-size: 17px;
        display: block;
        padding: 12px;
    }
}

/* --- TUR DETAY SAYFASI STİLLERİ --- */

/* Sayfa Başlığı Görseli */
.page-header {
    position: relative;
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-header-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Detay Sayfası Izgara Yapısı */
.tour-detail-section {
    padding: 60px 0;
    background-color: #fff;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol kısım %66, sağ kısım %33 yer kaplar */
    gap: 40px;
    align-items: start;
}

/* Sol Sütun İçeriği */
.tour-info h2, .tour-info h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 30px;
}

.tour-info h2:first-child {
    margin-top: 0;
}

.tour-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.included-services {
    list-style: none;
    margin-bottom: 30px;
}

.included-services li {
    background-color: #f8f9fa;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #333;
    font-weight: 500;
}

/* Sağ Sütun (Fiyat Kutusu) */
.tour-sidebar {
    position: sticky;
    top: 100px; /* Ekran kaydırılırken sağdaki kutu menünün altında sabit kalır */
}

.price-box {
    background-color: #f8f9fa;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-box h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    font-size: 22px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.price-item strong {
    font-size: 18px;
    color: #2c3e50;
}

.price-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 20px 0;
}

.tour-dates p {
    margin-bottom: 10px;
    color: #444;
}

.btn-book {
    display: block;
    background-color: #d4af37;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-top: 25px;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: #b5952f;
}

.sidebar-note {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

/* Tablet ve Mobil Uyumluluk */
@media (max-width: 992px) {
    .tour-detail-grid {
        grid-template-columns: 1fr; /* Mobilde sütunlar alt alta geçer */
    }
    .tour-sidebar {
        position: static; /* Mobilde sabitlemeyi kaldır */
    }
    
    /* Ekibimiz bölümü mobil uyumlu */
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

/* WhatsApp Linklerinin Stilizasyonu */
a[href^="https://wa.me/"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="https://wa.me/"]:hover {
    color: #d4af37;
}

/* İletişim Form Stilleri */
.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit {
    flex: 1;
    background-color: #d4af37;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #b5952f;
}

.btn-reset {
    flex: 1;
    background-color: #e1e1e1;
    color: #2c3e50;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reset:hover {
    background-color: #ccc;
}

.success-message {
    background-color: #27ae60;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İletişim Bilgi Kutusu */
.contact-info-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: fit-content;
}

.contact-method p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.contact-method a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #d4af37;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-form {
        padding: 25px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .tour-detail-section > .container > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
    
    .contact-info-box {
        margin-top: 30px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}