/* ==========================================================================
   CSS Değişkenleri (Renk Paleti ve Fontlar)
   ========================================================================== */
:root {
    --primary-color: #1b3252;
    --secondary-color: #c19b5e;
    --text-color: #4a4a4a;
    --light-bg: #f9f9fa;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Open Sans', sans-serif;
}

/* ==========================================================================
   Genel Ayarlar (Reset)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 27px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 50px; }

/* Butonlar */
.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 3px;
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* ==========================================================================
   Üst Bilgi Çubuğu (Top Bar)
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    color: #e0e0e0;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.social-links a {
    color: #e0e0e0;
    margin-left: 15px;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Header (Navigasyon)
   ========================================================================== */
#main-header {
    background-color: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 70px; 
    width: auto;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.main-nav ul li a:hover, 
.main-nav ul li a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ==========================================================================
   Hero Bölümü (Slider)
   ========================================================================== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y; /* Tarayıcının aşağı/yukarı kaydırmaya izin verip sağ/sol işlemlerini JS'e bırakmasını sağlar */
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%; 
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; 
    user-select: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 50, 82, 0.7); 
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2; 
}

.hero-content h2 {
    color: var(--secondary-color);
    letter-spacing: 3px;
    font-size: 24px;
    margin-bottom: 10px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 60px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-overlay {
    pointer-events: none; 
    user-select: none;
}

.text-overlay .cta-btn {
    pointer-events: auto; 
}

/* Slider Ok Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--secondary-color);
}

.prev-btn { left: 30px; }
.next-btn { right: 30px; }

/* ==========================================================================
   Bölüm Başlıkları (Ortak)
   ========================================================================== */
.subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ==========================================================================
   Hakkımızda Önizleme
   ========================================================================== */
.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
}

.founder-info {
    margin-top: 30px;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--primary-color);
}

.founder-info .title {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ==========================================================================
   Çalışma Alanlarımız
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-card .icon i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 5px;
}

/* ==========================================================================
   İstatistikler
   ========================================================================== */
.statistics {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    margin: 20px;
}

.stat-item h2 {
    display: inline-block;
    font-size: 48px;
    color: var(--secondary-color);
    margin: 0;
}

.stat-item span {
    font-size: 48px;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: var(--font-heading);
}

.stat-item p {
    font-size: 16px;
    margin-top: 5px;
}

/* ==========================================================================
   Danışmanlık Formu
   ========================================================================== */
