﻿/* GENEL: Taşmayı engelle */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: #f4f6f7;
}

body {
    font-family: 'Roboto', sans-serif !important;
    margin: 0;
    padding: 0;
}

/* NAVBAR ANA */
.navbar-gg {
    width: 100%;
    background: #436e83;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}


/* Sadece masaüstü için NAVBAR boşluğu */
@media (min-width: 993px) {
    body {
        padding-top: 80px;
    }
}


/* KONTEYNER */
.nav-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SOL LOGO BLOĞU */
.nav-left {
    display: flex;
    align-items: center;
    height: 80px;
}

/* LOGO */
.gg-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: 0.25s ease;
}

    .gg-logo:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* MENÜ */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

    .nav-menu li a {
        color: white;
        font-size: 17px;
        font-weight: 500;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .nav-menu li a:hover {
            opacity: 0.75;
        }

/* SAĞ TARAF */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* DİL SEÇİCİ (DESKTOP) */
.lang-select {
    background: white;
    color: #436e83;
    border: none;
    font-size: 15px;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: 0.25s ease;
}

    .lang-select:hover {
        background: #e6f0f4;
    }

/* Desktop / Mobile göstergeleri */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ================= FOOTER ================= */
.footer {
    background: #436e83;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: white;
            opacity: 0.9;
            text-decoration: none;
            transition: 0.25s;
        }

            .footer-col ul li a:hover {
                opacity: 1;
                text-decoration: underline;
            }

.footer-bottom {
    background: #365766;
    color: white;
    text-align: center;
    padding: 14px 0;
    font-size: 14px;
    letter-spacing: 0.4px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: auto;
}

/* HERO */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #436e83, #6a9cb1);
    color: white;
    text-align: center;
}

/* SEKTÖR KUTULARI */
.sector-box {
    width: 220px;
    height: 120px;
    background: white;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #436e83;
    font-size: 22px;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

    .sector-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.2);
    }

/* TOP BUTTON */
#topBtn {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    background: white;
    color: #436e83;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: 0.25s ease;
    z-index: 9999;
}

    #topBtn:hover {
        background: #436e83;
        color: white;
        transform: translateY(-3px);
    }

/* ============== HAMBURGER BUTTON ============== */
.hamburger {
    width: 32px;
    height: 24px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    .hamburger span {
        height: 4px;
        width: 100%;
        background: white;
        border-radius: 4px;
    }

/* ============== MOBILE MENU ============== */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 80px);
    background: #436e83;
    padding: 24px 18px;
    display: none;
    flex-direction: column;
    gap: 25px;
    z-index: 9998;
    overflow-y: visible !important;
}

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .mobile-menu ul li {
            margin-bottom: 16px;
        }

            .mobile-menu ul li a {
                color: white;
                font-size: 20px;
                text-decoration: none;
                display: block;
            }

.mobile-lang {
    margin-top: 15px;
}

.lang-select-mobile {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
}

/* Açıkken */
.mobile-menu.open {
    display: flex;
}

/* ================= REAL RESPONSIVE ================ */

/* 992px ALTI → TABLET */
@media (max-width: 992px) {
    .navbar-gg {
        height: 75px;
        padding: 0 16px;
    }

    .gg-logo {
        height: 42px;
    }

    .hero-section {
        padding: 110px 0;
    }

    .sector-box {
        width: 200px;
        height: 115px;
        font-size: 20px;
    }

    .footer-container {
        gap: 40px;
    }
}

/* 768px ALTI → TELEFON BÜYÜK */
@media (max-width: 768px) {

    .nav-center {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .navbar-gg {
        height: 70px;
    }

    .mobile-menu {
        top: 80px;
        max-height: calc(100vh - 80px);
    }

    .hero-section {
        padding: 95px 20px;
    }

        .hero-section h1 {
            font-size: 34px !important;
            line-height: 1.2;
        }

        .hero-section p {
            font-size: 18px !important;
        }

    .sector-box {
        width: 100%;
        height: 120px;
        font-size: 21px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
        padding: 0 20px;
    }

    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .footer-col ul li a {
        font-size: 15px;
    }
}

.footer-social {
    text-align: center;
}

    .footer-social .social-title {
        text-align: center;
        width: 100%;
    }

    .footer-social .social-links {
        display: flex;
        justify-content: center; /* yatay ortalama */
        gap: 14px;
        margin-top: 12px;
    }

.footer-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
    margin-top: 0;
    letter-spacing: 0.5px;
}


