/*
  Modern ve Temiz Stil Dosyası - V4 (Sadelik ve Zarafet)
  - Bölümler arası beyaz alanlar artırıldı.
  - Tipografi ve satır aralıkları iyileştirildi.
  - Yumuşak kaydırma animasyonları için stiller eklendi.
*/

:root {
    --primary-color: #003366; /* Koyu Kurumsal Mavi */
    --secondary-color: #495057; /* Koyu Gri Metin */
    --light-gray: #f8f9fa; /* Açık Arkaplan */
    --border-color: #dee2e6;
    --accent-color: #ff6600; /* Vurgu Rengi - Turuncu */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #fff;
    color: var(--secondary-color);
    line-height: 1.6; /* Tipografi: Okunabilirlik için satır aralığı artırıldı */
}

/* --- BÖLÜMLER ARASI BEYAZ ALAN ARTIRILDI --- */
.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* İkonlar için Vurgu Rengi */
.text-accent {
    color: var(--accent-color) !important;
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .nav-link.active {
    position: relative;
    color: var(--primary-color) !important;
    font-weight: 600;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}


/* Butonlar */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #002244; /* Daha Koyu Mavi */
    border-color: #002244;
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.25);
}

.cta-banner .btn-light {
    transition: all 0.3s ease;
}

.cta-banner .btn-light:hover, .cta-banner .btn-light:focus {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Hero Alanı */
.hero-section {
    padding: 8rem 0; /* Beyaz alan artırıldı */
    background-color: var(--light-gray);
    text-align: center;
}

.hero-section h1 {
    font-size: 2.2rem; /* H1 2 satır yer kaplayacak şekilde boyutlandırıldı */
    font-weight: 700;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.0rem; /* Tabletler için H1 boyutu */
    }
}

.hero-section .lead {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 1.5rem auto 2rem;
}

/* Genel Başlıklar */
.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 4rem; /* Başlık altı boşluk artırıldı */
    text-align: center;
}

/* Hizmet Kartları */
.service-card {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2.5rem;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: #fff;
    padding: 7rem 0; /* Beyaz alan artırıldı */
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 5rem 0; /* Beyaz alan artırıldı */
    border-top: 1px solid var(--border-color);
}

.footer p, .footer .nav-link, .footer a {
    color: var(--secondary-color);
}

.footer .nav-link:hover, .footer a:hover {
    color: var(--primary-color);
}

.footer h5 {
    color: #212529;
    font-weight: 600;
}

.footer .border-top {
    border-top-color: var(--border-color) !important;
}

/* --- ARKA PLAN ŞEKİLLERİ --- */
.has-bg-shape {
    position: relative;
    z-index: 1;
    overflow: hidden; /* Şekillerin bölüm dışına taşmasını engelle */
}

.has-bg-shape::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(0, 51, 102, 0.04); /* Ana rengin çok şeffaf hali */
    z-index: -1;
    top: -150px;
    right: -150px;
}

/* --- İLETİŞİM SAYFASI YENİ TASARIM --- */
.contact-section {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.1);
    border-radius: 1rem;
    overflow: hidden;
}

.contact-image-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 550px;
}

.contact-info-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 51, 102, 0.85); /* --primary-color ile uyumlu overlay */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-overlay .icon {
    font-size: 1.2rem;
    width: 30px; /* İkonların hizalanması için */
}

/* --- GÖRSEL ÜSTÜ MARKA LOGOSU --- */
.image-container-relative {
    position: relative;
}

.brand-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.brand-overlay .brand-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    margin-left: 0.5rem;
}


/* --- GİRİŞ ANİMASYONLARI İÇİN STİLLER --- */
.animated-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.highlight-phrase {
    color: var(--accent-color) !important;
    background-color: rgba(255, 102, 0, 0.1);
    padding: 0 0.2em;
    border-radius: 0.2em;
    font-weight: 900;
}