/* =========================================
   1. TEMEL AYARLAR & DEĞİŞKENLER
   ========================================= */
:root {
    --primary-dark: #0A3D62;    /* Lacivert - Güven */
    --secondary-color: #00BFA5; /* Turkuaz - Vurgu */
    --background-dark: #1F2833; /* Koyu Zemin */
    --background-light: #F8F9FA; /* Açık Zemin */
    --text-light: #ECF0F1;
    --text-dark: #333333;
    --border-color: #DDDDDD;
    --shadow-deep: 0 6px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* Linkler ve Butonlar */
a { text-decoration: none; }

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.primary-button {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.primary-button:hover {
    background: #009688;
    transform: translateY(-2px);
}

.secondary-button {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
}

.secondary-button:hover {
    background: var(--primary-dark);
    color: #fff;
}

.small-button { padding: 8px 15px; font-size: 0.9rem; }
.large-button { padding: 15px 35px; font-size: 1.1rem; }

/* Genel Sınıflar */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.section-padding { padding: 80px 0; }
.section-dark { background-color: var(--primary-dark); color: var(--text-light); }
.section-light { background-color: var(--background-light); }
.text-center { text-align: center; }

.section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
}

.section-dark .section-title { color: var(--text-light); }


/* =========================================
   2. HEADER & NAVİGASYON
   ========================================= */
.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Masaüstü Menü */
.desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.desktop-nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

.desktop-nav ul li a:hover {
    color: var(--secondary-color);
}

/* Hamburger İkonu (Masaüstünde Gizli) */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-dark);
}


/* =========================================
   3. SLIDER (YANA KAYARLI - FLEXBOX)
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px; /* Slider yüksekliği */
    overflow: hidden; /* Taşan kısımları gizle */
    background-color: #333;
}

/* Kayma İşlemini Yapan Şerit */
.slider-wrapper {
    display: flex; /* Yan yana dizilim */
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out; /* Kayma animasyonu */
}

/* Her Bir Slayt */
.slide {
    min-width: 100%; /* Kapsayıcı kadar geniş */
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Yazı okunurluğu için karartma */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Slider Okları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.slider-btn:hover { background: var(--secondary-color); color: var(--primary-dark); }
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Noktalar */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background: #fff; }


/* =========================================
   4. HİZMETLER (SERVICES)
   ========================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-deep);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover { transform: translateY(-5px); }

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-card p {
    color: #666;
    flex-grow: 1; /* Butonu aşağı iter */
    margin-bottom: 20px;
}

.service-card a {
    color: var(--secondary-color);
    font-weight: 700;
}


/* =========================================
   5. DİĞER BÖLÜMLER (Süreç, Referanslar, CTA)
   ========================================= */

/* Neden Biz? */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.advantage-item h3 { color: var(--secondary-color); margin-bottom: 10px; }

/* Skorlama Vurgusu */
.text-highlight { color: var(--secondary-color); }
.max-width { max-width: 800px; margin: 0 auto 30px auto; }

/* Süreç Adımları */
.process-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.step-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    text-align: center;
}
.step-number {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 15px;
}
.step-arrow { font-size: 3rem; color: var(--secondary-color); }

/* Rapor Galerisi */
.report-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.report-image-placeholder {
    width: 300px;
    height: 200px;
    background: #E0E0E0;
    border: 2px dashed var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    border-radius: 8px;
}

/* Yorumlar */
/* =========================================
   MÜŞTERİ YORUMLARI (TAM EKRAN YAYILAN SLIDER)
   ========================================= */

/* Ana Kapsayıcı (Full Genişlik) */
.testimonial-slider-full {
    width: 100%;
    overflow: hidden; /* Yanlardan taşanı gizle */
    padding: 30px 0;
    display: flex;
    justify-content: center; /* Geniş ekranlarda ortala */
}

/* Kayan Bant (Track) */
.testimonial-track {
    display: flex;
    /* HESAPLAMA: (Kart Genişliği 400px + Sol/Sağ Boşluk 40px) = 440px */
    /* Toplam 10 kart: 440px * 10 = 4400px */
    width: calc(440px * 10); 
    animation: scroll 40s linear infinite;
}

/* Kayma Animasyonu */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* 5 Kartın genişliği kadar kaydır: 440px * 5 */
        transform: translateX(calc(-440px * 5));
    }
}

/* Hover Durdurma */
.testimonial-track:hover {
    animation-play-state: paused;
}

/* Tekil Yorum Kartı (İDEAL BOYUT) */
.testimonial-card {
    width: 400px; /* Ne devasa ne küçük, tam okunmalık */
    flex-shrink: 0;
    margin: 0 20px; /* Kartlar arası boşluk */
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Yıldızlar */
.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Yorum Metni */
.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* İsim */
.testimonial-card small {
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: auto;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .testimonial-card {
        width: 300px; /* Telefondan girenler için biraz daralt */
        padding: 20px;
        margin: 0 10px;
    }
    
    .testimonial-track {
        /* (300px + 20px) * 10 = 3200px */
        width: calc(320px * 10);
        animation: scrollMobile 30s linear infinite;
    }

    @keyframes scrollMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-320px * 5)); }
    }
}
    .testimonial-track {
        /* Mobildeki yeni boyutlara göre hesaplama */
        /* (320px + 20px boşluk) * 10 = 3400px */
        width: calc(340px * 10);
        animation: scrollMobile 35s linear infinite;
    }

    @keyframes scrollMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-340px * 5)); }
    }


