/* ==========================================================================
   BCM Global Fitness - Ana Stil Dosyası
   Versiyon: 2.0 (Ultra-Lüks B2B, Açık Turkuaz & Glassmorphism Entegrasyonu)
   ========================================================================== */

/* ==========================================================================
   1. Reset, Değişkenler & Global Ayarlar
   ========================================================================== */
:root {
    /* Kurumsal Zemin ve Tipografi */
    --bg-light: #FAFAFA;       /* Ferah kırık beyaz arka plan */
    --white: #FFFFFF;
    --text-dark: #1A1A1A;      /* Keskin ve okunaklı siyah */
    --text-muted: #666666;     /* Yardımcı ağırbaşlı gri */
    --obsidian: #111111;       /* Kontrast ve vurgu için ultra koyu siyah */
    
    /* Premium Açık Turkuaz (Buz Mavisi) Paleti */
    --turkuaz-primary: #E6FCFF;   /* Beyaza çok yakın, ferahlatıcı buzlu turkuaz */
    --turkuaz-hover: #C2F4FA;     /* Hover durumunda lüksü hissettiren hafif koyulaşma */
    --turkuaz-border: #A3EBF3;    /* Çok zarif, ince çerçeveler için */
    --turkuaz-text: #008B9E;      /* Okunabilirlik için metinlerde kullanılan koyu turkuaz */
    
    /* Yapısal Değişkenler */
    --border-light: rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { 
    text-decoration: none; 
    color: inherit; 
    transition: var(--transition); 
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 { 
    font-weight: 800; 
    letter-spacing: -0.5px; 
    margin-bottom: 1rem; 
}

/* Seksiyon Başlık Standartları */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading .sub-heading {
    display: inline-block;
    color: var(--turkuaz-text);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2 { font-size: 2.8rem; }
.section-heading p { color: var(--text-muted); font-size: 1.1rem; }

/* ==========================================================================
   2. Header & Top Bar (Duyuru Bandı ve Üst Menü)
   ========================================================================== */

.top-bar {
    background-color: var(--turkuaz-primary);
    color: var(--text-dark);
    border-bottom: 1px solid var(--turkuaz-border);
    padding: 14px 0; /* Boşluk artırıldı, daha ferah */
    font-size: 1.05rem; /* 0.85rem'den 1.05rem'e yükseltildi (Daha okunaklı) */
    font-weight: 600; /* Metin kalınlaştırıldı */
    letter-spacing: 0.2px;
    z-index: 1001;
    position: relative;
    text-align: center;
}

.top-bar p { margin: 0; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }

/* Dikkat Çekici Rozet (Badge) Tasarımı */
.top-bar-badge {
    background-color: var(--text-dark); /* Obsidyen siyahı vurucu zemin */
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-bar a {
    color: var(--turkuaz-text);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--turkuaz-text); /* Çizgi kalınlaştırıldı */
    transition: var(--transition);
    margin-left: 5px;
}

.top-bar a:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
}

/* Ana Header (Glassmorphism & Flexbox Yerleşimi) */
.site-header {
    width: 100%;
    background-color: rgba(250, 250, 250, 0.85); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Logo Alanı */
.logo { flex: 0 0 auto; }
.logo img { max-height: 60px; width: auto; }

/* Ana Navigasyon */
.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--turkuaz-text);
    transition: width 0.3s ease;
}

.nav-list a:hover { color: var(--turkuaz-text); }
.nav-list a:hover::after { width: 100%; }

/* B2B Call to Action Butonu (Açık Turkuaz Lüks Efekt) */
.header-action { flex: 0 0 auto; }

.header-btn, .btn-primary {
    display: inline-block;
    background-color: var(--turkuaz-primary);
    color: var(--text-dark);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--turkuaz-border);
    box-shadow: 0 4px 15px rgba(194, 244, 250, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.header-btn:hover, .btn-primary:hover {
    background-color: var(--turkuaz-hover);
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(163, 235, 243, 0.6);
    color: var(--text-dark);
}

/* Mobil Menü Hamburger İkonu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger-icon::before, .hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    left: 0;
    transition: var(--transition);
}

.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }

/* ==========================================================================
   3. Anasayfa - Hero Slider (Swiper.js Modülü)
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    /* 90vh yerine 70vh kullanıyoruz. Hem görkemli hem de alt sekmeleri gösterir. */
    height: 70vh; 
    /* Metinlerin çok dar ekranlarda ezilmesini engellemek için güvenlik sınırı */
    min-height: 550px; 
    overflow: hidden;
}

.hero-swiper { width: 100%; height: 100%; }

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Okunabilirlik için fotoğraf üzeri karartma */
.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Slider Navigasyon ve Noktalar */
.swiper-button-next, .swiper-button-prev { color: var(--white); transition: var(--transition); }
.swiper-button-next:hover, .swiper-button-prev:hover { color: var(--turkuaz-border); }
.swiper-pagination-bullet { background: var(--white); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--turkuaz-border); opacity: 1; }

