/* --- YENİ RENK PALETİ (Logodan Alındı) --- */
:root {
    --dark-blue: #0a1f3c; /* Logonun koyu lacivert kısmı */
    --teal: #14c5a7;      /* Logonun turkuaz/su yeşili kısmı */
    --light-gray: #f9fafb;
    --text-dark: #333333;
    --text-muted: #666666;
}

/* --- GENEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--text-dark);
    overflow-x: hidden; /* Ekrana sağdan taşan kısımları gizleyip scroll çıkmasını engeller */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* YARDIMCI SINIFLAR (Utility Classes) */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* --- BUTONLAR --- */
.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-blue), var(--teal));
    color: white;
    padding: 10px 24px;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal), var(--dark-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 197, 167, 0.3);
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    padding: 10px 24px;
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: white;
}

/* --- HEADER (MENÜ) VE LOGO TASARIMI --- */
.header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(10, 31, 60, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-blue);
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1.1;
    display: inline-block;
}

.logo a span {
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--dark-blue);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

/* Menü Altı Çizgi Efekti */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--teal);
    transition: width 0.3s ease;
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--teal);
}

/* GÖSTERİM KONTROLLERİ */
.mobile-only { display: none; }
.mobile-menu-btn { display: none; }

/* --- HERO (KARŞILAMA) BÖLÜMÜ --- */
.hero {
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 .highlight {
    background: -webkit-linear-gradient(135deg, var(--dark-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-image {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
    /* Resmi kutunun dışına, ekranın en sağ sınırına kadar çeken sihirli kod */
    margin-right: calc(-50vw + 50%); 
}

.hero-image img {
    width: 100%;
    max-width: 900px; /* Ekrana yayılacağı için limiti biraz daha açtık */
    height: 520px;
    object-fit: cover;
    
    /* DİKKAT: Sadece sol taraf kıvrımlı, sağ taraf (0) ekrana sıfır düz yapışacak */
    border-radius: 40% 0 0 40% / 50% 0 0 50%;
    
    box-shadow: -10px 20px 40px rgba(10, 31, 60, 0.12);
    transition: all 0.5s ease-in-out;
}

/* Hover efekti (Sadece sol taraftaki kıvrım hareket eder) */
.hero-image img:hover {
    border-radius: 50% 0 0 30% / 40% 0 0 60%;
    transform: translateY(-5px);
}
/* --- HİZMETLER BÖLÜMÜ --- */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CSS Grid ile Dinamik Kart Yapısı */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 31, 60, 0.08);
    border-color: var(--teal);
}

.card-icon {
    font-size: 40px; 
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* --- MOBİL UYUMLULUK (MEDIA QUERIES) --- */

/* Tablet ve Küçük Ekranlar İçin */
@media (max-width: 992px) {
    .desktop-only { display: none; }
    .mobile-only { display: block; margin-top: 20px; }
    .hero-image {
        margin-right: 0; /* Mobilde sağa itmeyi iptal ediyoruz */
        margin-top: 40px;
        justify-content: center;
    }
    
    .hero-image img {
        border-radius: 30px; /* Mobilde tekrar her köşeyi oval yapıyoruz */
        height: auto; /* Yüksekliği normale döndürüyoruz */
    }
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-btn .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark-blue);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .main-nav {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 30px 0;
    }
    
    .main-nav.active { left: 0; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero .flex-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-text h1 { font-size: 36px; }
    
    .hero-image img { border-radius: 20px; }
}

/* Telefonlar İçin */
@media (max-width: 768px) {
    .section-title h2 { font-size: 26px; }
}
/* --- NEDEN BİZ BÖLÜMÜ --- */
.why-us {
    padding: 100px 0;
    background-color: white; /* Hizmetler kısmı griydi, burayı beyaz yaparak katman hissi veriyoruz */
}

.why-us .flex-container {
    gap: 60px;
    align-items: center;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.why-text h2 .highlight {
    background: -webkit-linear-gradient(135deg, var(--dark-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* Maddelerin üzerine gelince hafifçe belirginleşmesi */
.feature-item:hover {
    background-color: var(--light-gray);
    border-color: #eee;
    transform: translateX(10px);
}

.feature-icon {
    font-size: 28px;
    background: rgba(20, 197, 167, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: var(--teal);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

.why-image {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(10, 31, 60, 0.08);
}

/* Mobil Uyumluluk Güncellemesi */
@media (max-width: 992px) {
    .why-us .flex-container {
        flex-direction: column;
    }
    
    .why-image {
        margin-top: 40px;
    }
    
    .feature-item:hover {
        transform: none; /* Mobilde sağa kayma efektini iptal ediyoruz */
    }
}
/* --- REFERANSLARIMIZ BÖLÜMÜ --- */
/* --- REFERANSLAR (KAYAN VE EŞİT BOYUTLU) --- */
/* --- GÜNCELLENMİŞ REFERANSLAR (KAYAN) --- */
.references {
    padding: 60px 0;
    background-color: #fff;
    overflow: hidden; /* Taşmaları engeller */
    width: 100%;
}

.marquee-container {
    width: 100%;
    overflow: hidden; /* Kayan alanın dışına taşmayı engeller */
}

.marquee-track {
    display: flex; /* Yan yana dizilimi zorunlu kılar */
    flex-wrap: nowrap; /* ASLA alt satıra geçme */
    gap: 80px; /* Logolar arası mesafe */
    align-items: center;
    animation: scrollLogos 20s linear infinite;
}

.logo-item {
    flex: 0 0 auto; /* Kutucuklar küçülmesin veya büyümesin */
    width: 180px;  /* Sabit genişlik */
    height: 90px;  /* Sabit yükseklik */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Görselin şeklini bozmadan kutuya sığdırır */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
/* --- SSS (DAHA GENİŞ VE DİNAMİK TASARIM) --- */
.faq { padding: 100px 0; background-color: #f9fafb; }
.faq-container { max-width: 850px; margin: 0 auto; }

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 25px; /* Kutular arası boşluğu açtık */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Daha derin bir gölge */
    border: 2px solid transparent;
    border-left: 6px solid #eef2f6; /* Sol tarafta ince bir çubuk */
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Soruya tıklandığında veya aktif olduğunda dinamik değişim */
.faq-item.active {
    border-color: var(--teal);
    border-left: 6px solid var(--teal); /* Açıldığında yeşil çubuk */
    transform: translateY(-5px); /* Hafif yukarı kalkma efekti */
}

.faq-question {
    width: 100%;
    padding: 30px 35px; /* Daha geniş alan */
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px; /* Biraz daha büyük yazı */
    font-weight: 700;
    color: var(--dark-blue);
    cursor: pointer;
    text-align: left;
}

.faq-question .icon {
    font-size: 24px;
    color: var(--teal);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
    color: var(--dark-blue);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    color: var(--text-muted);
}

.faq-answer p {
    padding: 0 35px 30px 35px; /* İçerik için geniş boşluk */
    line-height: 1.8;
    font-size: 16px;
}
.faq-modern { padding: 100px 0; background: #fff; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header h2 { font-size: 40px; color: var(--dark-blue); margin-bottom: 10px; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }

.faq-card {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
    padding: 20px 0;
    transition: 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    padding: 10px 0;
}

.plus-icon {
    width: 24px; height: 24px; position: relative;
    transition: 0.4s;
}
.plus-icon::before, .plus-icon::after {
    content: ''; position: absolute; background: var(--teal);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.plus-icon::before { width: 16px; height: 2px; }
.plus-icon::after { width: 2px; height: 16px; }

/* Aktif Durum */
.faq-card.open .plus-icon { transform: rotate(45deg); }
.faq-card.open .faq-question { color: var(--teal); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-content p {
    padding: 15px 0 10px 0;
    color: var(--text-muted);
    line-height: 1.8;
}
/* --- FOOTER TASARIMI --- */
.footer {
    background-color: #050e1a; /* Çok koyu lacivert/siyah */
    color: #fff;
    padding: 80px 0 30px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--teal); /* Başlıkları turkuaz yapıyoruz */
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.footer-logo span { font-weight: 300; font-size: 16px; letter-spacing: 2px; }

.footer-col p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 14px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 5px; }

.footer-bottom {
    border-top: 1px solid #1a2533;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

/* --- RESPONSIVE (MOBİL) --- */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .contact-col { align-items: center; }
}

/* --- ALT SAYFA BAŞLIĞI (PAGE BANNER) GÜNCEL --- */
/* --- ALT SAYFA BAŞLIĞI (PAGE BANNER) - YAZI ODAKLI VE KOYU --- */
.page-banner {
    /* Karartma oranını %85'ten %92'ye çıkararak resmi iyice koyulaştırdık */
    background: linear-gradient(rgba(7, 18, 36, 0.92), rgba(7, 18, 36, 0.92)), url('../img/iletisim.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0; /* Alana biraz daha dikey genişlik vererek yazıyı ferahlattık */
    text-align: center;
    border-bottom: 1px solid rgba(25, 37, 51, 0.5); /* Alt kısma çok hafif modern bir çizgi */
}

.page-banner h1 {
    color: #ffffff;
    font-size: 52px; /* Başlığı daha büyük ve baskın yaptık */
    font-weight: 800; /* Ekstra kalın font */
    margin-bottom: 20px;
    letter-spacing: -0.5px; /* Modern font tasarımı için harfleri hafif yakınlaştırdık */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Yazının arkasına derinlik gölgesi */
}

.page-banner h1 span {
    color: var(--teal);
    position: relative;
}

/* Turkuaz kelimenin altına şık minimalist bir çizgi (opsiyonel, tasarımı canlandırır) */
.page-banner h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    opacity: 0.3;
}

.page-banner p {
    color: #94a3b8; /* Yazı rengini soft bir gri-mavi yaparak okunabilirliği zirveye taşıdık */
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}
/* --- DETAYLI İLETİŞİM SAYFASI --- */
.contact-page {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Sol Taraf: Bilgiler */
.contact-info-side h3 {
    font-size: 28px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.contact-info-side .subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.info-icon {
    font-size: 24px;
    background: rgba(20, 197, 167, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.info-item h4 {
    font-size: 16px;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 15px;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Sağ Taraf: Form Tasarımı */
.contact-form-side {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 31, 60, 0.05);
}

.contact-form-side h3 {
    font-size: 26px;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.custom-form .input-group {
    margin-bottom: 20px;
}

.custom-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.custom-form input, 
.custom-form select, 
.custom-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background-color: #f8fafc;
    transition: all 0.3s;
}

.custom-form input:focus, 
.custom-form select:focus, 
.custom-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(20, 197, 167, 0.1);
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: 30px 20px;
    }
}
/* --- KAPSAMLI TEKLİF FORMU SAYFASI --- */
.quote-page {
    padding: 80px 0;
    background-color: #f1f5f9; /* Çok hafif, temiz bir gri arka plan */
}

.quote-form-wrapper {
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(10, 31, 60, 0.06);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
    padding-bottom: 0;
}

.section-title {
    font-size: 22px;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Standart Input Izgarası */
.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.comprehensive-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.comprehensive-form input[type="text"],
.comprehensive-form input[type="email"],
.comprehensive-form input[type="tel"],
.comprehensive-form select,
.comprehensive-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background-color: #f8fafc;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.comprehensive-form input:focus,
.comprehensive-form select:focus,
.comprehensive-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(20, 197, 167, 0.1);
}

.full-width {
    grid-column: 1 / -1;
}

/* --- SEÇİLEBİLİR MODERN KARTLAR (RADIO CARDS) --- */
.radio-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.radio-card {
    display: block;
    cursor: pointer;
}

/* Gerçek yuvarlak radyo butonlarını gizliyoruz */
.radio-card input[type="radio"] {
    display: none;
}

/* Kutunun tasarımı */
.radio-card .card-content {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.radio-card .card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s;
}

.radio-card .card-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Üzerine gelince hover efekti */
.radio-card:hover .card-content {
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

/* Seçildiğinde (Tıklandığında) olanlar */
.radio-card input[type="radio"]:checked + .card-content {
    border-color: var(--teal);
    background: rgba(20, 197, 167, 0.05); /* Arka plana çok hafif turkuaz tonu */
    box-shadow: 0 8px 20px rgba(20, 197, 167, 0.15);
}

.radio-card input[type="radio"]:checked + .card-content .card-text {
    color: var(--dark-blue);
}

.radio-card input[type="radio"]:checked + .card-content .card-icon {
    transform: scale(1.1);
}

/* --- GÖNDER BUTONU ALANI --- */
.form-submit-area {
    text-align: center;
    margin-top: 20px;
}

.form-submit-area .btn {
    width: 100%;
    max-width: 350px;
    padding: 18px 30px;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(20, 197, 167, 0.25);
}

.privacy-note {
    margin-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .quote-form-wrapper {
        padding: 30px 20px;
    }
    
    .input-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   SSS SAYFASI (AYDINLIK & MODERN PREMIUM)
   ========================================= */
.premium-faq {
    padding: 120px 0;
    background-color: #f8fafc; /* Sayfanın açık zeminine tam uyumlu temiz renk */
    position: relative;
    min-height: 80vh;
}

.faq-grid-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 60px;
    align-items: start;
}

/* Sol Sabit Alan */
.faq-sticky-left {
    position: sticky;
    top: 120px;
}

.faq-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(20, 197, 167, 0.1);
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.faq-sticky-left h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    color: #0a1f3c !important; /* GÖRÜNMEYEN BEYAZ YAZIYI KOYU LACİVERT YAPTIK */
}

.faq-sticky-left .gradient-text {
    color: var(--teal) !important; /* Turkuaz Vurgu */
}

.faq-sticky-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #64748b !important;
}

/* Sağ Alan - Zarif Akordiyon Kartları */
.faq-accordion-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-modern-card {
    background: #ffffff !important; /* Kaba gri kutu yerine tertemiz beyaz kutu */
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.faq-modern-head {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-modern-head h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0a1f3c !important;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-trigger-icon {
    width: 36px;
    height: 36px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

/* Üzerine Gelince (Hover) ve Tıklanınca (Open) */
.faq-modern-card:hover {
    border-color: rgba(20, 197, 167, 0.4) !important;
    box-shadow: 0 10px 30px rgba(20, 197, 167, 0.08);
}

.faq-modern-card.open {
    border-color: var(--teal) !important;
    box-shadow: 0 10px 30px rgba(20, 197, 167, 0.1);
}

.faq-modern-card.open .faq-modern-head h3 {
    color: var(--teal) !important;
}

.faq-modern-card.open .faq-trigger-icon {
    background: var(--teal);
    color: #ffffff;
    transform: rotate(180deg);
}

/* Cevap İçeriği Animasyonu */
.faq-modern-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-body-content {
    padding: 0 30px 30px 30px;
}

.faq-body-content p {
    color: #475569 !important;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .faq-grid-layout { grid-template-columns: 1fr; gap: 40px; }
    .faq-sticky-left { position: relative; top: 0; text-align: center; }
    .faq-sticky-left h2 { font-size: 36px; }
}
/* =========================================
   HAKKIMIZDA SAYFASI ÖZEL TASARIMI
   ========================================= */

.about-story {
    padding: 100px 0 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-text-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #94a3b8 !important;
}

/* Küçük Özellik Tikleri */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
}

.feature-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Sağ Taraf - Resim ve Cam Kutu */
.about-image-content {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Resmin Üzerine Binen Cam Kutu (Glassmorphism) */
.experience-glass-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(20, 197, 167, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(20, 197, 167, 0.3);
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.experience-glass-box h3 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.experience-glass-box span {
    color: var(--teal);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- VİZYON VE MİSYON (CAM KARTLAR) --- */
.mission-vision {
    padding: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: rgba(25, 45, 75, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    padding: 50px 40px;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.mv-card:hover {
    border-color: rgba(20, 197, 167, 0.4) !important;
    background: rgba(30, 55, 90, 0.5) !important;
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.mv-card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* --- İSTATİSTİKLER BÖLÜMÜ --- */
.about-stats {
    padding: 60px 0 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: rgba(11, 21, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--teal), #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBİL UYUM --- */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-features { text-align: left; }
    .experience-glass-box { bottom: 20px; left: 20px; right: 20px; }
    .mv-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
}
/* =========================================
   HAKKIMIZDA SAYFASI MOBİL UYUM (TAŞMA ÇÖZÜMÜ)
   ========================================= */

@media (max-width: 992px) {
    /* Hakkımızda yazısı ve resim alt alta geçsin */
    .about-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 50px;
    }
    
    /* Özellik kutucukları (Modern teknolojiler vb.) alt alta geçsin */
    .about-features { 
        grid-template-columns: 1fr; 
        text-align: left; 
    }
    
    /* Vizyon ve Misyon kartları alt alta geçsin (Taşan kısım burasıydı) */
    .mv-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    /* İstatistikler tablette 2'li sıra olsun, kutu iç boşluğu daralsın */
    .stats-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 25px; 
        padding: 40px 20px !important; 
    }
    
    /* Resmin üzerindeki tecrübe kutusu mobilde daha küçük dursun */
    .experience-glass-box {
        left: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
    .experience-glass-box h3 { font-size: 24px; }
}

/* Telefon Ekranları İçin Ekstra Küçültme */
@media (max-width: 576px) {
    /* İstatistikler telefonda tamamen alt alta geçsin (Diğer taşan kısım) */
    .stats-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Ana başlık telefonda ekrana sığsın diye küçültüldü */
    .heavy-title { 
        font-size: 32px; 
    }
}
/* =========================================
   NEW PREMIUM ULTRA-CONTRAST HİZMET TASARIMI
   ========================================= */

/* Saf Derin Siyah Arka Plan */
.premium-modern-body {
    background-color: #050b14 !important;
    color: #ffffff !important;
}

/* 1. Üst Banner Alanı */
.modern-service-banner {
    padding: 160px 0 90px 0;
    background: radial-gradient(circle at 50% 0%, rgba(20, 197, 167, 0.12) 0%, transparent 70%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modern-badge {
    background: rgba(20, 197, 167, 0.1);
    color: #00ffcc;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(20, 197, 167, 0.2);
}

.modern-main-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff !important;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.modern-gradient {
    background: linear-gradient(135deg, #00ffcc 0%, #14c5a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-sub-title {
    font-size: 18px;
    color: #94a3b8 !important;
    max-width: 700px;
    line-height: 1.7;
}

/* 2. Ana İçerik Grid Alanı */
.modern-service-body {
    padding: 100px 0;
}

.modern-detail-grid {
    display: grid;
    grid-template-columns: 6.5fr 4.5fr;
    gap: 70px;
    align-items: flex-start;
}

/* Kusursuz Okunabilir Başlık ve Paragraflar */
.modern-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 25px;
}

.modern-p {
    font-size: 16.5px;
    line-height: 1.8;
    color: #cbd5e1 !important; /* Arka planda asla kaybolmayan canlı gri-beyaz */
    margin-bottom: 20px;
}

/* Yeni Listeleme Tasarımı */
.modern-bullet-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bullet-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bullet-check {
    background: rgba(20, 197, 167, 0.15);
    color: #00ffcc;
    font-weight: 900;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    border: 1px solid rgba(20, 197, 167, 0.3);
}

.bullet-item strong {
    color: #ffffff !important;
    font-size: 17px;
    display: block;
    margin-bottom: 4px;
}

.bullet-item p {
    color: #94a3b8 !important;
    font-size: 14.5px;
    margin: 0;
}

/* Sağ Taraf - Teknolojiler Kartı (Yazı Taşması ve Okunma Problemi Çözüldü) */
.modern-tech-card {
    background: #0b1324; /* Tamamen koyulaştırıldı, kontrast sağlandı */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.modern-tech-card h3 {
    color: #ffffff !important;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.modern-tech-card p {
    color: #94a3b8 !important;
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modern-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
}

/* 3. Süreç Adımları Bölümü */
.modern-steps-section {
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.steps-title-area {
    text-align: center;
    margin-bottom: 60px;
}

.steps-title-area h2 {
    font-size: 38px;
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 15px;
}

.steps-title-area p {
    color: #94a3b8 !important;
    font-size: 16px;
}

.modern-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.modern-step-card {
    background: #0b1324;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.modern-step-card:hover {
    border-color: #14c5a7;
    transform: translateY(-5px);
}

.card-num {
    font-size: 44px;
    font-weight: 900;
    color: rgba(20, 197, 167, 0.15);
    display: block;
    margin-bottom: 15px;
}

.modern-step-card h3 {
    color: #ffffff !important;
    font-size: 19px;
    margin-bottom: 12px;
}

.modern-step-card p {
    color: #94a3b8 !important;
    font-size: 14px;
    line-height: 1.6;
}

/* 4. CTA Harekete Geçirici Alan */
.modern-cta-section {
    padding: 40px 0 120px 0;
}

.modern-cta-box {
    background: linear-gradient(135deg, #0b1324 0%, #070d1a 100%);
    border: 1px solid rgba(20, 197, 167, 0.3);
    border-radius: 24px;
    padding: 70px 40px;
    text-align: center;
}

.modern-cta-box h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.modern-cta-box p {
    color: #cbd5e1 !important;
    font-size: 16.5px;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.modern-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-secondary-modern {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .modern-detail-grid { grid-template-columns: 1fr; gap: 50px; }
    .modern-steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .modern-main-title { font-size: 36px; }
    .modern-steps-grid { grid-template-columns: 1fr; }
    .modern-cta-actions { flex-direction: column; gap: 15px; }
    .modern-cta-box h2 { font-size: 28px; }
}
/* =========================================
   KARAMAN YAZILIM PREMİUM DARK MEGA MENÜ
   ========================================= */

.header {
    position: relative !important;
}

/* 1. Masaüstü Ekran Düzenlemeleri (Ekran > 992px ise) */
@media (min-width: 993px) {
    .main-nav ul li.mega-menu-item {
        position: static !important;
    }

    /* Koyu Cam Efektli Yeni Açılır Kutu */
    .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 21, 40, 0.98) !important; /* Sitenin gece mavisi tonu */
        border-top: 3px solid var(--teal); /* Kırmızı çizgi yerine markanın Turkuaz çizgisi */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 9999;
        border-bottom: 1px solid rgba(20, 197, 167, 0.1);
    }

    .mega-menu-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mega-menu-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 eşit sütun */
        gap: 30px;
    }

    /* Sütun Gri Çizgileri yerine Soft Turkuaz Işık Çizgileri */
    .mega-col {
        padding-left: 20px;
        border-left: 1px solid rgba(20, 197, 167, 0.15);
    }

    .mega-col:first-child {
        border-left: none;
        padding-left: 0;
    }

    /* Sitenin Canlı Turkuaz Başlıkları */
    .mega-title {
        color: var(--teal) !important; 
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mega-title .plus {
        font-size: 16px;
        margin-right: 6px;
        color: #00ffcc;
    }

    /* Alt Linklerin Saf Beyaz ve Net Okunur Hali */
    .mega-list li a {
        color: #cbd5e1 !important; /* Parlak gri/beyaz metin kontrastı */
        font-size: 14px;
        font-weight: 500;
        padding: 6px 0;
        transition: all 0.2s ease;
    }

    .mega-list li a:hover {
        color: #ffffff !important;
        transform: translateX(4px); /* Üzerine gelince sağa hafif kayma */
    }

    .mega-img-col {
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: none;
    }

    .mega-img {
        max-width: 180px;
        height: auto;
        opacity: 0.8;
        filter: drop-shadow(0 0 20px rgba(20, 197, 167, 0.2)); /* Logoya turkuaz parlama efekti */
    }
}

/* 2. MOBİL UYUM KATMANI (Ekran < 992px olduğunda taşmayı önler) */
@media (max-width: 992px) {
    .mega-menu {
        display: none; /* Mobilde dikey mobil menü yapısını ezmemesi için gizliyoruz */
    }
    
    /* Mobil menü açıldığında alt alta şık listelenme düzeni */
    .main-nav ul li.mega-menu-item {
        position: relative;
    }
    
    /* Sitenin mobil menü altyapısına göre eğer linklerin üzerine tıklanırsa 
       alt alta gelmesini sağlayan esnek yapıyı koruduk. */
}
/* =========================================
   HEADER (ÜST MENÜ) KOYU TEMA & MOBİL MEGA MENÜ DÜZELTMESİ
   ========================================= */

/* 1. Beyaz Üst Menüyü Koyu (Gece Mavisi) Yapıyoruz */
.header {
    background-color: #050b14 !important; /* Sitenin ana koyu rengi */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5) !important;
}

/* Header Yazılarını Okunabilir Hale Getiriyoruz */
.header .logo a { color: #ffffff !important; }
.header .logo a span { color: var(--teal) !important; }
.main-nav ul li a { color: #cbd5e1 !important; }
.main-nav ul li a:hover, .main-nav ul li a.active { color: var(--teal) !important; }

/* 2. Mobilde Mega Menü Tıklanınca Açılma Ayarları (Ekran < 992px) */
@media (max-width: 992px) {
    /* Normalde gizli, tıklandığında '.show-mobile' class'ı ile görünür olacak */
    .mega-menu {
        display: none !important; 
        position: static !important; /* Menüden taşmasını engeller */
        background: transparent !important; /* Arka planla bütünleşir */
        box-shadow: none !important;
        border: none !important;
        padding: 10px 0 10px 15px !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* JavaScript ile eklenecek class (Tıklanınca Göster) */
    .mega-menu.show-mobile {
        display: block !important;
    }

    /* Sütunları alt alta diziyoruz */
    .mega-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 15px !important;
    }

    .mega-col {
        border-left: 2px solid rgba(20, 197, 167, 0.3) !important;
        padding-left: 15px !important;
    }

    /* Mobilde resmi gizliyoruz (Yer kaplamaması için) */
    .mega-img-col {
        display: none !important; 
    }
}
/* =========================================
   MOBİL MENÜ İKONUNU (HAMBURGER) BEYAZ YAPMA
   ========================================= */
.mobile-menu-btn .bar {
    background-color: #ffffff !important;
}

/* Tıklandığında çarpı (X) işareti olduğunda da beyaz kalsın diye */
.mobile-menu-btn.active .bar {
    background-color: #ffffff !important;
}
/* =========================================
   MOBİL MENÜ "PREMIUM DARK" VE AKORDİYON DÜZELTMESİ
   ========================================= */
@media (max-width: 992px) {
    /* 1. Arka Planı Gece Mavisi Yapıyoruz */
    .main-nav {
        background-color: #0b1324 !important; 
    }
    
    .main-nav ul {
        background-color: #0b1324 !important;
    }

    /* 2. Ana Linkleri Gümüş Gri Yapıp Sola Yaslıyoruz (Mobilde daha şık durur) */
    .main-nav ul li a {
        color: #cbd5e1 !important;
        text-align: left !important; 
        padding: 15px 25px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .main-nav ul li a:hover, 
    .main-nav ul li a.active {
        color: #00e0a5 !important;
        background-color: rgba(20, 197, 167, 0.05) !important;
    }

    /* 3. MEGA MENÜ (HİZMETLERİMİZ) MOBİL AKORDİYON AYARLARI */
    .main-nav ul li.mega-menu-item {
        position: relative;
    }
    
    .mega-menu {
        position: static !important; /* Menüden taşmayı önler, alt alta iter */
        display: none !important; /* Normalde gizlidir, JS ile açılır */
        background-color: rgba(0, 0, 0, 0.25) !important; /* İç menü biraz daha koyu */
        box-shadow: inset 0 5px 15px rgba(0,0,0,0.3) !important;
        border-top: none !important;
        width: 100% !important;
        padding: 10px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* JS 'show-mobile' class'ını eklediğinde görünür olur */
    .mega-menu.show-mobile {
        display: block !important;
    }

    /* İç Kısım Sütunları Alt Alta Düşsün */
    .mega-menu-inner {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 15px !important;
    }

    .mega-col {
        padding-left: 15px !important;
        border-left: 2px solid rgba(20, 197, 167, 0.3) !important;
        margin: 5px 25px !important;
    }

    /* Kırmızı Başlıkları Turkuaza Çevir */
    .mega-title {
        color: #00e0a5 !important;
        font-size: 15px !important;
        margin-bottom: 10px !important;
    }

    /* Alt Linklerin Tasarımı */
    .mega-list li {
        margin-bottom: 5px !important;
    }

    .mega-list li a {
        padding: 8px 10px !important;
        font-size: 13px !important;
        color: #94a3b8 !important;
        border-bottom: none !important;
    }

    .mega-list li a:hover {
        color: #ffffff !important;
        padding-left: 15px !important; /* Mobilde dokunurken hafif sağa kayma efekti */
    }

    /* Mobilde Görseli Gizle (Yer kaplamaması için) */
    .mega-img-col {
        display: none !important;
    }
}
/* =========================================
   MOBİL MENÜ KESİN ÇÖZÜM (ORTALAMAYI VE KUTULARI SİLER)
   ========================================= */
@media (max-width: 992px) {
    /* Menü konteynerini tam genişlik yapıp ortalamayı iptal ediyoruz */
    .main-nav ul {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        align-items: stretch !important;
    }
    
    .main-nav ul li {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Linklerin arka planındaki garip kutuyu silip sola yaslıyoruz */
    .main-nav ul li a {
        display: block !important;
        width: 100% !important;
        text-align: left !important; /* Yazıları sola hizalar */
        padding: 15px 25px !important;
        box-sizing: border-box !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        background: transparent !important; /* Kutu arka planını siler */
        box-shadow: none !important;
    }

    /* Mega Menü Açılır Alanı */
    .main-nav ul li.mega-menu-item .mega-menu {
        display: none !important; /* Başlangıçta gizli tut */
        position: static !important;
        width: 100% !important;
        background: rgba(0,0,0,0.25) !important;
        padding: 10px 0 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border: none !important;
        box-shadow: inset 0 5px 15px rgba(0,0,0,0.3) !important;
    }

    /* JavaScript tıklandığında bu class'ı ekleyecek ve menü açılacak */
    .main-nav ul li.mega-menu-item .mega-menu.acik-menu {
        display: block !important; 
    }

    /* Alt Linkleri (Web Tasarım vs.) hafif içeriden başlat */
    .mega-list li a {
        padding: 10px 30px !important; 
        font-size: 14px !important;
        color: #94a3b8 !important;
    }
    
    .mega-img-col {
        display: none !important; /* Mobilde resmi gizle */
    }
}