/* Sosyal medya ikonları ana renk ile */
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.25s ease;
    text-decoration: none;
}

    /* Icon rengi — ANA RENK #436e83 */
    .social-icon img {
        width: 22px;
        height: 22px;
        filter: invert(36%) sepia(16%) saturate(900%) hue-rotate(160deg) brightness(92%) contrast(92%);
        /* tam olarak #436e83 tonuna denk gelir */
    }

    /* Hover — ters çevirme */
    .social-icon:hover {
        background: #436e83;
        transform: translateY(-4px);
    }

        .social-icon:hover img {
            filter: brightness(0) invert(1); /* ikon beyaz olur */
        }



/* 576px ALTI → KÜÇÜK TELEFON */
@media (max-width: 576px) {

    .navbar-gg {
        height: 65px;
    }

    .gg-logo {
        height: 36px;
    }

    .mobile-menu {
        top: 65px;
        max-height: calc(100vh - 65px);
    }

    .hero-section {
        padding: 85px 16px;
    }

        .hero-section h1 {
            font-size: 27px !important;
        }

        .hero-section p {
            font-size: 16px !important;
        }

    .sector-box {
        height: 100px;
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 17px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 10px 0;
    }

    #topBtn {
        width: 42px;
        height: 42px;
        bottom: 14px;
        right: 14px;
        font-size: 20px;
    }
}



/* ================= MAIN SLIDER ================= */
#main-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px); /* navbar 80px ise */
    overflow: hidden;
    background: #000;
}

    /* Her slide tam ekran */
    #main-slider .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
        overflow: hidden;
        z-index: 0; /* pasif slide'lar altta */
    }

        #main-slider .slide.active {
            opacity: 1;
            z-index: 1; /* aktif slide üstte */
        }

            /* Aktif slayttaki video görünsün */
            #main-slider .slide.active .slide-video {
                opacity: 1;
            }

/* VIDEO */
.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 1920x1080 FULL-COVER */
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0; /* en altta: video */
}

/* SLIDE KARARTMA FİLTRESİ (YAZI İÇİN) */
#main-slider .slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60); /* siyah yarı transparan */
    z-index: 1; /* videonun üstünde, yazının altında */
}

/* YAZI BLOĞU */
.slide-content {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2; /* filtrenin de üstünde */
}

    .slide-content h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 18px;
        text-shadow: 0 4px 16px rgba(0,0,0,0.6);
    }

    .slide-content p {
        font-size: 22px;
        font-weight: 400;
        text-shadow: 0 4px 14px rgba(0,0,0,0.5);
    }

/* ===== SLIDER DOTS ===== */
#slider-dots {
    position: relative;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    #slider-dots .dot {
        width: 12px;
        height: 12px;
        background: #d4d4d4;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.25s ease;
    }

        #slider-dots .dot.active {
            background: #436e83;
            transform: scale(1.4);
        }



/* ================= KART ALANI ================= */
#sektorler {
    padding: 20px 0;
    background: #f4f6f7; /* açık gri ama çok soft */
    font-family: 'Roboto', sans-serif;
}

    #sektorler h2 {
        font-size: 42px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 60px;
        color: #436e83; /* ANA RENK */
    }

/* Kart row */
.sektor-row {
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ========== KART ========== */
.sektor-card {
    width: 430px;
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    transition: 0.25s ease;
}

    .sektor-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    }

    /* İKON */
    .sektor-card i {
        font-size: 56px;
        color: #436e83; /* ANA RENK */
        margin-bottom: 2px;
    }

    /* Başlık */
    .sektor-card h3 {
        font-size: 24px;
        font-weight: 700;
        color: #436e83; /* ANA RENK */
        margin-bottom: 2px;
    }

    /* Metin */
    .sektor-card p {
        font-size: 17px;
        color: #333;
        line-height: 1.58;
        margin-bottom: 18px;
    }

/* ========== BUTON ========== */
.sektor-btn {
    background: #436e83; /* ANA RENK */
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
}

    .sektor-btn:hover {
        background: #355767; /* ANA RENK koyusu */
    }

/* RESPONSIVE */
@media (max-width: 992px) {
    .sektor-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .sektor-card {
        width: 100%;
        max-width: 520px;
        margin: auto;
    }
}