/* ==========================================================================
   4. Hizmetlerimiz (5'li Bento Grid Ekosistemi)
   ========================================================================== */
.services-section {
    padding: 120px 0;
    background-color: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 30px;
}

.bento-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-color: var(--turkuaz-border); 
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--obsidian);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.bento-item:hover .icon-wrapper {
    color: var(--turkuaz-text); 
}

.bento-item h3 { font-size: 1.5rem; margin-bottom: 15px; line-height: 1.3; }
.bento-item p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }

.bento-link {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.bento-item:hover .bento-link { color: var(--turkuaz-text); }

/* Bento Grid Düzen Varyasyonları */
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

/* ==========================================================================
   Bento Grid - Teknoloji Kutusu Revizyonu (Buton Stiliyle Uyumlu)
   ========================================================================== */

.bento-item.accent-bg {
    /* Butonumuzun rengi olan o ferah açık turkuaz / buz mavisi */
    background-color: var(--turkuaz-primary); 
    color: var(--text-dark); /* Metinler artık siyah (Obsidyen) */
    border: 1px solid var(--turkuaz-border); /* Zarif turkuaz çerçeve */
    box-shadow: 0 4px 15px rgba(194, 244, 250, 0.4); /* Butonla aynı lüks gölge */
}

/* Kutu içindeki ikon yuvası */
.bento-item.accent-bg .icon-wrapper {
    background-color: var(--white); /* Saf beyaz ikon zemini */
    color: var(--turkuaz-text); /* İkon rengi koyu turkuaz */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Kutu içindeki metin ve link renkleri */
.bento-item.accent-bg h3, 
.bento-item.accent-bg p {
    color: var(--text-dark);
}

.bento-item.accent-bg .bento-link {
    color: var(--turkuaz-text); /* Link rengi vurgulu turkuaz */
    font-weight: 700;
}

/* Hover Durumu */
.bento-item.accent-bg:hover {
    background-color: var(--turkuaz-hover); /* Buton hover rengiyle aynı */
    border-color: var(--turkuaz-text);
    transform: translateY(-8px);
}

.bento-item.accent-bg:hover .bento-link {
    color: var(--text-dark);
}

/* İnşaat ve Teknik Servis Kartı */
.bento-item.full-width {
    grid-column: span 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}
.bento-item.full-width .icon-wrapper { margin-bottom: 0; flex-shrink: 0; width: 80px; height: 80px; }

/* ==========================================================================
   5. İştirakler ve İş Ortakları Slider'ı (Aura Vizyonu vb.)
   ========================================================================== */
.partners-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.partners-heading { margin-bottom: 40px; }
.partners-heading h2 { font-size: 2rem; color: var(--text-dark); }

.partners-swiper { width: 100%; padding: 20px 0; overflow: hidden; }

.partner-slide {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-box {
    padding: 20px 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
    cursor: pointer;
    border-radius: 10px;
}

.partner-box:hover {
    filter: grayscale(0%) opacity(1);
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(163, 235, 243, 0.3);
    transform: translateY(-3px);
}

.partner-brand {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.partner-brand span { font-weight: 300; color: var(--text-muted); }
.partner-box:hover .partner-brand span { color: var(--turkuaz-text); }

/* ==========================================================================
   6. Footer (Alt Bilgi Alanı)
   ========================================================================== */
.main-footer {
    padding: 80px 0 30px 0;
    background-color: var(--white);
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 { font-size: 1.5rem; }
.footer-brand span { font-weight: 300; color: var(--text-muted); }
.footer-brand p { color: var(--text-muted); margin-top: 10px; max-width: 300px; }

.footer-links h4, .footer-contact h4 {
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--turkuaz-text); 
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--turkuaz-text); padding-left: 5px; }

.footer-contact p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 10px; }
.footer-contact strong { color: var(--text-dark); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   7. Genel Mobil Uyumluluk (Responsive Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    /* Header Mobil */
    .main-nav, .header-action { display: none; }
    .mobile-menu-toggle { display: block; flex: 0 0 auto; }
    
    /* Bento Grid Mobil */
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.tall { grid-row: span 1; }
    .bento-item.full-width {
        grid-column: span 2;
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Footer Mobil */
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Tipografi */
    .hero-title { font-size: 2.5rem; }
    .section-heading h2 { font-size: 2.2rem; }
    
    /* Bento Grid Küçük Ekran */
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.wide, .bento-item.tall, .bento-item.full-width { grid-column: span 1; grid-row: span 1; }
    
    /* Footer Küçük Ekran */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 10px auto; }
}


/* ==========================================================================
   8. Otorite ve Rakamlar Seksiyonu
   ========================================================================== */
.stats-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--turkuaz-border);
    box-shadow: 0 10px 30px rgba(163, 235, 243, 0.2);
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-plus, .stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--turkuaz-text);
    vertical-align: top;
}

