/* ======================================================= */
/* ========== VITAL TOURS TURKEY - TÜM ÖZEL STİLLER ========== */
/* ======================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

/* RENK PALETİ VE TEMEL DEĞİŞKENLER */
:root {
    --vt-primary: #4FA9A2; /* Logodaki Yeşil/Turkuaz */
    --vt-secondary: #2C4A63; /* Logodaki Koyu Mavi */
    --vt-gray: #808285; /* Logodaki Gri */
    --vt-light: #f8f9fa;
    --vt-white: #ffffff;
    --font-family-base: 'Nunito', sans-serif;
}

/* ================================== */
/* ========== ANA SAYFA: HERO BOOKING ========== */
/* ================================== */
.vt-hero-booking {
    position: relative; padding: 100px 0; min-height: 80vh; display: flex; align-items: center;
    /* YENİ EKLENDİ: Diğer background özelliklerini koruyalım */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--vt-white);
}
.vt-hero-background-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(44, 74, 99, 0.90) 0%, rgba(44, 74, 99, 0.60) 100%);
    z-index: 1;
}
.vt-hero-booking .container-xxl { position: relative; z-index: 2; }
.vt-hero-content .vt-hero-title { font-size: 3.5rem; font-weight: 800; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.vt-hero-content .vt-hero-subtitle { font-size: 1.25rem; font-weight: 400; margin-top: 1.5rem; max-width: 500px; opacity: 0.9; }

/* BOOKING FORM */
.vt-booking-form-container { background: rgba(255, 255, 255, 0.95); padding: 2.5rem; border-radius: 15px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); backdrop-filter: blur(10px); }
.vt-booking-form-container .vt-form-title { color: var(--vt-secondary); font-weight: 800; text-align: center; margin-bottom: 1.5rem; }
.vt-form-field { display: flex; align-items: center; background-color: #f0f4f7; border-radius: 8px; margin-bottom: 1rem; border: 2px solid transparent; transition: border-color 0.3s ease; }
.vt-form-field:focus-within { border-color: var(--vt-primary); }
.vt-form-field i { font-size: 1.2rem; color: var(--vt-gray); padding: 0 15px; }
.vt-form-field .form-control { border: none; background: transparent; padding: 15px 15px 15px 0; height: auto; font-size: 1rem; font-weight: 600; color: var(--vt-secondary); box-shadow: none; }
.vt-form-field .form-control::placeholder { color: var(--vt-gray); }
.vt-form-field .form-control:focus { box-shadow: none; }
.vt-btn-submit { background-color: var(--vt-primary); color: var(--vt-white); font-size: 1.1rem; font-weight: 700; padding: 15px; border-radius: 8px; border: none; transition: background-color 0.3s ease, transform 0.2s ease; }
.vt-btn-submit:hover { background-color: var(--vt-secondary); color: var(--vt-white); transform: translateY(-2px); }

/* ================================== */
/* ========== GENEL BÖLÜM BAŞLIKLARI ========== */
/* ================================== */
.vt-section-title { color: var(--vt-secondary); font-weight: 800; font-size: 2.5rem; margin-bottom: 0.5rem; }
.vt-section-subtitle { color: var(--vt-gray); font-size: 1.1rem; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ================================== */
/* ========== TÜM BÖLÜMLER ========== */
/* ================================== */
/* NASIL ÇALIŞIR */
.vt-how-it-works { padding: 80px 0; background-color: var(--vt-light); }
.vt-step-card { background-color: var(--vt-white); padding: 2.5rem; border-radius: 15px; text-align: center; border: 1px solid #e9ecef; transition: transform 0.3s ease, box-shadow 0.3s ease; width: 100%; }
.vt-step-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(44, 74, 99, 0.1); }
.vt-step-icon-wrapper { width: 80px; height: 80px; margin: 0 auto 1.5rem auto; background-color: #1f4362; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vt-step-icon-wrapper i { font-size: 2.5rem; color: var(--vt-white); }
.vt-step-card .vt-step-title { color: var(--vt-secondary); font-weight: 700; margin-bottom: 1rem; }
.vt-step-card .vt-step-description { color: var(--vt-gray); line-height: 1.6; }

/* DESTİNASYONLAR */
.vt-destinations { padding: 80px 0; background-color: var(--vt-white); }
.vt-destination-card { position: relative; display: block; height: 450px; border-radius: 15px; overflow: hidden; text-decoration: none; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.vt-destination-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(44, 74, 99, 0.15); }
.vt-destination-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.vt-destination-card:hover img { transform: scale(1.05); }
.vt-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%); transition: background-color 0.4s ease; }
.vt-destination-card:hover .vt-card-overlay { background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 50%); }
.vt-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; color: var(--vt-white); z-index: 2; }
.vt-card-title { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.vt-card-description { font-size: 1rem; opacity: 0.9; margin-bottom: 1rem; }
.vt-card-link { font-weight: 700; display: inline-block; transition: transform 0.3s ease; }
.vt-card-link i { vertical-align: middle; transition: transform 0.3s ease; }
.vt-destination-card:hover .vt-card-link i { transform: translateX(5px); }

/* ÖNE ÇIKAN TEDAVİLER */
.vt-treatments { padding: 80px 0; background-color: var(--vt-light); }
.vt-treatment-card { display: flex; flex-direction: column; align-items: center; text-align: center; width: 100%; padding: 2rem; background-color: var(--vt-white); border-radius: 15px; border: 1px solid #e9ecef; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.vt-treatment-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(44, 74, 99, 0.1); border-color: var(--vt-primary); }
.vt-treatment-icon { width: 70px; height: 70px; margin-bottom: 1.5rem; background-color: rgba(79, 169, 162, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background-color 0.3s ease; }
.vt-treatment-icon i { font-size: 2.2rem; color: var(--vt-primary); transition: color 0.3s ease; }
.vt-treatment-card:hover .vt-treatment-icon { background-color: var(--vt-primary); }
.vt-treatment-card:hover .vt-treatment-icon i { color: var(--vt-white); }
.vt-treatment-title { color: var(--vt-secondary); font-weight: 700; margin-bottom: 0.75rem; }
.vt-treatment-description { color: var(--vt-gray); font-size: 0.95rem; line-height: 1.6; }

/* NEDEN BİZ? */
.vt-why-us { padding: 80px 0; background-color: var(--vt-white); }
.vt-why-us-image { border-radius: 15px; overflow: hidden; box-shadow: 0 15px 40px rgba(44, 74, 99, 0.1); }
.vt-why-us-image img { width: 100%; height: auto; display: block; }
.vt-why-us-content .vt-section-title, .vt-why-us-content .vt-section-subtitle { text-align: left !important; margin-left: 0 !important; }
.vt-feature-item { display: flex; align-items: flex-start; margin-bottom: 2rem; }
.vt-feature-item:last-child { margin-bottom: 0; }
.vt-feature-icon { flex-shrink: 0; width: 50px; height: 50px; margin-right: 1.5rem; background-color: #1f4362; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.vt-feature-icon i { font-size: 1.8rem; color: var(--vt-white); }
.vt-feature-title { color: var(--vt-secondary); font-weight: 700; margin-bottom: 0.25rem; }
.vt-feature-text p { color: var(--vt-gray); line-height: 1.6; margin-bottom: 0; }

/* MUTLU HASTALAR */
.vt-testimonials { padding: 80px 0; background-color: var(--vt-light); }
.vt-testimonial-slider { padding: 1rem 0 3rem 0; }
.vt-testimonial-card { background-color: var(--vt-white); padding: 2.5rem; border-radius: 15px; text-align: center; border: 1px solid #e9ecef; margin: 0 1rem; }
.vt-testimonial-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem auto; border: 4px solid var(--vt-white); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.vt-rating-stars { margin-bottom: 1rem; color: #ffc107; }
.vt-testimonial-text { color: var(--vt-gray); font-style: italic; margin-bottom: 1.5rem; }
.vt-testimonial-name { color: var(--vt-secondary); font-weight: 700; margin-bottom: 0.25rem; }
.vt-testimonial-treatment { color: var(--vt-primary); font-size: 0.9rem; font-weight: 600; }
.vt-testimonial-slider .swiper-button-next, .vt-testimonial-slider .swiper-button-prev { color: #1f4362; }

/* AYRICALIKLAR */
.vt-benefits { padding: 80px 0; background-color: var(--vt-white); } /* Arka planı beyaz yaptım */
.vt-benefit-item { display: flex; align-items: flex-start; text-align: left; }
.vt-benefit-icon { flex-shrink: 0; margin-right: 1rem; }
.vt-benefit-icon i { font-size: 2.2rem; color: #1f4362; }
.vt-benefit-title { color: var(--vt-secondary); font-weight: 700; margin-bottom: 0.3rem; font-size: 1.1rem; }
.vt-benefit-text p { color: var(--vt-gray); line-height: 1.6; margin-bottom: 0; font-size: 0.95rem; }

/* ======================================================= */
/* ========== AKILLI KATEGORİ SAYFASI ÖZEL STİLLERİ ========== */
/* ======================================================= */
.vt-category-hero-v2 { position: relative; padding: 100px 0; background-size: cover; background-position: center; color: var(--vt-white); }
.vt-hero-features { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 15px; padding: 2rem; backdrop-filter: blur(10px); }
.vt-hero-feature-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
.vt-hero-feature-item:last-child { margin-bottom: 0; }
.vt-hero-feature-icon { flex-shrink: 0; width: 50px; height: 50px; margin-right: 1rem; background-color: var(--vt-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1f4362; font-size: 1.6rem; }
.vt-hero-feature-item h5 { font-weight: 700; margin-bottom: 0.25rem; }
.vt-hero-feature-item p { margin-bottom: 0; opacity: 0.9; font-size: 0.95rem; }
.vt-about-city { padding: 80px 0; background-color: var(--vt-white); }
.vt-clinic-gallery { padding: 80px 0; background-color: var(--vt-light); }
.vt-clinic-photo { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.vt-clinic-photo:hover { transform: scale(1.05); box-shadow: 0 15px 35px rgba(44,74,99,0.2); }
.vt-clinic-photo img { width: 100%; height: 100%; object-fit: cover; }
.vt-packages { padding: 80px 0; background-color: var(--vt-white); } /* Arka planı beyaz yaptım */
.vt-package-card { background-color: var(--vt-white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; width: 100%; border: 1px solid #e9ecef; }
.vt-package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(44, 74, 99, 0.15); }
.vt-package-image { position: relative; height: 250px; }
.vt-package-image img { width: 100%; height: 100%; object-fit: cover; }
.vt-package-price { position: absolute; top: 1rem; right: 1rem; background-color: var(--vt-primary); color: var(--vt-white); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.vt-package-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.vt-package-title { color: var(--vt-secondary); font-weight: 800; margin-bottom: 0.5rem; }
.vt-package-description { color: var(--vt-gray); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.vt-package-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.vt-package-features li { display: flex; align-items: center; margin-bottom: 0.75rem; color: var(--vt-secondary); }
.vt-package-features li i { color: var(--vt-primary); margin-right: 0.75rem; font-size: 1.2rem; }

/* YENİ VE GÜÇLENDİRİLMİŞ KOD BLOĞU */
.vt-category-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    
    /* DİĞER TÜM STİLLERİ EZMESİ İÇİN !important EKLENDİ */
    background: rgba(44, 74, 99, 0.85) !important; 
    
    z-index: 1;
}

/* ================================== */
/* ========== MOBİL UYUM KODLARI ========== */
/* ================================== */
@media (max-width: 991.98px) {
    /* --- GENEL HERO AYARLARI (HEM ANA SAYFA HEM KATEGORİ) --- */
    .vt-hero-content { 
        text-align: center; 
        margin-bottom: 3rem; 
    }
    .vt-hero-content .vt-hero-subtitle { 
        margin-left: auto; 
        margin-right: auto; 
    }
    .vt-hero-title { 
        font-size: 2.2rem; /* YAZI BOYUTU KÜÇÜLTÜLDÜ */
    }

    /* --- SADECE KATEGORİ SAYFASI İÇİN ÖZEL AYARLAR (YENİ EKLENDİ) --- */
    .vt-category-hero-v2 {
        padding: 60px 0; /* Üst-alt boşluk azaltıldı */
        min-height: auto; /* Minimum yükseklik kaldırıldı */
    }
    
    .vt-hero-features {
        padding: 1.5rem; /* Sağdaki kutunun iç boşluğu azaltıldı */
    }

    /* --- GENEL BÖLÜM AYARLARI (YENİ EKLENDİ) --- */
    /* Tüm bölümlerin mobil cihazlarda daha az yer kaplamasını sağlıyoruz */
    .vt-how-it-works,
    .vt-destinations,
    .vt-treatments,
    .vt-why-us,
    .vt-testimonials,
    .vt-benefits,
    .vt-about-city,
    .vt-clinic-gallery,
    .vt-packages {
        padding: 50px 0;
    }
    
    .vt-section-title {
        font-size: 2rem; /* Bölüm başlıkları küçültüldü */
    }
}




/* ======================================================= */
/* ========== NİHAİ ÇÖZÜM: GİZLİ GRADIENT'İ İMHA ETME ========== */
/* ======================================================= */

/*
  AÇIKLAMA: Aşağıdaki kod, .vt-category-hero-v2 elementine
  başka bir CSS dosyasından eklenmiş olabilecek ::before ve ::after
  katmanlarındaki TÜM background özelliklerini SIFIRLAR.
  Bu, inatçı gradient sorununun KESİN ÇÖZÜMÜDÜR.
*/
.vt-category-hero-v2::before,
.vt-category-hero-v2::after {
    background: none !important;
    background-image: none !important;
}

/* 
  Ayrıca, bizim kendi overlay'imizin de
  her koşulda doğru renkte olmasını garanti altına alıyoruz.
*/
.vt-category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 74, 99, 0.85) !important; 
    z-index: 1;
}


/* ======================================================= */
/* ========== GÜNCELLENMİŞ: KLİNİK GALERİ STİLLERİ ========== */
/* ======================================================= */
.vt-clinic-gallery { 
    padding: 80px 0; 
    background-color: var(--vt-light); 
}

/* 
  YENİ EKLENEN KURALLAR:
  Bu bölüm, slider'ın taşmasını engelleyerek ve 
  doğru şekilde hizalanmasını sağlayarak sorunu çözüyor.
*/
.vt-clinic-slider {
    position: relative;   /* Navigasyon oklarının doğru konumlanması için gerekli */
    overflow: hidden;     /* TAŞMAYI ENGELLEYEN EN ÖNEMLİ KURAL */
    padding: 1rem;        /* İçeriden küçük bir boşluk veriyoruz */
    margin: 0 -1rem;      /* Verdiğimiz padding'i dengeleyerek hizalıyoruz */
}

.vt-clinic-photo {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vt-clinic-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(44,74,99,0.2);
}

.vt-clinic-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-clinic-slider .swiper-button-next,
.vt-clinic-slider .swiper-button-prev {
    color: var(--vt-secondary);
}


/* ======================================================= */
/* ========== GÜNCELLENMİŞ: KLİNİK GALERİSİ STİLLERİ ========== */
/* ======================================================= */
.vt-clinic-gallery { 
    padding: 80px 0; 
    background-color: var(--vt-light); 
}

/* Slider'ın taşmasını engelleyen ve hizalayan ana kural */
.vt-clinic-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem;
    margin: 0 -1rem;
}

.vt-gallery-item {
    position: relative;
    height: 250px; /* Her bir slaytın yüksekliği */
    border-radius: 15px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.vt-gallery-item:hover {
    box-shadow: 0 15px 35px rgba(44,74,99,0.2);
}

.vt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.vt-gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(44, 74, 99, 0);
    display: flex; align-items: center; justify-content: center;
    color: var(--vt-white); font-size: 2.5rem;
    opacity: 0; transition: background-color 0.4s ease, opacity 0.4s ease;
}

.vt-gallery-item:hover .vt-gallery-overlay {
    background-color: rgba(44, 74, 99, 0.6);
    opacity: 1;
}

/* Slider navigasyon oklarının rengini belirginleştirme */
.vt-clinic-slider .swiper-button-next,
.vt-clinic-slider .swiper-button-prev {
    color: var(--vt-secondary);
}


/* ======================================================= */
/* ========== NİHAİ CTA FORMU STİLLERİ ========== */
/* ======================================================= */
.vt-cta-form {
    padding: 80px 0;
    background-color: var(--vt-secondary);
}

.vt-cta-container {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ANA FORM YAPI KODU */
.vt-cta-form-wrapper {
    display: flex;
    flex-direction: column; /* Mobil öncelikli: Alt alta */
    gap: 1.5rem;
}

.vt-cta-form-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 1rem;
}

/* CTA içindeki form alanlarının ana sayfadaki gibi görünmesini sağla */
.vt-cta-form-grid .vt-form-field {
    margin-bottom: 0; /* Ekstra boşluğu kaldır */
}

.vt-cta-form-button .vt-btn-submit {
    padding: 15px;
    font-size: 1.1rem;
    height: 100%;
}

/* MASAÜSTÜ UYUMLULUK (992px ve üstü) */
@media (min-width: 992px) {
    .vt-cta-form-wrapper {
        flex-direction: row; /* Yan yana */
        align-items: flex-start; /* Hizalama */
    }

    .vt-cta-form-grid {
        flex-grow: 1;
        grid-template-columns: repeat(3, 1fr); /* 3'lü grid */
    }
    
    .vt-cta-form-button {
        flex-shrink: 0;
        width: 220px; /* Buton genişliği */
    }
}



/* ======================================================= */
/* ========== NİHAİ DÜZELTME: HERO VE CTA FORMU ========== */
/* ======================================================= */

/* --- HERO BÖLÜMÜ KATMAN (z-index) DÜZELTMESİ --- */
/* Bu kural, metin ve özellikler kutusunun, overlay katmanının her zaman üzerinde olmasını sağlar */
.vt-category-hero-v2 .container-xxl {
    position: relative; /* z-index'in çalışması için gerekli */
    z-index: 2;         /* Katman sırasını 2 yap (overlay'den yüksek) */
}

.vt-category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 74, 99, 0.7); /* Rengi biraz daha belirgin hale getirdim */
    z-index: 1; /* Katman sırasını 1 yap (metinden düşük) */
}


/* --- CTA (İLETİŞİM FORMU) BÖLÜMÜ STİLLERİ (EKSİK OLAN KISIM) --- */
.vt-cta-form {
    padding: 80px 0;
    background-color: var(--vt-secondary);
}

.vt-cta-container {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vt-cta-form-wrapper {
    display: flex;
    flex-direction: column; /* Mobil öncelikli: Alt alta */
    gap: 1.5rem;
}

.vt-cta-form-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 1rem;
}

.vt-cta-form-grid .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    padding: 15px;
    height: auto;
    font-weight: 600;
    border-radius: 8px;
}

.vt-cta-form-grid .form-control::placeholder {
    color: var(--vt-gray);
}

.vt-cta-form-grid .form-control:focus {
    background-color: var(--vt-white);
    border-color: var(--vt-primary);
    box-shadow: none;
}

.vt-cta-form-button .vt-btn-submit {
    padding: 15px;
    font-size: 1.1rem;
    height: 100%;
}

/* MASAÜSTÜ UYUMLULUK (992px ve üstü) */
@media (min-width: 992px) {
    .vt-cta-form-wrapper {
        flex-direction: row; /* Yan yana */
        align-items: center; /* Dikeyde ortala */
    }

    .vt-cta-form-grid {
        flex-grow: 1;
        grid-template-columns: repeat(3, 1fr); /* 3'lü grid */
    }
    
    .vt-cta-form-button {
        flex-shrink: 0;
        width: 260px; /* Buton genişliğini biraz artırdım */
    }
}




