/* ============================
   GLOBAL & RESET
============================ */
* {
    box-sizing: border-box; /* ÖNEMLİ: Paddinglerin genişliği taşırmasını engeller */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f6f8;
    color: #222;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased; /* Yazıların daha pürüzsüz görünmesini sağlar */
}

img {
    max-width: 100%; /* Görsellerin taşmasını global olarak engeller */
    display: block;
}

/* ============================
   HEADER
============================ */
.header-wrap {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 46px;
    width: auto; /* Orantıyı koruması için */
}

.navbar {
    display: flex;
    gap: 28px;
}

.navbar a {
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: color .2s;
}

.navbar a:hover {
    color: #003366;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #003366;
    padding: 5px;
}

/* ============================
   ARTICLE CONTAINER
============================ */
.article-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.article-container h1 {
    font-size: 34px;
    color: #003366;
    margin-bottom: 10px;
    line-height: 1.2;
}

.article-container .lead {
    font-size: 20px;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.article-container img.hero {
    width: 100%;
    border-radius: 12px;
    margin: 25px 0;
    height: auto;
    object-fit: cover;
}

/* ============================
   GALLERY
============================ */
.gallery {
    margin-top: 40px;
}

.gallery h2 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 180px;
}

/* ============================
   VIDEO
============================ */
.video-box {
    margin-top: 40px;
}

.video-box h2 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 15px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================
   SHARE BUTTONS
============================ */
.share {
    margin-top: 40px;
}

.share a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    margin-bottom: 10px; /* Mobilde alt alta gelirse yapışmasın diye */
}

.share a:hover {
    opacity: 0.85;
}