/* CTA Banner */
.cta-banner { padding: 50px 0; background: var(--primary-dark); color: #fff; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.whatsapp-button { background: #25D366; color: #fff; border-color: #25D366; }
.whatsapp-button:hover { background: #128C7E; }

/* =========================================
   6. SSS (ACCORDION)
   ========================================= */
.faq-item { margin-bottom: 15px; border-bottom: 1px solid #eee; }

.faq-question {
    width: 100%;
    background-color: #f9f9f9;
    color: #333;
    text-align: left;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.faq-question:hover { background-color: #eef2f7; }
.faq-question.active { background-color: var(--primary-dark); color: #fff; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    padding: 0 20px;
}
.faq-answer p { padding: 20px 0; color: #555; }


/* =========================================
   7. FOOTER
   ========================================= */
.main-footer {
    background: var(--background-dark);
    color: var(--text-light);
    padding: 50px 0 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}
.main-footer h4 { color: var(--secondary-color); margin-bottom: 20px; }
.main-footer ul { list-style: none; }
.main-footer ul li { margin-bottom: 10px; }
.main-footer ul li a { color: #bbb; transition: color 0.3s; }
.main-footer ul li a:hover { color: var(--secondary-color); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}


/* =========================================
   8. MOBİL UYUMLULUK (RESPONSIVE)
   ========================================= */
@media (max-width: 768px) {
    
    /* Header & Menü */
    .menu-icon { display: block; } /* Hamburgeri göster */
    
    .desktop-nav {
        display: none; /* Menüyü gizle */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .desktop-nav.active { display: flex; } /* JS ile açılınca göster */

    .desktop-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .desktop-nav ul li { width: 100%; text-align: center; }
    
    .desktop-nav ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    /* Slider Mobil */
    .slider-container { height: 400px; }
    .slide-content h1 { font-size: 1.8rem; }
    .slide-content p { font-size: 1rem; }
    .slider-btn { padding: 10px; font-size: 1.5rem; }

    /* Genel Düzen */
    .section-title { font-size: 1.8rem; }
    .process-steps { flex-direction: column; }
    .step-arrow { display: none; } /* Okları mobilde gizle */
    .cta-buttons { flex-direction: column; width: 100%; }
    .button { width: 100%; text-align: center; }
}
/* --- HAKKIMIZDA SAYFASI STİLLERİ --- */

/* Giriş Metni */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center; 
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* İlk Cümle Vurgusu */
.highlight-text {
    font-size: 1.25rem !important; /* Biraz daha büyük */
    font-weight: 500;
    color: var(--primary-dark) !important; /* Lacivert */
}

/* Ayırıcı Çizgi */
.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 50px auto;
    width: 60%;
}

/* Misyon ve Değerler Grid Yapısı */
.mission-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki sütun */
    gap: 40px;
    margin-top: 30px;
}

/* Kartların Genel Stili */
.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Hafif gölge */
    border-top: 4px solid var(--secondary-color); /* Üstte turkuaz çizgi */
}

.mv-card h3 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Liste Stilleri */
.custom-list {
    list-style: none; /* Varsayılan noktaları kaldır */
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 30px; /* İkon için boşluk */
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

/* Misyon Listesi için Ok İşareti */
.mission-card .custom-list li::before {
    content: "➔"; /* Ok ikonu */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Değerler Listesi için Tik İşareti */
.check-list li::before {
    content: "✔"; /* Tik ikonu */
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .mission-values-grid {
        grid-template-columns: 1fr; /* Mobilde alt alta */
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
/* =========================================
   BLOG SAYFASI STİLLERİ
   ========================================= */

/* Blog Izgarası (Grid) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Blog Kartı */
.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden; /* Resim köşelerden taşmasın */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-bottom: 4px solid transparent; /* Hover efekti için hazırlık */
}

.blog-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
}

/* Görsel Alanı (Placeholder) */
.blog-image {
    width: 100%;
    height: 200px;
    background-color: var(--primary-dark); /* Varsayılan gri/mavi arka plan */
    position: relative;
    /* Resim eklersem buraya: background-image: url('...'); */
}

/* Kategori Etiketi */
.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* İçerik Alanı */
.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* MOBİL AYARI (Blog İçin) */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
}
/* =========================================
   LOGO VE LİNK AYARLARI
   ========================================= */

/* Logo içindeki link yapısı */
.logo a {
    display: flex;          /* Resim ve yazıyı yan yana dizer */
    align-items: center;    /* Dikeyde ortalar */
    text-decoration: none;  /* Linkin alt çizgisini kaldırır */
    color: inherit;         /* Mevcut yazı rengini korur (Mavi/Lacivert) */
    gap: 12px;              /* Logo ile yazı arasındaki boşluk */
}

/* Logo Resminin Boyutlandırması */
.logo img {
    height: 75px;           /* Header yüksekliğine uygun bir boyut */
    width: auto;            /* Genişliği orantılı ayarlar */
    object-fit: contain;    /* Resmi bozmadan sığdırır */
    display: block;
}

/* Mobilde logo çok büyük gelirse biraz küçültelim */
@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
    .logo {
        font-size: 1.5rem; /* Yazıyı da mobilde hafif kıstık */
    }
}