/* DESKTOP DROPDOWN */
.dropdown {
    position: relative;
}

/* Menü */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 180px;
    border-radius: 10px;
    padding: 10px 0;
    display: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    z-index: 9999;
    list-style: none; /* 🔹 Noktaları kapat */
    margin: 0; /* 🔹 Varsayılan boşluğu sıfırla */
}

    .dropdown-menu li {
        list-style: none; /* ekstra garanti */
    }

        /* Item */
        .dropdown-menu li a {
            color: #436e83; /* normal yazı */
            padding: 10px 18px;
            font-size: 15px;
            display: block;
            text-decoration: none;
        }

            /* 🔥 İstediğin hover efekti */
            .dropdown-menu li a:hover {
                background: #436e83; /* ANA RENK */
                color: #ffffff !important; /* yazı beyaz */
            }

/* Hover açılmasını tamamen kapat */
.dropdown:hover .dropdown-menu {
    display: none !important;
}

/* Sadece JS ile açılacak */
.dropdown.open .dropdown-menu {
    display: block !important;
}





/* MOBİL DROP-DOWN */
.mobile-dropdown {
    width: 100%;
}

/* Ana başlık — KAYMA OLMASIN diye flex VEYA block fark etmez */
.mobile-dropdown-toggle {
    color: white;
    font-size: 20px;
    display: flex; /* 🔥 daha iyi hizalama */
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    cursor: pointer;
    user-select: none;
}

/* Açılan alt menü */
.mobile-dropdown-menu {
    display: none;
    background: #436e83; /* senin ana rengin */
    padding: 8px 18px; /* 🔥 SAĞ-SOL eşit → kayma sıfır */
    margin: 0; /* güvenlik */
}

/* Açıldığında görünür */
.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}

/* Alt itemler */
.mobile-dropdown-menu a {
    color: #ffffff;
    font-size: 18px;
   margin-top: 15px;
    text-decoration: none;
    display: block;
}

    /* Hover */
    .mobile-dropdown-menu a:hover {
        background: #5c8da3;
        color: #fff;
    }

/* Custom Language Dropdown */
.lang-dropdown {
    position: relative;
    background: white;
    color: #436e83;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
}

    .lang-dropdown .lang-current {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        font-weight: 600;
    }

        .lang-dropdown .lang-current .fi {
            font-size: 18px;
        }

    .lang-dropdown .lang-list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        display: none;
        z-index: 99999;
    }

    .lang-dropdown.open .lang-list {
        display: block;
    }

    .lang-dropdown .lang-list li {
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #436e83;
        font-size: 15px;
    }

        .lang-dropdown .lang-list li:hover {
            background: #436e83;
            color: white;
        }

        .lang-dropdown .lang-list li .fi {
            font-size: 18px;
        }

/* MOBILE LANGUAGE DROPDOWN */
.lang-dropdown-mobile {
    background: white;
    color: #436e83;
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    /* 🔥 Küçültülmüş genişlik + ortalanma */
    width: 160px;
    margin: 0 auto;
    position: relative;
    user-select: none;
}

.lang-current-mobile {
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 Ortalama */
    gap: 6px;
    font-weight: 700;
    font-size: 16px; /* 🔥 Küçültüldü */
}

.lang-list-mobile {
    list-style: none;
    padding: 4px 0;
    margin: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%; /* genişlik dropdown ile aynı */
    display: none;
    z-index: 99999;
}

.lang-dropdown-mobile.open .lang-list-mobile {
    display: block;
}

.lang-list-mobile li {
    padding: 8px 10px; /* 🔥 daha kompakt */
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 Ortalandı */
    gap: 6px;
    color: #436e83;
    font-size: 15px; /* 🔥 küçültüldü */
}

    .lang-list-mobile li:hover {
        background: #436e83;
        color: white;
    }

.lang-list-mobile .fi {
    font-size: 16px; /* 🔥 Bayrak boyutu küçültüldü */
}


/* ================= EMT SAYFASI ORTA BLOK ================= */

.emt-page .emt-section {
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
    background: #f4f6f7;
}

/* Mobilde de padding aynen 80 kalsın */
@media (max-width: 992px) {
    .emt-page .emt-section {
        padding-top: 80px;
        padding-right: 20px;
        padding-bottom: 40px;
        padding-left: 20px;
    }

    .emt-image {
        display: none;
    }
}



