/* =========================================
   TİPOGRAFİ SİSTEMİ (OPEN SANS)
   ========================================= */

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; /* Normal */
    line-height: 1.65; /* Okunabilirlik için biraz geniş */
    color: #555; /* Tam siyah yerine koyu gri (Göz yormaz) */
    -webkit-font-smoothing: antialiased; /* Yazıları pürüzsüzleştirir */
}


/* --- BAŞLIKLAR (HEADINGS) --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif;
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.2; /* Başlıklar daha sıkı */
    font-weight: 800; /* Endüstriyel, güçlü görünüm */
}

h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; font-weight: 700; }
h6 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* --- PARAGRAFLAR & METİNLER --- */
p {
    margin-bottom: 1.5rem;
    color: var(--muted); /* Gri ton */
    font-size: 1rem;
}

/* Vurgulu Metin (Lead) */
.lead {
    font-size: 1.25rem;
    font-weight: 300; /* İnce */
    color: var(--primary-900);
}

/* --- ÖZEL ELEMENTLER --- */

/* 1. Kategori / Alt Başlık Etiketleri (Sarı Renkli Olanlar) */
.sub-title, 
.section-subtitle, 
.section-subtitle-new, 
.news-meta .category,
.slide-btn,
.btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700; /* Kalın */
    text-transform: uppercase; /* Hepsi Büyük Harf */
    letter-spacing: 1px; /* Harf aralığı açık */
}

.darkcolor {
    color: var(--primary-1000);
}
/* 2. Linkler */
a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
    font-weight: 600;
}

a:hover {
    color: var(--accent);
}

/* 3. Navigasyon Linkleri */
.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* =========================================
   KAPTAN BUTON SİSTEMİ (V1.0)
   ========================================= */

/* 1. TEMEL BUTON YAPISI (Ortak Özellikler) */
.btn-std {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px; /* Geniş, rahat tıklanabilir alan */
    font-family: 'Open Sans', sans-serif;
    font-weight: 800; /* Endüstriyel kalınlık */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 2px; /* Hafif yumuşak köşe */
    line-height: 1;
}

/* Buton İkonları İçin Ayar */
.btn-std i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-std:hover i {
    transform: translateX(5px); /* Hoverda ok sağa kaysın */
}

/* -----------------------------------------
   2. TİP A: ACCENT BUTON (Sarı - En Dikkat Çekici)
   Kullanım: Hero Slider, Teklif Al
   ----------------------------------------- */
.btn-accent {
    background-color: var(--accent);
    color: var(--primary-1000); /* Koyu lacivert yazı */
}

/* Hover Efekti: Beyaz perde iner */
.btn-accent::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--white);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-accent:hover {
    color: var(--primary); /* Hoverda yazı maviye döner */
}

.btn-accent:hover::after {
    width: 100%;
}

/* -----------------------------------------
   3. TİP B: DARK BUTON (Kurumsal)
   Kullanım: Hakkımızda, Tüm Projeler, Tüm Haberler
   ----------------------------------------- */
.btn-dark {
    background-color: var(--primary-1000);
    color: var(--white);
    border: 1px solid var(--primary-1000);
}

/* Sol Kenar Çizgisi Detayı */
.btn-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--accent);
    z-index: 2;
    transition: width 0.3s ease;
}

.btn-dark:hover::before {
    width: 100%; /* Hoverda sarı renk tüm butonu kaplar */
    z-index: -1; /* Yazının altına geçer */
}

.btn-dark:hover {
    color: var(--primary-1000); /* Yazı koyu laciverte döner */
    border-color: var(--accent);
}

/* -----------------------------------------
   4. TİP C: TEXT LINK (Kart İçi)
   Kullanım: Haber Kartları, Proje Kartları, Referanslar
   ----------------------------------------- */
.link-std {
    display: inline-flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase; /* İsteğe bağlı, büyük harf şık durur */
    letter-spacing: 0.5px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent; /* Alt çizgi rezervasyonu */
    padding-bottom: 2px;
}

.link-std i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.5s ease;
    color: var(--accent); /* Ok işareti sarı olsun */
}

.link-std:hover {
    color: var(--primary-1000);
    border-bottom-color: var(--accent); /* Hoverda sarı çizgi çıkar */
}