.stat-label {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mobil için Rakamlar */
@media (max-width: 992px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .stats-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   9. Vizyon Manifestosu ve Ara CTA
   ========================================================================== */
.vision-cta-section {
    position: relative;
    padding: 120px 0;
    /* Yer tutucu lüks bir görsel, kendi görselinizle değiştirebilirsiniz */
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti */
    text-align: center;
}

.vision-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(17, 17, 17, 0.85); /* Güçlü obsidyen siyahı karartma */
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.vision-content .highlight {
    color: var(--turkuaz-border); /* Karanlık zeminde parlayan turkuaz */
}

.vision-content p {
    color: #CCCCCC;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.vision-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* ==========================================================================
   10. B2B Danışmanlık Talep Formu Sayfası
   ========================================================================== */
.page-header {
    padding: 80px 0 40px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 0 120px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Asimetrik, form alanı daha geniş */
    gap: 60px;
    align-items: flex-start;
}

/* Sol Taraf: Bilgi Kutusu */
.contact-info-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.contact-info-box h3 { font-size: 1.8rem; margin-bottom: 20px; }
.lead-text { color: var(--text-muted); margin-bottom: 40px; font-size: 1.05rem; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon { font-size: 1.5rem; }
.info-item strong { display: block; color: var(--text-dark); margin-bottom: 5px; }
.info-item p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Sağ Taraf: Premium Form */
.contact-form-box {
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required { color: #E63946; }

/* Input ve Textarea Standartları */
.bcm-form input,
.bcm-form select,
.bcm-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition);
}

/* Teknoloji Vurgusu: Focus (Tıklanma) Durumu */
.bcm-form input:focus,
.bcm-form select:focus,
.bcm-form textarea:focus {
    outline: none;
    border-color: var(--turkuaz-text);
    background-color: var(--white);
    box-shadow: 0 0 0 4px var(--turkuaz-primary); /* Lüks buz mavisi parlama */
}

.form-submit-btn { width: 100%; padding: 18px; font-size: 1.1rem; }

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-box, .contact-form-box { padding: 30px; }
}

/* ==========================================================================
   11. Kurumsal Açılır Menü (Dropdown Glassmorphism)
   ========================================================================== */
.dropdown-item {
    position: relative;
}

.dropdown-icon {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* Dropdown Konteyneri */
.dropdown-menu {
    position: absolute;
    top: 150%; /* Menünün biraz altından başlar (Animasyon için) */
    left: 0;
    min-width: 240px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    
    /* Gizleme ve Animasyon Hazırlığı */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1005;
}

/* Hover Durumunda Menünün Zarifçe Belirmesi */
.dropdown-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    top: 100%; /* Tam yerine oturur */
}

/* Hover Durumunda İkonun Dönmesi */
.dropdown-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown İçindeki Linkler */
.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    border-left: 3px solid transparent;
}

.dropdown-menu a::after {
    display: none; /* Üst menüdeki alt çizgi efektini burada iptal ediyoruz */
}

/* Alt menü link hover durumu - Açık turkuaz vurgusu */
.dropdown-menu a:hover {
    color: var(--text-dark) !important;
    background-color: var(--bg-light);
    border-left-color: var(--turkuaz-text);
}

.soon-badge {
    font-size: 0.65rem;
    background-color: var(--turkuaz-primary);
    color: var(--turkuaz-text);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    border: 1px solid var(--turkuaz-border);
}

/* Linkin üzerine gelince rozetin görünümünü koruyalım */
.dropdown-menu a:hover .soon-badge {
    background-color: var(--white);
    border-color: var(--turkuaz-text);
}


/* ==========================================================================
   12. Hizmetlerimiz Sayfası (Service Hub Grid)
   ========================================================================== */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    background-color: var(--white);
    border-color: var(--turkuaz-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    opacity: 0.8;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1; /* Butonların hep aynı hizada kalmasını sağlar */
}

.card-link {
    font-weight: 600;
    color: var(--turkuaz-text);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
    transition: var(--transition);
}

.service-card:hover .card-link {
    color: var(--text-dark);
    padding-left: 5px; /* Hoverda şık bir sağa kayma efekti */
}

/* Teknoloji (Yazılım) Kartı için Lüks Vurgu */
.highlight-card {
    background-color: var(--turkuaz-primary);
    border-color: var(--turkuaz-border);
}

.highlight-card:hover {
    background-color: var(--turkuaz-hover);
    box-shadow: 0 15px 35px rgba(163, 235, 243, 0.4);
}

.highlight-card h3 { color: var(--text-dark); }
.highlight-card p { color: var(--text-dark); opacity: 0.8; }
.highlight-card .card-link { border-top-color: var(--turkuaz-border); color: var(--turkuaz-text); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .service-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}
@media (max-width: 768px) {
    .service-cards-grid { grid-template-columns: 1fr; }
    .page-header { padding: 60px 0 40px 0; }
    .page-header h1 { font-size: 2.2rem; }
}


/* ==========================================================================
   13. Hizmet Detay Sayfası (Dinamik Şablon)
   ========================================================================== */
.service-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.7) 100%);
    z-index: 1;
}