.fb { background: #1877f2; }
.tw { background: #000; }
.li { background: #0a66c2; }

/* ============================
   FOOTER (SEÇENEK 1 - STANDART)
   Not: Eğer Alura Footer kullanacaksanız bu bloğu silebilirsiniz.
============================ */
.ft-wrapper {
    width: 100%;
    margin: 60px 0;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.ft-card {
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px 32px;
}

.ft-sec h4 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #004d40;
    text-transform: uppercase;
}

.ft-sec ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ft-sec li {
    margin: 6px 0;
}

.ft-sec a {
    text-decoration: none;
    color: #3b5b6d;
    font-size: 15px;
    display: block;
}

.ft-sec a:hover {
    text-decoration: underline;
    color: #007bff;
}

/* Category Widget (Footer içinde kullanılıyor olabilir) */
.cat-wrap {
    position: relative;
    display: inline-block;
}

.cat-wrap img {
    width: 160px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.cat-wrap span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    opacity: 0;
    transition: .25s;
}

.cat-wrap:hover span {
    opacity: 1;
}

/* ============================
   FOOTER (SEÇENEK 2 - ALURA SAFE)
   Düzeltilmiş sosyal medya ikonları (yan yana)
============================ */
.alura-footer {
    margin-top: 70px;
    background: #fff;
    padding: 70px 25px 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 190px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
}

/* ============================
   FOOTER (SEÇENEK 2 - ALURA SAFE)
   Düzeltilmiş sosyal medya ikonları (yan yana)
============================ */
.alura-footer {
    margin-top: 70px;
    background: #fff;
    padding: 70px 25px 40px;
    border-top: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.04);
}

.footer-top {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 190px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 320px;
}

/* ✅ SOSYAL MEDYA İKONLARI – YAN YANA DÜZELTİLDİ */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #003366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 İKONUN YUVARLAK İÇİNE TAM OTURMASINI SAĞLAYAN KRİTİK SATIRLAR */
.footer-social a {
    width: 40px;
    height: 40px;
    padding: 0 !important;              /* daireyi bozan boşlukları sıfırlar */
    line-height: 40px !important;       /* daireyi gerçek kare yapar */
    vertical-align: middle !important;  /* yukarı kaymayı bitirir */
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.footer-social a i {
    line-height: 1 !important;          /* ikonun kendi asimetrisini sıfırlar */
    font-size: 18px;
    position: relative;
    top: 1px;                            /* çok hafif aşağı */
    left: 9px;                             /* sağ-sol kaymayı kaldırdım */
}

.footer-social a:hover {
    background: #001f3f;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    color: #777;
    font-size: 14px;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 900px) {
    .navbar { display: none; }
    .menu-toggle { display: block; }

/* Mobil menü açıkken görünür olması */
.navbar.open {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    padding: 20px;
    margin-top: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


    .article-container {
        padding: 25px;
        margin: 20px auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer Tablet */
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

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

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 14px auto;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    /* Mobilde sosyal ikonlar ortalansın */
    .footer-social {
        justify-content: center;
    }
}

/* === FOOTER LİNK & BAŞLIK DÜZENLEMELERİ === */

.footer-top > div a {
    display: block;
    margin-bottom: 8px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-top > div a:hover {
    color: #003366;
    padding-left: 5px;
}

.footer-top > div h4,
.footer-top > div strong,
.footer-top > div b {
    display: block;
    margin-bottom: 20px;
    color: #003366;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ BOX */
.faq-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #003366;
}

.faq-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-item {
    margin-bottom: 28px;
}

.faq-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #003366;
}

.faq-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item ul {
    margin: 8px 0 0 20px;
}

.faq-item ul li {
    margin-bottom: 4px;
}
/* ---------- COMPACT FAQ ---------- */
.faq-box.compact {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    margin-top: 25px;
}

.faq-box.compact .faq-item {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.faq-box.compact .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-box.compact h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #003366;
}

.faq-box.compact p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #444;
}

/* ============================
   CTA BOX – ULTRA PROFESSIONAL
============================ */
.cta-box {
    background: #f7faff;
    border-left: 6px solid #003366;
    padding: 30px 35px;
    border-radius: 14px;
    margin: 45px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.cta-box h2 {
    margin-top: 0;
    font-size: 24px;
    color: #003366;
}

.cta-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    background: #003366;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
}

.cta-btn:hover {
    background: #001f33;
    transform: translateY(-2px);
}

/* Color variations */
.cta-box.blue { border-left-color: #0077ff; }
.cta-box.dark { border-left-color: #2b2b2b; background:#f2f2f2; }
.cta-box.green { border-left-color: #0a8f38; }

.insta-section {
    margin: 50px 0;
}

.insta-section h2 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 20px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.insta-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s;
}

.insta-grid img:hover {
    opacity: .85;
    transform: scale(1.04);
}

/* POPUP */
.insta-popup {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.insta-popup img {
    max-width: 90%;
    max-height: 75vh;
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.insta-popup .insta-btn {
    margin-top: 18px;
    background: #E1306C;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.insta-popup .insta-btn:hover {
    background: #b62454;
}

.insta-popup .close-popup {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 38px;
    color: white;
    cursor: pointer;
}

/* ===============================
   MWS GRID
=============================== */
.mws-section{
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;
}

.mws-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* ===============================
   MWS CARD (WITH DESCRIPTION)
=============================== */
.mws-card{
    display:block;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    color:#111;
    box-shadow:0 12px 32px rgba(0,0,0,.12);
    transition:transform .3s ease, box-shadow .3s ease;
}

.mws-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 44px rgba(0,0,0,.18);
}

.mws-img{
    height:220px;
    overflow:hidden;
}

.mws-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.mws-card:hover .mws-img img{
    transform:scale(1.07);
}

.mws-content{
    padding:22px 24px 26px;
}

.mws-content h3{
    font-size:17px;
    font-weight:600;
    margin-bottom:10px;
}

.mws-content p{
    font-size:14px;
    line-height:1.6;
    color:#555;
    margin-bottom:16px;
}

.mws-link{
    font-size:14px;
    font-weight:600;
    color:#16a085;
}


.navbar{
    display:flex;
    gap:25px;
    align-items:center;
}

.navbar a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    position:relative;
}

/* MEGA MENU */
.mega{
    position:relative;
}

.mega-menu{
    position:absolute;
    top:100%;
    left:0;
    width:520px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    display:flex;
    padding:25px;
    gap:25px;

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.25s;
    z-index:999;
}

/* SHOW */
.mega:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* LEFT */
.mega-left{
    width:40%;
}
.mega-left h3{
    margin:0 0 10px;
}
.mega-left p{
    font-size:13px;
    color:#666;
}

/* RIGHT GRID */
.mega-right{
    width:60%;
    display:flex;
    flex-direction:column;
    gap:10px;
}

/* ITEM */
.mega-item{
    display:block;
    padding:12px;
    border-radius:8px;
    text-decoration:none;
    color:#333;
    transition:.2s;
}

.mega-item span{
    display:block;
    font-weight:600;
}

.mega-item small{
    color:#888;
    font-size:12px;
}

/* HOVER */
.mega-item:hover{
    background:#f3f6f8;
}

/* HIGHLIGHT */
.mega-item.highlight{
    background:#16a085;
    color:#fff;
}

.mega-item.highlight small{
    color:#dffaf4;
}

/* IMAGE ITEMS */
.mega-item.img{
    display:flex;
    align-items:center;
    gap:12px;
}

/* IMAGE */
.mega-item.img img{
    width:55px;
    height:55px;
    object-fit:cover;
    border-radius:6px;
    flex-shrink:0;
}

/* TEXT BLOCK */
.mega-item.img div{
    display:flex;
    flex-direction:column;
}

/* HOVER EFFECT */
.mega-item.img:hover img{
    transform:scale(1.05);
    transition:.2s;
}

/* LANGUAGE DROPDOWN */
.lang-dropdown{
    position:relative;
    margin-left:10px;
    font-weight:600;
    cursor:pointer;
}

.lang-current{
    padding:6px 10px;
    border-radius:6px;
    background:#f3f6f8;
}

.lang-menu{
    position:absolute;
    top:120%;
    right:0;
    background:#fff;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    overflow:hidden;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.2s;
}

/* SHOW */
.lang-dropdown:hover .lang-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.lang-menu a{
    display:block;
    padding:10px 14px;
    text-decoration:none;
    color:#333;
}

.lang-menu a:hover{
    background:#f5f5f5;
}

.card{
    display:block;
    text-decoration:none;
    color:inherit;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.25s;
}

/* HOVER EFFECT */
.card:hover{
    transform:translateY(-6px) scale(1.02);
    box-shadow:0 25px 50px rgba(0,0,0,.2);
}

/* IMAGE ZOOM */
.card img{
    width:100%;
    height:200px;
    object-fit:cover;
    transition:.3s;
}

.card:hover img{
    transform:scale(1.05);
}

/* TEXT */
.card-content{
    padding:18px;
}

/* ===============================
   WHY + PREMIUM (FINAL FIXED)
=============================== */

/* SECTION SPACING */
.why-pro,
.premium-block{
    margin:70px auto;
}

/* GRID */
.why-grid,
.premium-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:stretch; /* 🔥 EN KRİTİK */
}

/* IMAGE */
.why-image,
.premium-image{
    display:flex;
}

.why-image img,
.premium-image img{
    width:100%;
    height:100%;              /* 🔥 EŞİT YÜKSEKLİK */
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

/* CONTENT */
.why-content,
.premium-content{
    display:flex;
    flex-direction:column;
    justify-content:center;  /* 🔥 DİKEY ORTALA */
}

/* HEADINGS */
.why-content h2{
    font-size:30px;
    color:#003366;
    margin-bottom:12px;
}

.premium-content h2{
    font-size:28px;
    color:#003366;
    margin-bottom:12px;
}

/* TEXT */
.why-lead,
.premium-lead{
    font-size:16px;
    color:#555;
    margin-bottom:20px;
    line-height:1.6;
}

/* WHY LIST */
.why-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.why-item{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.why-item span{
    color:#16a085;
    font-size:18px;
    margin-top:2px;
}

.why-item strong{
    font-size:15px;
    color:#111;
}

.why-item p{
    margin:2px 0 0;
    font-size:13px;
    color:#666;
}

/* PREMIUM LIST */
.premium-list{
    margin:15px 0 20px;
    padding-left:18px;
}

.premium-list li{
    margin-bottom:8px;
    font-size:14px;
    color:#333;
}

.premium-desc{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

/* BUTTONS */
.why-btn,
.premium-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 22px;
    background:#003366;
    color:#fff;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
}

.why-btn:hover,
.premium-btn:hover{
    background:#001f33;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:900px){

    .why-grid,
    .premium-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .why-image img,
    .premium-image img{
        height:auto;
    }

    .why-content,
    .premium-content{
        justify-content:flex-start;
    }
}

.trust-bar{
    margin-top:30px;
}

@media(max-width:900px){
    .section .text-block > div{
        grid-template-columns:1fr !important;
    }
}

.trust-container{
    background:#fff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    display:flex;
    flex-wrap:wrap;
    justify-content:space-around;
    text-align:center;
    gap:25px;
}

.trust-item{
    opacity:0;
    transform:translateY(20px);
    transition:all .6s ease;
    font-size:15px;
}

.trust-item strong{
    font-size:20px;
}

.trust-item span{
    font-size:13px;
    color:#666;
}

/* aktif olunca */
.trust-item.show{
    opacity:1;
    transform:translateY(0);
}

.trust-item strong{
    font-size:22px;
    font-weight:600;
    color:#002b45;
}

.navbar {
    display: none;
}

.navbar.active {
    display: flex;
    flex-direction: column;
}

/* ===============================
   RESPONSIVE
=============================== */
@media(max-width:900px){
    .mws-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

.mws-related-card img{
    display:block !important;
    width:100% !important;
    height:180px !important;
    object-fit:cover !important;
}

@media(max-width:900px){
    .header-logo img{
        height:60px; /* 32 → 48 yaptık */
    }
}