.consultation {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.consultation-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: var(--font-text);
    background-color: var(--light-bg);
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* ==========================================================================
   Ekip / Partnerler
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member img {
    width: 100%;
    border-radius: 5px;
    filter: grayscale(20%);
    transition: 0.3s ease;
}

.team-member:hover img {
    filter: grayscale(0%);
}

.member-info {
    margin-top: 15px;
}

.member-info p {
    color: var(--secondary-color);
    font-style: italic;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: #112035; 
    color: #a0aab8;
    padding-top: 40px;
}

.footer-logo {
    max-width: 250px;
    filter: brightness(0) invert(1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.main-footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #a0aab8;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: #0b1523;
    padding: 20px 0;
    font-size: 14px;
}

/* ==========================================================================
   Responsive (Mobil Uyumluluk)
   ========================================================================== */
@media (max-width: 992px) {
    .about-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .main-nav ul {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-nav ul.show {
        display: flex;
    }
    
    .main-nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-form-wrapper {
        padding: 30px 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

















/* ==========================================================================
   HAKKIMIZDA SAYFASI (YENİ MİMARİ EKLENTİLERİ)
   ========================================================================== */

/* Ortak Alt Sayfa Hero Alanı */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 50px;
    margin-bottom: 5px;
}

/* Tarihçe & Play Butonu Overlay */
.history-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-video-box {
    flex: 1;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.history-video-box img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.history-video-box:hover img {
    transform: scale(1.05);
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn-overlay i {
    margin-left: 5px; /* İkonu ortalamak için */
}

.play-btn-overlay:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.history-text {
    flex: 1;
}

/* 3'lü Karanlık Sütunlar (Felsefemiz) */
.pillars-section {
    background-color: #171717; /* Siyaha yakın koyu gri */
    color: #999;
    padding: 60px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}

.pillar-box h3 {
    color: var(--white);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pillar-box p {
    font-size: 15px;
}

/* SSS (Akordiyon) Alanı */
.faq-section {
    background-color: #1b262c; /* Koyu yeşilimsi/lacivert ton */
    color: var(--white);
}

.faq-section h2 {
    color: var(--white);
}

.faq-accordion {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
    padding: 20px 0;
    font-size: 18px;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #a0aab8;
}

.faq-answer p {
    padding-bottom: 20px;
}

/* Akordiyon Açık Durumu */
.faq-item.active .faq-question {
    color: var(--secondary-color);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* İçeriğin sığması için yeterli bir yükseklik */
}

/* Video Modal (Popup) Ayarları */
.video-modal {
    display: none; /* JS ile flex yapılacak */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
}

.modal-content video {
    width: 100%;
    border-radius: 5px;
    outline: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--secondary-color);
}

/* Responsive Uyumluluk */
@media (max-width: 992px) {
    .history-grid {
        flex-direction: column;
    }
}













/* ==========================================================================
   ÇALIŞMA ALANLARIMIZ CTA (İletişim Bandı) BÖLÜMÜ
   ========================================================================== */
.cta-banner {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(27, 50, 82, 0.92), rgba(27, 50, 82, 0.92)), url('assets/g12.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Paralaks etkisi için */
}

.cta-title {
    color: var(--white);
    font-size: 36px;
    margin-top: 15px;
    font-weight: 400;
}

.cta-info {
    color: #a0aab8;
    font-size: 16px;
}

.cta-info span {
    margin: 0 15px;
    display: inline-block;
}

.cta-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.mobile-break {
    display: none;
}

/* CTA Bandı Mobil Uyumluluk */
@media (max-width: 768px) {
    .cta-title {
        font-size: 26px;
    }
    .mobile-break {
        display: block;
    }
    .cta-info span {
        display: block;
        margin: 10px 0;
    }
    .cta-info .divider {
        display: none;
    }
}











/* ==========================================================================
   YAYINLARIMIZ SAYFASI (VİDEODAKİ SÜTUN TASARIMLARI)
   ========================================================================== */

.pubs-section {
    padding: 30px 0;
}

.pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

/* 1. Ortalanmış Tasarım (Center Align) */
.pub-center {
    text-align: center;
    padding: 20px;
}

.pub-center .icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.pub-center h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.pub-center p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 2. İkon ve Başlık Yan Yana (Left Icon Next To Title) */
.pub-left-title {
    text-align: left;
    padding: 20px;
}

.pub-left-title .pub-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pub-left-title .icon {
    font-size: 30px;
    color: var(--secondary-color);
}

.pub-left-title h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 20px;
    margin: 0;
}

.pub-left-title p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 3. Koyu Arka Plan Üstte İkon (Left Icon On The Top - Dark) */
.pubs-dark-section {
    background-image: linear-gradient(rgba(27, 50, 82, 0.95), rgba(27, 50, 82, 0.95)), url('assets/g16.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 0;
}

.pub-dark-top {
    text-align: left;
    padding: 20px;
}

.pub-dark-top .icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.pub-dark-top h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 15px;
    font-size: 22px;
}

.pub-dark-top p {
    color: #a0aab8; /* Koyu zeminde okunabilir gri-mavi ton */
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Ortak "Devamını Oku" Buton/Link Tasarımı */
.read-more-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover {
    color: var(--secondary-color);
}

/* Koyu Zemin İçin "Devamını Oku" Linki */
.pub-dark-top .read-more-link {
    color: var(--secondary-color);
}

.pub-dark-top .read-more-link:hover {
    color: var(--white);
}









/* Kartlara Arka Plan Görseli Desteği ve Gölgelendirme (Kutu Hissi) */
.pub-center, 
.pub-left-title, 
.pub-dark-top {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 30px; /* Görselin görünmesi için iç boşlukları artırdık */
    border-radius: 8px; /* Kart köşelerini hafif yuvarladık */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Beyaz kartlar için ince gölge */
.pub-center, 
.pub-left-title {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Koyu arka planlı kartlar için daha belirgin gölge */
.pub-dark-top {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Fareyle Üzerine Gelindiğinde (Hover) Hafif Yukarı Kalkma Efekti */
.pub-center:hover, 
.pub-left-title:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.pub-dark-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}














/* ==========================================================================
   REFERANSLARIMIZ SAYFASI 
   ========================================================================== */

/* --- 1. Sola Dayalı 3'lü Grid Tasarımı --- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.testi-card-left {
    background: #fff;
    padding: 10px;
    text-align: left;
}

.testi-card-left .quote-icon {
    font-size: 35px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.testi-card-left .testi-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author h4 {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-author span {
    font-size: 13px;
    color: #888;
}

/* --- 2. Ortalanmış Carousel Slider Tasarımı --- */
.testimonial-carousel-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(27, 50, 82, 0.95), rgba(27, 50, 82, 0.95)), url('assets/g19.jpg'); /* İsteğe bağlı desen/görsel arka planı */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 28px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.relative-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testi-carousel-wrapper {
    position: relative;
    min-height: 350px;
}

.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testi-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.quote-icon-center {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.testi-text-center {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 40px;
}

.testi-author-center img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid var(--secondary-color);
}

.testi-author-center h4 {
    font-family: var(--font-main);
    font-size: 18px;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testi-author-center span {
    font-size: 14px;
    color: #a0aab8;
}

/* Slider Kontrol Butonları (Videodaki Çember İkonlar) */
.testi-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.testi-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.prev-btn { left: -60px; }
.next-btn { right: -60px; }

/* Noktalı Göstergeler (Dots) */
.testi-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--secondary-color);
}

/* Responsive Kontrol */
@media (max-width: 992px) {
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    .testi-text-center { font-size: 18px; padding: 0 50px; }
}










/* ==========================================================================
   İLETİŞİM SAYFASI 
   ========================================================================== */

/* --- 1. Koyu Zeminli Bilgi Bölümü --- */
.contact-info-section {
    background-color: var(--primary-color); /* Kurumsal Lacivert */
    padding: 37px 0;
    color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.contact-card {
    padding: 20px;
}

/* Orta sütuna videodaki gibi ayırıcı çizgi efekti vermek için (İsteğe bağlı) */
@media (min-width: 992px) {
    .contact-card.border-sides {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.contact-card i {
    font-size: 40px;
    color: var(--secondary-color); /* Dore Rengi */
    margin-bottom: 25px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 15px;
    color: #a0aab8;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 75px; /* Yazı uzunlukları farklı olsa bile butonları hizalamak için */
}

.contact-action {
    display: inline-block;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-action:hover {
    color: var(--white);
}

/* --- 2. İletişim Formu Bölümü --- */
.contact-form-section {
    background-color: #ffffff;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    font-family: var(--font-main);
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: #fff;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--font-main);
}

.submit-btn:hover {
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr; /* Mobilde form alanlarını alt alta alır */
    }
}

/* --- 3. Harita Bölümü --- */
.contact-map-section {
    width: 100%;
    height: 450px;
    line-height: 0; /* Boşlukları gidermek için */
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}