.relative-z { position: relative; z-index: 2; }

.breadcrumb { font-size: 0.9rem; margin-bottom: 20px; color: #BBBBBB; }
.breadcrumb a { color: var(--turkuaz-border); }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.current-page { color: var(--white); }

.service-hero h1 { font-size: 3rem; margin-bottom: 15px; }
.service-subtitle { font-size: 1.2rem; color: #EEEEEE; max-width: 700px; }

.service-content-wrapper {
    padding: 80px 0;
    background-color: var(--white);
}

.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: 25px; }
.lead-paragraph { font-size: 1.1rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }

.features-title { font-size: 1.5rem; margin-bottom: 20px; color: var(--text-dark); }
.features-list { list-style: none; padding: 0; }
.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--turkuaz-border);
}

/* Yapışkan (Sticky) İletişim Kutusu */
.sticky-cta-box {
    position: sticky;
    top: 100px; /* Header'ın hemen altında durur */
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.sticky-cta-box h3 { font-size: 1.4rem; margin-bottom: 15px; }
.sticky-cta-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 25px; }
.full-width-btn { display: block; width: 100%; text-align: center; }

.cta-contact-info {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}
.cta-contact-info span { display: block; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 5px; }
.cta-contact-info strong { font-size: 1.2rem; color: var(--turkuaz-text); }

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .service-layout { grid-template-columns: 1fr; }
    .sticky-cta-box { position: relative; top: 0; margin-top: 40px; }
}


/* ==========================================================================
   14. İletişim Sayfası
   ========================================================================== */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-list {
    margin-bottom: 40px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Form Kutusu Özel Stilleri */
.contact-form-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

/* Harita Hover Efekti (Grayscale'den Renkliye geçiş) */
.map-container iframe {
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1) !important;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .contact-grid-wrapper { grid-template-columns: 1fr; }
    .contact-form-box { padding: 30px; margin-top: 20px; }
}