/* --- ÖZEL KAYDIRMA ÇUBUĞU STİLLERİ --- */

/* Standart Yöntem (Firefox vb. için) */
/* hakkimizda-style.css dosyanızın üst taraflarına ekleyin */

html {
    background-color: #fff !important;
    /* Mavi rengi ezer, beyaz yapar */
    height: 100%;
    /* Bunu da eklemek iyi bir pratiktir */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    min-height: 100%;
    /* Sayfa içeriği az olsa bile body'nin ekranı kaplamasını sağlar */
    margin: 0;
}

/* WebKit Yöntemi (Chrome, Safari, Edge vb. için) */

/* Tüm kaydırma çubuğu */
::-webkit-scrollbar {
    width: 10px;
    /* Çubuğun genişliği */
}

/* Kaydırma çubuğunun zemini (Track) */
::-webkit-scrollbar-track {
    background: #f7f8fc;
    /* Açık gri arka plan */
    border-radius: 5px;
}

/* Kaydırılan kısım (Thumb) */
::-webkit-scrollbar-thumb {
    background-color: #1a1aa6;
    /* Uyto mavisi */
    border-radius: 5px;
    border: 2px solid #f7f8fc;
    /* Thumb etrafında track renginde ince bir kenarlık (opsiyonel) */
}

/* Hover efekti (opsiyonel) */
::-webkit-scrollbar-thumb:hover {
    background-color: #0d0d52;
    /* Uyto mavisinin koyu tonu */
}

/* --- GEREKLİ FONT'LARI İÇERİ AKTARMA --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display.swap');
@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display.swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&display.swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display.swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display.swap');

/* --- GENEL AYARLAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
ÇAKIŞMAYI ÖNLEMEK İÇİN TÜM NAVBAR/HEADER STİLLERİ
BU DOSYADAN SİLİNDİ. BU STİLLER ARTIK "style.css" 
DOSYASINDAN GELECEK.
=====================================================
*/


/* --- HERO BÖLÜMÜ (DALGALI ARKA PLAN) --- */
/* === HERO BÖLÜMÜ STİLLERİ (YENİDEN DÜZENLENDİ) === */

/* 1. Ana sarmalayıcı: Arka planı düz canlı mavi yap */
.hero-wrapper {
    position: relative;
    /* Gönderdiğin örnekteki canlı mavi tonu */
    background-color: #0011FF;
    padding: 60px 0;
    overflow: hidden;
}

/* 2. Düz arka plan için önceki dalga animasyonlarını kaldır */
.hero-wrapper::before,
.hero-wrapper::after {
    display: none;
}

/* 3. Konteyner yapısı (Aynen kaldı) */
.about-intro .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* 4. Metin alanı (Aynen kaldı) */
.text-content {
    padding: 20px;
    flex-basis: 50%;
    max-width: 600px;
}

/* 5. YENİ: Yanıp sönen kutucuk stili */
.blinking-cursor-box {
    display: block;
    width: 14px;
    height: 14px;
    background-color: #00FF00;
    /* Canlı yeşil */
    margin-bottom: 20px;
    /* Başlıkla arasına boşluk koy */
    animation: blink-box 1s step-end infinite;
}

/* 6. YENİ: Kutucuk animasyonu */
@keyframes blink-box {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* 7. Başlık (H1) stillerini güncelle: Font değişti, gölge kalktı */
.text-content h1 {
    /* Hedef tasarımdaki gibi temiz, sistemsel bir font */
    font-family: 'Anta', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: none;
    /* Temiz görünüm için gölgeyi kaldır */
}

/* 8. Paragraf (p) stillerini güncelle: Font, boyut ve renk değişti */
.text-content p {
    /* Başlıkla aynı temiz font ailesi */
    font-family: 'Anta', sans-serif;
    font-size: 1.15rem;
    /* Yazıyı biraz büyüt (hedef tasarımdaki gibi) */
    line-height: 1.7;
    /* Okunabilirliği artır */
    max-width: 520px;
    margin-bottom: 30px;
    color: #ffffff;
    /* Rengi saf beyaza ayarla */
    text-shadow: none;
    /* Temiz görünüm için gölgeyi kaldır */
}

/* 9. SVG Alanı (Aynen kaldı) */
.image-content {
    flex-basis: 45%;
}

.image-content svg {
    width: 100%;
    height: auto;
}

/* === DAKTİLO EFEKTİ STİLLERİ (H1 İÇİN - Aynen kaldı) === */
/* Bu kodlar H1'in daktilo animasyonu için gerekli */

.text-content h1#typewriter-text {
    position: relative;
    min-height: 1.3em;
    display: inline-block;
}