.emt-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Sol taraf: metin */
.emt-text {
    flex: 1;
    font-family: "Roboto", sans-serif;
}

    .emt-text h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: 1px;
        color: #436e83;
    }

.emt-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.60);
    margin-bottom: 20px;
}

.emt-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #767676;
}

.emt-image {
    flex: 1.3;
    display: flex;
    justify-content: center;
}

.emt-image-link {
    display: inline-block;
    cursor: pointer;
}

    .emt-image-link img {
        width: 100%;
        max-width: 600px;
        height: auto;
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
        object-fit: cover;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .emt-image-link:hover img {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65);
    }

    .emt-image-link:active img {
        transform: translateY(-2px) scale(1.01);
    }




/* MOBİL / TABLET */
@media (max-width: 992px) {

    /* DÜZENİ BOZMA, SADECE YAZIYI KÜÇÜLT + RESMİ GİZLE */
    .emt-text h1 {
        font-size: 28px;
    }

    .emt-subtitle {
        font-size: 18px;
    }

    .emt-text p {
        font-size: 15px;
    }

    /* MOBİLDE RESİM GÖRÜNMEYECEK */
    .emt-image {
        display: none;
    }
}

/* EMT sayfasında footer üst boşluk olmasın */
.emt-page .footer {
    margin-top: 0 !important;
}


/* =================== GENEL RENK & FONT =================== */
:root {
    --gg-primary: #436e83; /* ANA RENK */
    --gg-primary-dark: #354f61; /* Hover / koyu ton */
    --gg-bg-soft: #f4f6f7;
    --gg-text-main: #0b1720;
    --gg-text-muted: #4b5563;
    --gg-text-soft: #6b7280;
    --gg-border-soft: #d1d5db;
}

body.emt-page {
    font-family: "Roboto", sans-serif;
}

/* ================== İLETİŞİM – ORTA BLOK ================== */

.emt-page .contact-section {
    padding-top: 80px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
    background: var(--gg-bg-soft);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* SOL TARAF – METİN VE BİLGİ KARTLARI */

.contact-left {
    flex: 1.2;

}

    .contact-left h1 {
        font-size: 36px;
        font-weight: 800;
        margin: 0 0 10px; /* üst 0, sağ 0, alt 10px */
        color: var(--gg-primary);
    }


    .contact-left .emt-subtitle {
        font-size: 20px;
        margin-bottom: 16px;
        color: var(--gg-primary);
    }

    .contact-left p {
        font-size: 15px;
        line-height: 1.7;
        color: var(--gg-text-muted);
        margin-bottom: 14px;
    }

/* BİLGİ KART GRID */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.contact-card {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* TÜM ICONLAR: ANA RENK + BEYAZ */

.contact-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gg-primary);
    color: #ffffff;
    flex-shrink: 0;
}

    .contact-card-icon i {
        font-size: 16px;
    }

.contact-card-body h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gg-text-main);
}

.contact-card-body p {
    font-size: 14px;
    margin: 0;
    color: var(--gg-text-muted);
}

.contact-card-body a {
    color: var(--gg-primary);
    text-decoration: none;
    font-weight: 500;
}

    .contact-card-body a:hover {
        text-decoration: underline;
    }

.contact-note {
    font-size: 12px;
    color: #9ca3af;
}

/* SAĞ TARAF – FORM KARTI */

.contact-right {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.contact-form-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

    .contact-form-card h3 {
        font-size: 16px;
        font-weight: 600;
        margin: 0 0 4px;
        color: var(--gg-text-main);
    }

.contact-form-text {
    font-size: 13px;
    color: var(--gg-text-soft);
    margin: 0 0 14px;
}

/* FORM LAYOUT */

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .form-group label {
        font-size: 13px;
        color: var(--gg-text-main);
    }

    .form-group input,
    .form-group textarea {
        border-radius: 8px;
        border: 1px solid var(--gg-border-soft);
        padding: 8px 10px;
        font-size: 14px;
        outline: none;
        background: #f9fafb;
        color: var(--gg-text-main);
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--gg-primary);
            box-shadow: 0 0 0 1px rgba(67, 110, 131, 0.18);
            background: #ffffff;
        }

    .form-group textarea {
        resize: vertical;
    }

/* KVKK onay satırı */

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    color: var(--gg-text-soft);
}

