/* =====================================================
ANA "style.css" DOSYASINDA ZATEN BULUNDUĞU İÇİN
TÜM KAYDIRMA ÇUBUĞU, NAVBAR, HAMBURGER, FOOTER VE TAG-SCROLLER STİLLERİ
BU DOSYADAN SİLİNDİ.
===================================================== */

/* YENİ EKLENEN KUTU ANİMASYONU (SENİN İSTEDİĞİN) */
@keyframes blink-box {
    from,
    to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* --- GENEL --- */
body {
    margin: 0;
    font-family: 'Spline Sans Mono', monospace;
    background-color: #ffffff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================================== */
/* HİZMETLER SAYFASINDAN ALINAN YENİ HERO STİLLERİ     */
/* ===================================================== */

.hero-section {
    background-color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    /* YENİ EKLENDİ - KAYDIRMA ÇUBUĞUNU BU DÜZELTECEK */
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 50px;
    position: relative;
    /* YENİ EKLENDİ */
    z-index: 1;
    /* YENİ EKLENDİ */
}

.hero-section .text-content {
    flex: 1;
    max-width: 550px;
}

/* --- BURASI DEĞİŞTİ KANKA --- */
.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;
    }
}


.hero-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: none;
    min-height: 100px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    padding-top: 30px;
}

.hero-section h1::after {
    content: '_';
    animation: blink 1s infinite;
    font-weight: 400;
}

.hero-section h1.typing-done::after {
    content: '';
    animation: none;
}
.hero-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-section .cta-button {
    display: inline-block;
    background-color: #1a1aa6;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(26, 26, 166, 0.2);
}

.hero-section .cta-button:hover {
    background-color: #151590;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(26, 26, 166, 0.3);
}

/* --- HERO BÖLÜMÜ <IMG> STİLİ (GÜNCELLENDİ) --- */

.illustration-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 600px;
    height: 400px;
}

/* YENİ EKLENDİ: Resmin konteynere tam sığması için */
.illustration-container img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

/* ESKİ SVG ANİMASYON KODLARI (TÜMÜ SİLİNDİ) */
/* .animated-svg, @keyframes, .laptop-group, .screen-bg vb. kaldırıldı. */


/* --- HERO ARKA PLAN ŞEKİLLERİ --- */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* İçeriğin arkasında kalmasını sağlar */
    pointer-events: none;
    /* Üzerine tıklanmasını engeller */
}

.hero-bg-shapes .shape-left {
    position: absolute;
    width: 450px;
    /* Boyutu buradan istediğin gibi ayarla */
    height: auto;
    left: 0;
    top: 50%;
    /* Sol kenardan dışarı taşır ve dikey ortalar */
    transform: translateY(-50%) translateX(-30%);
    opacity: 0.9;
}

.hero-bg-shapes .shape-right {
    position: absolute;
    width: 450px;
    /* Boyutu buradan istediğin gibi ayarla */
    height: auto;
    right: 0;
    top: 50%;
    /* Sağ kenardan dışarı taşır ve dikey ortalar */
    transform: translateY(-50%) translateX(30%);
    opacity: 0.9;
}


/* ===================================================== */
/* İLETİŞİM SAYFASININ ORİJİNAL STİLLERİ DEVAM EDİYOR  */
/* ===================================================== */