/* Daktilo imleci (yazarken görünür) */
.text-content h1#typewriter-text::after {
    content: '█';
    display: inline-block;
    margin-left: 10px;
    font-size: 0.9em;
    color: #ffffff;
    animation: blink-caret 1s step-end infinite;
}

/* Daktilo bitince imleci gizle */
.text-content h1#typewriter-text.typing-complete::after {
    display: none;
}

@keyframes blink-caret {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* === SVG İÇERİK ANİMASYONLARI (Aynen kaldı) === */
.image-content .animated-content {
    opacity: 0;
    transform: translateY(20px);
    animation: contentLoad 1.5s ease-out forwards 0.5s;
}

.animated-content rect {
    opacity: 0;
    animation: elementFadeIn 0.8s ease-out forwards;
}

.animated-content rect:nth-child(1) {
    animation-delay: 1.0s
}

.animated-content rect:nth-child(2) {
    animation-delay: 1.1s
}

.animated-content rect:nth-child(3) {
    animation-delay: 1.2s
}

.animated-content rect:nth-child(4) {
    animation-delay: 1.3s
}

.animated-content rect:nth-child(5) {
    animation-delay: 1.4s
}

.animated-content rect:nth-child(6) {
    animation-delay: 1.5s
}

.animated-content rect:nth-child(7) {
    animation-delay: 1.6s
}

.animated-content rect:nth-child(8) {
    animation-delay: 1.7s
}

.animated-content rect:nth-child(9) {
    animation-delay: 1.8s
}

.animated-content rect:nth-child(10) {
    animation-delay: 1.9s
}

.animated-content rect:nth-child(11) {
    animation-delay: 2.0s
}

.animated-content rect:nth-child(12) {
    animation-delay: 2.1s
}

.animated-content rect:nth-child(13) {
    animation-delay: 2.2s
}

.animated-content rect:nth-child(14) {
    animation-delay: 2.3s
}

.animated-content rect:nth-child(15) {
    animation-delay: 2.4s
}

.animated-content rect:nth-child(16) {
    animation-delay: 2.5s
}

.animated-content rect:nth-child(17) {
    animation-delay: 2.6s
}

/* === SECTION BAŞLIĞI STİLLERİ === */
.section-title {
    font-family: 'Anta', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

/* === ÖZELLİK KARTLARI BÖLÜMÜ STİLLERİ === */
.features-section {
    padding: 80px 0;
    background-color: #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* 4 SÜTUNLU GRİD YAPISI (Visiolabs'taki gibi) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;

    /* Dış çerçeve ve beyaz arka plan */
    border: 1px solid #e0e0e0;
    border-right: none;
    background-color: #ffffff;
}

.feature-card {
    background-color: #ffffff;
    /* Başlangıç rengi beyaz */
    padding: 40px;
    border-right: 1px solid #e0e0e0;
    /* Dikey ayırıcılar */
    border-radius: 0;
    /* KESKİN KENARLAR */
    text-align: left;
    position: relative;
    z-index: 1;

    /* DÜZELTME: Yumuşak geçiş için 'background-color' eklendi */
    transition: background-color 0.3s ease;
}


/* === YENİ HOVER EFEKTİ (RESİMDEKİ GİBİ) === */
.feature-card:hover {
    background-color: #0011FF;
    /* Hero mavisi */
    z-index: 10;

    /* KALDIRILDI: 3D efektleri (transform ve box-shadow) kaldırıldı */
    /* transform: translateY(-10px); */
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
}

/* KALDIRILDI: Mavi bar (::after) kuralı tamamen silindi */


/* === KART İÇERİĞİ (HOVER'DA RENK DEĞİŞİMİ EKLENDİ) === */
.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #0011FF;
    /* Başlangıç rengi mavi */
    transition: color 0.3s ease;
    /* Renk geçişi eklendi */
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-title {
    font-family: 'Anta', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #333333;
    /* Başlangıç rengi koyu gri */
    margin-bottom: 15px;
    transition: color 0.3s ease;
    /* Renk geçişi eklendi */
}

.card-description {
    font-family: system-ui, sans-serif;
    font-size: 0.95rem;
    color: #666666;
    /* Başlangıç rengi gri */
    line-height: 1.6;
    transition: color 0.3s ease;
    /* Renk geçişi eklendi */
}

/* Hover olunca içerideki her şeyi beyaza çevir */
.feature-card:hover .card-icon,
.feature-card:hover .card-title,
.feature-card:hover .card-description {
    color: #ffffff;
}

/* === YENİ HOVER EFEKTİ BİTİŞ === */


/* === RESPONSIVE DÜZENLEME (Aynen kaldı) === */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .feature-card:nth-child(1),
    .feature-card:nth-child(2) {
        border-bottom: 1px solid #e0e0e0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .features-grid {
        border-bottom: none;
        /* Dış çerçeveyi alttan kapat */
    }
}


/* === SCROLL ANİMASYONU (JS İÇİN GEREKLİ - Aynen kaldı) === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.feature-card.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.feature-card.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.feature-card.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* --- GENEL ANİMASYONLAR --- */
@keyframes wave {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes floatIllustration {
    0% {
        transform: translateY(0) translateX(0) scale(1)
    }

    50% {
        transform: translateY(-10px) translateX(-5px) scale(1.02)
    }

    100% {
        transform: translateY(0) translateX(0) scale(1)
    }
}

@keyframes moveDot {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(calc(50vw - 50%), calc(50vh - 50%)) scale(1.5);
        opacity: 0
    }
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .8
    }

    25% {
        transform: translate(40px, -60px) scale(.8);
        opacity: .4
    }

    50% {
        transform: translate(-30px, 20px) scale(1.2);
        opacity: 1
    }

    75% {
        transform: translate(20px, 80px) scale(.9);
        opacity: .5
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: .8
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes contentLoad {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes elementFadeIn {
    to {
        opacity: 1
    }
}

/* === YENİ BÖLÜM: CALL-TO-ACTION (CTA) === */
/* NOT: Bu bölümdeki stiller 'style.css' içindekilerle 
   neredeyse aynı. En iyi pratik, bu stilleri de
   'style.css' içine taşımak ve buradan silmektir.
   Şimdilik, çakışma yaratmadığı için bırakıyorum.
*/

.call-to-action-section {
    padding: 100px 0;
    background-color: #f7f8fc;
    /* İstediğin hafif gri */
    border-top: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Arka plan SVG'lerini konumlandırma */
.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Tıklanamaz yapar */
}

.cta-shape-white {
    /* hakkimiz.svg */
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 300px;
    opacity: 0.2;
}

.cta-shape-blue {
    /* hakkimiz1.svg */
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 350px;
    opacity: 0.2;
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    /* İçerik önde (SVG'lerin üstünde) */
}

.cta-content {
    flex: 1;
    max-width: 50%;
}

.cta-image-wrapper {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

.cta-image-wrapper img {
    max-width: 100%;
    height: auto;
}

.title-accent {
    width: 25px;
    height: 25px;
    background-color: #1BFD9C;
    margin-bottom: 20px;
    border-radius: 0;
    animation: blink 1s infinite;
}

.cta-content h2.typewriter-heading-cta {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 7vw, 3rem);
    font-weight: 700;
    color: #0d253f;
    margin-bottom: 25px;
    line-height: 1.3;
    min-height: 1.3em;
}

.cta-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 550px;
}

.cta-content .cta-email {
    margin-top: 30px;
    text-align: left;
}

a.mail-hover-new {
    font-family: 'Allerta Stencil', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1aa6;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

a.mail-hover-new::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #1f1bfd;
    transition: width 0.3s ease;
}

a.mail-hover-new:hover {
    color: #0d253f;
}

a.mail-hover-new:hover::after {
    width: 100%;
}

/* @keyframes blink (title-accent için) */
@keyframes blink {

    from,
    to {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* =====================================================
ÇAKIŞMAYI ÖNLEMEK İÇİN TÜM FOOTER STİLLERİ
BU DOSYADAN SİLİNDİ. BU STİLLER ARTIK "style.css" 
DOSYASINDAN GELECEK.
=====================================================
*/


/* --- RESPONSIVE TASARIM --- */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 80px 40px;
        border-bottom-left-radius: 200px;
    }

    .about-intro .container {
        flex-direction: column-reverse;
    }

    .image-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    /* Navbar gizleme kuralı style.css'e taşındı, 
       bu yüzden buradan silindi. */
}

@media (max-width: 768px) {
    /* header padding kuralı style.css'e taşındı. */

    .hero-wrapper {
        padding: 60px 20px;
        border-bottom-left-radius: 100px;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item .timeline-content {
        max-width: none;
    }

    /* FOOTER RESPONSIVE stilleri style.css'e taşındı. */

    /* --- */
    .cta-illustration {
        width: 180px;
        bottom: -20px;
        right: -20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-illustration {
        width: 150px;
        right: -10px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}
/* --- ÖZEL KAYDIRMA ÇUBUĞU STİLLERİ --- */

/* Standart Yöntem (Firefox vb. için) */
/* ... (dosyanın üst kısmı değişmedi) ... */
html {
    background-color: #fff !important;
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    min-height: 100%;
    margin: 0;
}

/* ... (kaydırma çubuğu, font import, genel ayarlar değişmedi) ... */

/* =====================================================
ÇAKIŞMAYI ÖNLEMEK İÇİN TÜM NAVBAR/HEADER STİLLERİ
BU DOSYADAN SİLİNDİ.
===================================================== */


/* --- HERO BÖLÜMÜ (DALGALI ARKA PLAN) --- */
/* ... (Bu bölümdeki tüm .hero-wrapper, .text-content, .image-content stilleri değişmedi) ... */


/* === SECTION BAŞLIĞI STİLLERİ === */
/* ... (değişmedi) ... */

/* === ÖZELLİK KARTLARI BÖLÜMÜ STİLLERİ === */
/* ... (değişmedi) ... */


/* === SCROLL ANİMASYONU (JS İÇİN GEREKLI) === */
/* ... (değişmedi) ... */

/* --- GENEL ANİMASYONLAR --- */
/* ... (değişmedi) ... */

/* === YENİ BÖLÜM: CALL-TO-ACTION (CTA) === */
/* ... (Bu bölümün masaüstü stilleri değişmedi) ... */


/* =====================================================
ÇAKIŞMAYI ÖNLEMEK İÇİN TÜM FOOTER STİLLERİ
BU DOSYADAN SİLİNDİ.
===================================================== */


/* --- RESPONSIVE TASARIM --- */
@media (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 80px 40px;
        border-bottom-left-radius: 200px;
    }

    .about-intro .container {
        flex-direction: column-reverse;
    }

    .image-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* YENİ EKLENDİ: CTA Bölümü */
    .cta-layout {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
        padding: 0 20px; /* 768px'den buraya taşındı */
    }
    .cta-content,
    .cta-image-wrapper {
        max-width: 100%;
    }
    .cta-image-wrapper {
        max-width: 70%;
    }
    .cta-content .title-accent {
        margin: 0 auto 25px auto;
    }
    .cta-content .cta-email {
        text-align: center;
    }
}

@media (max-width: 900px) {
    /* (Bu kural style.css'e taşındı, burası boş kaldı) */
}

@media (max-width: 768px) {
    .hero-wrapper {
        padding: 60px 20px;
        border-bottom-left-radius: 100px;
    }

    .text-content h1 {
        font-size: 2.5rem;
    }

    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ... (timeline stilleri değişmedi) ... */

    .cta-illustration {
        width: 180px;
        bottom: -20px;
        right: -20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .particle {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-illustration {
        width: 150px;
        right: -10px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}