.form-consent input[type="checkbox"] {
    margin-top: 3px;
}

/* BUTON – ANA RENK + BEYAZ */

.contact-submit-btn {
    margin-top: 4px;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: var(--gg-primary);
    color: #ffffff;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

    .contact-submit-btn:hover {
        background: var(--gg-primary-dark);
        box-shadow: 0 10px 24px rgba(67, 110, 131, 0.45);
        transform: translateY(-1px);
    }

    .contact-submit-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }

/* ===== TAM GENİŞLİK HARİTA (ALT BLOK) ===== */

.contact-map-full {
    margin-top: 36px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-map-wrapper {
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: #e5e7eb;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.contact-map-note {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 6px;
}

/* =============== MOBİL =============== */

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-left h1 {
        font-size: 28px;
        margin-top: 20px;
    }

    .contact-left .emt-subtitle {
        font-size: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-map-wrapper {
        height: 260px;
    }
}

.contact-success {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(67, 110, 131, 0.08);
    border: 1px solid rgba(67, 110, 131, 0.35);
    color: #27404f;
    font-size: 13px;
}

.contact-error {
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fee2e2;
    border: 1px solid #f87171;
    color: #991b1b;
    font-size: 13px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}


/* ============ HABERLER & DUYURULAR ============ */

.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.news-card {
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* SOL BLOK: METİN */
.news-card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-date {
    font-size: 12px;
    color: #9ca3af;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gg-text-main);
    margin: 0;
}

.news-summary {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gg-text-muted);
    margin: 0;
}

.news-link {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gg-primary);
    text-decoration: none;
}

    .news-link:hover {
        text-decoration: underline;
    }

/* SAĞ BLOK: KÜÇÜK RESİM */
.news-card-thumb {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center; /* dikey ortalı */
    justify-content: center; /* yatay ortalı */
    align-self: center; /* kart içinde ortalı */
    position: relative;
    overflow: visible; /* büyürken dışarı taşsın */
}

    .news-card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px; /* radius img’de */
    }

/* SADECE MASAÜSTÜ: hover'da DIŞARI 3x büyüsün */
@media (hover: hover) and (pointer: fine) {
    .news-card-thumb img {
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        transform-origin: center center;
    }

    .news-card-thumb:hover img {
        transform: scale(3);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    }
}

/* MOBİL – ALTTA RESİM, ZOOM YOK */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column-reverse;
    }

    .news-card-thumb {
        width: 100%;
        height: 160px;
        align-self: stretch;
    }

    .news-title {
        font-size: 15px;
    }

    .news-summary {
        font-size: 13px;
    }

    /* mobilde büyüme kapalı */
    .news-card-thumb img {
        transform: none !important;
        box-shadow: none !important;
        transition: none !important;
    }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    background: rgba(7, 10, 20, 0.96);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 14px;
}

.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner-text {
    flex: 1 1 260px;
    margin: 0;
    line-height: 1.5;
}

/* Link – ana renk */
.cookie-banner-link {
    font-size: 13px;
    text-decoration: underline;
    color: white;
}

    .cookie-banner-link:hover {
        text-decoration: none;
        color: #2f4f5b; /* biraz koyu ton */
    }

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

/* PRIMARY BUTON – ana renk */
.cookie-banner-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background: #436e83;
    color: #ffffff;
    white-space: nowrap;
}

    .cookie-banner-btn:hover {
        background: #2f4f5b;
    }

/* SECONDARY (Reddet) – şeffaf ama ana renk vurgulu */
.cookie-banner-btn-secondary {
    background: transparent;
    border: 1px solid #436e83;
    color: white;
}

    .cookie-banner-btn-secondary:hover {
        background: rgba(67, 110, 131, 0.12); /* #436e83 alpha */
        border-color: #2f4f5b;
        color: #436e83;
    }

/* Mobil uyum */
/* Mevcut kodların kalsın, sadece bu mobile kısmını güncelle */

/* Mobil uyum */
@media (max-width: 600px) {
    .cookie-banner-inner {
        padding: 14px 16px 18px;
        /* BURAYA flex-direction vs. KOYMUYORUZ */
    }

    .cookie-banner-text {
        font-size: 13px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;   /* BUTONLAR ORTADA */
    }

    .cookie-banner-btn {
        font-size: 13px;
    }
}