.link-std:hover i {
    transform: translateX(6px);
}
/* --- RESPONSIVE FONT AYARLARI --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    body { font-size: 0.95rem; } /* Mobilde metin biraz küçülür */
}
/* =========================================
   HAKKIMIZDA (ABOUT) SECTİON
   ========================================= */

.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden; /* Taşmaları önlemek için */
}

/* Arka plan için teknik çizim deseni (Opsiyonel ama şık durur) */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBzdHlsZT0iZmlsbC1vcGFjaXR5OjAuMDUiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMi0zOGgzNnYzNkgyVjJ6IiBmaWxsPSIjMjI0MDlBIi8+PC9zdmc+');
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* --- SOL TARAFTAKİ RESİM KOMPOZİSYONU --- */
.img-composition {
    position: relative;
    padding-right: 30px; /* Sağdaki küçük resim için yer */
    padding-bottom: 50px; /* Alttaki taşma için yer */
    z-index: 1;
}

/* Büyük Ana Resim */
.img-main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

/* Üstüne Binen Küçük Resim */
.img-overlap-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%; /* Ana resmin %55'i kadar */
    border: 10px solid var(--white); /* Kalın beyaz çerçeve */
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Derin gölge */
    z-index: 2;
    overflow: hidden;
}

/* Deneyim Yılı Kutusu (Turuncu Badge) */
.experience-badge {
    position: absolute;
    top: 40px;
    right: -20px; /* Dışarı hafif taşsın */
    background-color: var(--accent);
    color: var(--white);
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(242, 169, 0, 0.4);
    z-index: 3;
    border-radius: 4px;
}

.exp-year {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

/* --- SAĞ TARAFTAKİ İÇERİK --- */
.section-subtitle {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.section-subtitle::before {
    content: '';
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.section-desc {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
}

/* Özellik Kutuları (Features) */
.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon-box {
    min-width: 60px;
    height: 60px;
    background-color: rgba(242, 169, 0, 0.1); /* Accent renginin açığı */
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--accent);
    transition: all 0.3s;
}

.feature-box:hover .feature-icon-box {
    background-color: var(--accent);
    color: var(--white);
}

.feature-content h4 {
    color: var(--primary-900);
    margin: 0 0 5px 0;
    font-weight: 700;
}

.feature-content p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Buton Özelleştirme */
.btn-dark-blue {
    background-color: var(--primary-1000);
    color: var(--white);
    padding: 15px 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-dark-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-dark-blue:hover::before {
    width: 100%; /* Hoverda turuncu dolar */
}

/* Responsive */
@media (max-width: 992px) {
    .img-composition { margin-bottom: 50px; padding-right: 0; }
    .img-overlap-wrap { display: none; /* Mobilde karmaşıklığı önlemek için küçük resmi gizleyebiliriz veya pozisyonunu değiştirebiliriz */ }
    .experience-badge { right: 0; }
    .section-title { font-size: 2rem; }
}

/* =========================================
   FOOTER (MATERIAL DESIGN)
   ========================================= */

.site-footer {
    background-color: var(--primary-1000); /* En koyu ton */
    color: rgba(255, 255, 255, 0.7); /* Göz yormayan beyaz */
    padding-top: 80px;
    font-size: 0.95rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); /* Yukarı doğru hafif gölge */
    position: relative;
    z-index: 10;
}

/* Logo Alanı */
.footer-logo-box {
  
    padding: 10px 20px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.footer-desc {
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 300px;
}

/* Başlıklar */
.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* Başlık Altı Çizgisi (Sarı Detay) */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* Link Listeleri */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-flex;
    align-items: center;
}

/* Hover Efekti: Sağa Kayma ve Renk Değişimi */
.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '\f054'; /* FontAwesome Chevron Right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7em;
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Yuvarlak */
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary-1000);
    transform: translateY(-3px); /* Yukarı zıplama */
    box-shadow: 0 5px 15px rgba(242, 169, 0, 0.3);
}

/* İletişim Satırları */
.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Alt Telif Alanı */
.footer-bottom {
    background-color: #0b1333; /* Primary-1000'den bir tık daha koyu */
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
}

.bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}

.bottom-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-heading { margin-top: 30px; }
}