/* --- İLETİŞİM DETAYLARI VE HARİTA BÖLÜMÜ --- */
.contact-details-section {
    padding: 80px 0 100px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container {
    border: 5px solid #1a1aa6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 500px; /* YÜKSEKLİK BURAYA TAŞINDI */
    font-size: 0; /* iframe altındaki olası boşluğu kaldırır */
}

.contact-info {
    font-family: 'Outfit', sans-serif;
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #0d253f;
    margin: 30px 0 15px 0;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info h4 { font-size: 1.25rem; color: #333; margin: 0 0 8px 0; font-weight: 700; }
.contact-info p { font-size: 1.1rem; line-height: 1.7; color: #555; margin: 0 0 15px 0; }
.contact-info a { color: #1a1aa6; text-decoration: none; transition: color 0.4s ease; }
.phone-hover { position: relative; display: inline-block; padding-bottom: 5px; }
.phone-hover::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background-color: #0d253f; transform: scaleX(0); transform-origin: center; transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); }
.phone-hover:hover::after { transform: scaleX(1); }
.mail-hover-new { position: relative; display: inline-block; padding: 2px 6px; margin: -2px -6px; transition: color 0.5s ease; z-index: 1; }
.mail-hover-new::before { content: ''; position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; background-color: #1a1aa6; transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1); }
.mail-hover-new:hover { color: #ffffff; }
.mail-hover-new:hover::before { transform: scaleY(1); transform-origin: top; }
.social-links-simple { display: flex; align-items: center; gap: 25px; margin-top: 20px; margin-bottom: 15px; }
.icon-simple { position: relative; display: inline-block; padding: 8px; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.icon-simple svg { display: block; fill: #1a1aa6; }
.icon-simple:hover { transform: scale(1.1); }
.icon-simple::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border: 2px solid #1a1aa6; border-radius: 6px; opacity: 0; transform: scale(0.8); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.icon-simple:hover::after { opacity: 1; transform: scale(1); }

/* --- AÇILIR-KAPANIR SSS BÖLÜMÜ --- */
.faq-section {
    padding: 40px 0 120px 0;
    background-color: #ffffff;
}

.faq-box {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 50px;
    transition: border-color 0.3s ease;
}

.faq-box:hover {
    border-color: #1a1aa6;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 40px 15px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    color: #0d253f;
    transition: color 0.3s ease;
}

.faq-question:hover h2 {
    color: #1a1aa6;
}

.faq-question i {
    font-size: 1.5rem;
    color: #a0a0a0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.faq-question:hover i {
    color: #1a1aa6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), padding 0.5s ease;
}

.faq-answer p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 10px 20px 50px 20px;
}

.answer-point {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 25px;
}

.answer-number {
    background-color: #1a1aa6;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.answer-text {
    min-width: 0;
}

.answer-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    color: #0d253f;
}

.answer-text p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

/* --- "BİZE ULAŞIN" (CTA) BÖLÜMÜ --- */
.call-to-action-section {
    padding: 100px 0;
    background-color: #f7f8fc;
    border-top: 1px solid #e0e0e0;
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.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;
}

.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;
}
/* --- YENİ EKLENEN WHATSAPP LİNK STİLİ --- */
.contact-icon-link {
    display: inline-flex; /* İkon ve metni hizalamak için */
    align-items: center;
    gap: 10px; /* İkon ve metin arası boşluk */
    font-family: 'Outfit', sans-serif; /* Diğer p'lerle aynı font */
    font-size: 1.1rem; /* Diğer p'lerle aynı font boyutu */
}

.contact-icon-link i {
    font-size: 1.3em; /* İkonu metne göre biraz büyütelim */
    line-height: 1;
    /* Renk, otomatik olarak 'a' etiketinden (mavi) miras alınacak */
}


/* --- TEK VE DOĞRU RESPONSIVE KISIMLARI --- */
@media (max-width: 992px) {
    /* HİZMETLER'DEN GELEN YENİ HERO RESPONSIVE AYARLARI */
    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-section .text-content {
        max-width: 100%;
        order: 2; /* Yazı alta gelsin */
    }
    .illustration-container {
        max-width: 80%;
        order: 1; /* Resim üste gelsin */
        height: auto; /* Yüksekliği otomatik olsun */
    }

    /* İLETİŞİM'İN ESKİ RESPONSIVE AYARLARI */
    .contact-layout { grid-template-columns: 1fr; }
    .map-container {
        order: 2;
        height: 400px;
    }
    .contact-info { order: 1; text-align: center; }
    .social-links-simple { justify-content: center; }
    .cta-layout { flex-direction: column-reverse; text-align: center; gap: 50px; }
    .cta-content, .cta-image-wrapper { max-width: 100%; }
    .cta-image-wrapper { max-width: 70%; }
    .cta-content .title-accent { margin: 0 auto 25px auto; }
}

@media (max-width: 768px) {
    /* HİZMETLER'DEN GELEN YENİ HERO RESPONSIVE AYARLARI */
    .hero-section {
        /* ESKİSİ BUYDU: */
        /* padding: 60px 0; */

        /* YENİSİ BU (Navbar payı + 60px boşluk): */
        padding: 135px 0 60px 0;
    }

    .hero-content-wrapper {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        min-height: 80px; /* Min yükseklik küçültüldü */
    }

    .hero-section p {
        font-size: 1.05rem;
    }

    /* İLETİŞİM'İN ESKİ RESPONSIVE AYARLARI */
    .container {
        padding: 0 20px;
    }

    .contact-details-section {
        padding: 60px 0 80px 0;
    }

    .map-container {
        height: 350px;
        border-width: 2px;
    }

    .contact-info h3 {
        font-size: 1.6rem;
    }

    .contact-info h4 {
        font-size: 1.15rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .faq-question h2 {
        font-size: 1.3rem;
    }

    .faq-box {
        padding: 10px 20px;
    }

    .answer-text h4 {
        font-size: 1.2rem;
    }

    .answer-text p {
        font-size: 1rem;
    }

    .answer-point {
        gap: 15px; /* Boşluğu 25px'ten 15px'e düşür */
    }

    .answer-number {
        width: 40px; /* Numarayı 45px'ten 40px'e küçült */
        height: 40px;
        font-size: 1rem; /* Yazı tipini de biraz küçült */
    }
}