@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   GENEL AYARLAR & RESET
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text); background: var(--light); overflow-x: hidden; }
h1, h2, h3, h4 { color: var(--dark); overflow-wrap: break-word; word-break: break-word; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; padding: 6px 0; }
.nav-box { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo a { font-size: clamp(20px, 4vw, 22px); font-weight: 900; text-decoration: none; color: var(--dark); letter-spacing: -0.5px; }
.logo span { color: var(--primary); }
.nav-menu-wrapper { display: flex; align-items: center; gap: 30px; }
.nav-menu { display: flex; gap: 20px; list-style: none; }
.nav-menu a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-menu a:hover { color: var(--primary); }
.header-cta-btn { color: white !important; padding: 10px 20px; border-radius: 30px; font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.header-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.menu-toggle { display: none; font-size: 26px; color: var(--dark); cursor: pointer; }

/* ==========================================================================
   HERO BÖLÜMÜ (ANASAYFA)
   ========================================================================== */
.hero { position: relative; background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; color: var(--white); text-align: center; overflow: hidden; min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(30, 41, 59, 0.8); z-index: 2; }
.hero-content { position: relative; z-index: 3; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 10px; color: var(--white); text-shadow: 2px 2px 5px rgba(0,0,0,0.6); }
.hero h2 { font-size: clamp(1rem, 3vw, 1.5rem); font-weight: 300; opacity: 0.9; margin-bottom: 30px; color: var(--white); text-shadow: 1px 1px 3px rgba(0,0,0,0.6); }
.hero-btn { background: var(--primary); color: white; padding: 12px 25px; text-decoration: none; border-radius: 30px; font-weight: 600; font-size: 16px; transition: 0.3s; display: inline-block; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.hero-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: white; }

/* ==========================================================================
   ORTAK SAYFA HEADER BÖLÜMÜ (BOYUTU KISALTILDI) & BREADCRUMB
   ========================================================================== */
/* padding 90px'den 55px'e düşürüldü, daha şık ve az yer kaplıyor */
.unified-page-header { position: relative; background-size: cover; background-position: center; padding: 55px 0; text-align: center; color: #fff; margin-bottom: 40px; overflow: hidden; }
.unified-page-header .header-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
/* VİDEO ARKA PLAN İÇİN GEREKLİ CSS */
.header-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }

.unified-page-header .relative-z { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.unified-page-header .page-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; color: #fff; }
.modern-breadcrumb { display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; list-style: none; background: rgba(255,255,255,0.1); padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(5px); font-size: 13px; margin: 0; line-height: 1.5; }
.modern-breadcrumb a { color: #e2e8f0; text-decoration: none; transition: 0.3s; display: flex; align-items: center; gap: 6px; }
.modern-breadcrumb a:hover { color: var(--primary); }
.modern-breadcrumb .separator { color: rgba(255,255,255,0.4); font-size: 11px; }
.modern-breadcrumb .active { color: var(--white); font-weight: 600; }

/* ==========================================================================
   AVANTAJLAR VE HİZMET KARTLARI (BLOG & HİZMETLER)
   ========================================================================== */
.advantages { margin-top: -40px; position: relative; z-index: 10; padding-bottom: 40px; }
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.adv-card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 10px 25px rgba(0,0,0,0.08); text-align: center; border-bottom: 4px solid var(--primary); }
.adv-card i { font-size: 40px; color: var(--primary); margin-bottom: 15px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }

.dynamic-card { 
    background: #fff; 
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.04); 
    text-decoration: none; 
    color: var(--dark); 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    transition: all 0.4s ease; 
    border: 1px solid rgba(0,0,0,0.05); 
    position: relative;
}
.dynamic-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary); }
.card-img-wrapper { width: 100%; height: 230px; background: #f8f9fa; position: relative; overflow: hidden; }
.card-img-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(30, 41, 59, 0.5) 100%); z-index: 1; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dynamic-card:hover .card-img-wrapper img { transform: scale(1.08); }
.card-content { padding: 25px 20px; display: flex; flex-direction: row; justify-content: space-between; align-items: center; background: #fff; z-index: 2; }
.card-content h2 { font-size: 1.15rem; color: var(--dark); margin: 0; padding-right: 15px; font-weight: 700; transition: color 0.3s; line-height: 1.4; }
.dynamic-card:hover .card-content h2 { color: var(--primary); }
.btn-read-more { width: 42px; height: 42px; border-radius: 50%; background: var(--light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s; flex-shrink: 0; }
.dynamic-card:hover .btn-read-more { background: var(--primary); color: #fff; transform: translateX(3px) rotate(-45deg); }

.blog-date-tag { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    background: var(--primary); 
    color: #fff; 
    padding: 6px 12px; 
    border-radius: 30px; 
    font-size: 12px; 
    font-weight: 600; 
    z-index: 5; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    transition: 0.3s;
}
.dynamic-card:hover .blog-date-tag { transform: scale(1.05); background: var(--dark); }

/* ==========================================================================
   HAKKIMIZDA & İÇ SAYFA DÜZENİ
   ========================================================================== */
.about-modern-section { padding: 80px 0; background: var(--white); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image-main { width: 100%; position: relative; }
.about-image-main img { width: 100%; height: 500px; object-fit: cover; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: block; }
.about-text-content h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; color: var(--dark); font-weight: 700; line-height: 1.2; }
.clamp-text { font-size: 16px; margin-bottom: 30px; color: var(--text); line-height: 1.8; overflow-wrap: break-word; word-break: break-word; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.about-btns { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; }
.btn-read-more-modern { padding: 12px 35px; border: 2px solid var(--primary); color: var(--primary); border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
.btn-read-more-modern:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* İç Sayfa Layout */
.dynamic-page-section { padding: 20px 0 80px; }
.page-layout-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 50px; align-items: start; }
.page-main-content { min-width: 0; }
.page-featured-image img { width: 100%; border-radius: 15px; margin-bottom: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.page-text-area { min-width: 0; }
.page-text-area h2 { font-size: 28px; margin-bottom: 20px; color: var(--dark); font-weight: 700; overflow-wrap: break-word; word-break: break-word; }
.page-text-area .content-body { color: var(--text); line-height: 1.8; font-size: 16px; word-wrap: break-word; overflow-wrap: break-word; word-break: break-all; }

/* Sticky (Yapışkan) Sidebar */
.page-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 30px 25px; margin-bottom: 30px; }
.widget-title { font-size: 18px; border-bottom: 2px solid var(--light); padding-bottom: 10px; margin-bottom: 20px; position: relative; color: var(--dark); font-weight: 700;}
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--primary); }
.widget-menu-list { list-style: none; }
.widget-menu-list li { margin-bottom: 10px; }
.widget-menu-list li a { display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: var(--light); color: var(--text); text-decoration: none; border-radius: 8px; transition: 0.3s; font-weight: 500; }
.widget-menu-list li a:hover, .widget-menu-list li a.active { background: var(--primary); color: #fff; padding-left: 20px; }
.cta-widget-unified { border: none; border-radius: 12px; padding: 35px 25px; text-align: center; color: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%); }
.cta-widget-unified .cta-icon { font-size: 45px; color: #fff; margin-bottom: 20px; }
.cta-widget-unified h3 { color: #fff; font-size: 22px; margin-bottom: 15px; font-weight: 700; }
.cta-widget-unified p { color: rgba(255,255,255,0.9); font-size: 15px; margin-bottom: 25px; line-height: 1.6; }
.btn-cta-unified { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fff; color: var(--primary); padding: 12px 30px; border-radius: 50px; font-weight: 700; text-decoration: none; transition: 0.3s; width: 100%; }
.btn-cta-unified:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); color: var(--primary); }

/* ==========================================================================
   İLETİŞİM SAYFASI ÖZEL TASARIM (Kutular, Form & Harita)
   ========================================================================== */
.contact-card { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px; border: 1px solid var(--border); transition: 0.3s; padding: 40px 20px; background: #fff; }
.contact-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }
.contact-card i { font-size: 40px; color: var(--primary); margin-bottom: 10px; }
.contact-card h3 { color: var(--dark); font-size: 22px; margin: 0; font-weight: 700; }
.contact-card p { color: var(--text); font-size: 15px; margin-bottom: 15px; opacity: 0.8; }
.contact-links-wrap { display: flex; flex-direction: column; gap: 8px; width: 100%; text-align: center; }
.contact-direct-link, .contact-text-link { font-weight: 600; color: var(--dark); font-size: 16px; text-decoration: none; transition: 0.3s; }
.contact-direct-link:hover { color: var(--primary); }

.contact-middle-text { position: relative; padding: 100px 20px; text-align: center; background-size: cover; background-position: center; background-attachment: fixed; }
.contact-blur-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(6px); z-index: 1; }
.contact-middle-text .relative-z { position: relative; z-index: 2; }
.contact-middle-text p { color: #fff; font-size: 1.4rem; font-weight: 400; line-height: 1.8; max-width: 900px; margin: 0 auto; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

.map-form-section { padding: 80px 0; background: var(--light); }
.map-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.map-box { width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); background: #fff; }
.map-box iframe { width: 100%; height: 100%; min-height: 480px; display: block; border: none; }
.form-box { background: #fff; padding: 50px 40px; border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.form-title { font-size: 26px; color: var(--dark); margin-bottom: 5px; font-weight: 700; }
.form-subtitle { font-size: 15px; color: var(--text); margin-bottom: 30px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.modern-input { width: 100%; padding: 16px 20px; margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 10px; background: #f8fafc; color: var(--dark); font-size: 15px; font-family: 'Poppins', sans-serif; transition: all 0.3s; }
.modern-input:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.modern-input::placeholder { color: #94a3b8; }
.btn-modern-submit { width: 100%; background: linear-gradient(45deg, var(--primary), var(--primary-gradient, #fb923c)); color: #fff; padding: 18px; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; font-family: 'Poppins', sans-serif; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2); }
.btn-modern-submit:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(249, 115, 22, 0.3); }


/* ==========================================================================
   SSS (Sıkça Sorulan Sorular) AKORDİYON CSS (Kaybolanları Geri Getirdim)
   ========================================================================== */
.faq-container { margin-top: 30px; }
.faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 15px; overflow: hidden; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.faq-item:hover { border-color: var(--primary); box-shadow: 0 6px 12px rgba(0,0,0,0.05); }
.faq-question { padding: 18px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--dark); font-size: 16px; transition: 0.3s; }
.faq-question i { color: var(--primary); font-size: 14px; transition: transform 0.3s ease; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text); font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-question { color: var(--primary); background: #fffaf5; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { padding: 0 25px 20px; max-height: 500px; }


/* ==========================================================================
   YENİ MODERN FOOTER TASARIMI & GÖRSEL GEÇİŞ EFEKTİ
   ========================================================================== */
.site-footer-modern { background: #1e293b; color: #fff; padding: 80px 0 30px 0; font-family: 'Poppins', sans-serif; position: relative; overflow: hidden; border-top: 5px solid var(--primary); }
.footer-bg-image { position: absolute; top: 0; right: 0; width: 60%; height: 100%; background-size: cover; background-position: center right; background-repeat: no-repeat; opacity: 0.12; z-index: 1; pointer-events: none; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100%); mask-image: linear-gradient(to right, transparent 0%, black 100%); }
.footer-glow-right { position: absolute; bottom: 0; right: 0; width: 900px; height: 900px; background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%); transform: translate(30%, 30%); pointer-events: none; z-index: 2; }
.footer-glow-left { position: absolute; top: 0; left: 0; width: 700px; height: 700px; background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%); transform: translate(-30%, -30%); pointer-events: none; z-index: 2; }
.site-footer-modern .relative-z { position: relative; z-index: 3; }
.footer-grid-4 { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-title { color: #ffffff; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 30px; text-transform: uppercase; position: relative; display: inline-block; }
.footer-title::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 40px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-brand { display: flex; flex-direction: column; justify-content: center; }
.footer-logo img { max-width: 240px; height: auto; margin-bottom: 35px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: #fff; font-size: 16px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 5px; text-decoration: none; transition: all 0.3s ease; background: rgba(0, 0, 0, 0.2); }
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.footer-list-arrow { list-style: none; padding: 0; margin: 0; }
.footer-list-arrow li { margin-bottom: 14px; }
.footer-list-arrow a { color: #cbd5e1; text-decoration: none; font-size: 14px; font-weight: 400; transition: all 0.3s ease; display: inline-flex; align-items: center; }
.footer-list-arrow a::before { content: '\2192'; margin-right: 10px; font-size: 13px; opacity: 0.5; transition: all 0.3s ease; }
.footer-list-arrow a:hover { color: #fff; }
.footer-list-arrow a:hover::before { color: var(--primary); transform: translateX(4px); opacity: 1; }
.contact-block { display: flex; flex-direction: column; }
.mt-4 { margin-top: 25px; }
.contact-label { color: #94a3b8; font-size: 13px; margin-bottom: 5px; }
.contact-highlight { color: #fff; font-size: 22px; font-weight: 700; text-decoration: none; transition: color 0.3s ease; }
.contact-highlight.mail-font { font-size: 16px; font-weight: 500; }
.contact-highlight:hover { color: var(--primary); }
.footer-bottom-bar { display: flex; justify-content: space-between; align-items: center; padding-top: 25px; flex-wrap: wrap; gap: 20px; }
.footer-legal-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: color 0.3s ease; }
.footer-legal-links a:hover { color: #fff; }
.btn-bilgi { background: rgba(255, 255, 255, 0.1); padding: 6px 18px; border-radius: 30px; font-size: 12px !important; font-weight: 600; color: #fff !important; border: 1px solid rgba(255, 255, 255, 0.2); letter-spacing: 0.5px; }
.btn-bilgi:hover { background: var(--primary); border-color: var(--primary); }
.footer-copyright { color: #94a3b8; font-size: 13px; text-align: right; }

/* ==========================================================================
   MOBİL UYUMLULUK (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    .nav-menu-wrapper { position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); flex-direction: column; align-items: stretch; padding: 0; box-shadow: 0 10px 15px rgba(0,0,0,0.1); max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out; }
    .nav-menu-wrapper.active { max-height: 500px; padding: 20px; }
    .nav-menu { flex-direction: column; width: 100%; text-align: center; gap: 0; }
    .nav-menu li { border-bottom: 1px solid var(--light); }
    .nav-menu a { display: block; padding: 12px 0; font-size: 16px; }
    .header-cta-btn { justify-content: center; padding: 6px; font-size: 16px; margin-top: 15px; width: 100%; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-btns { justify-content: center; }
    .page-layout-grid { grid-template-columns: 1fr; }
    .map-form-grid { grid-template-columns: 1fr; }
    .map-box iframe { min-height: 350px; }
    .footer-grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-logo img { max-width: 180px; }
    .footer-bg-image { width: 100%; opacity: 0.05; }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .hero { min-height: 60vh; padding: 80px 15px; }
    .unified-page-header { padding: 40px 0; } /* Mobilde daha da küçüldü */
    .services-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 25px; } 
    .form-row-2 { grid-template-columns: 1fr; }
    .form-box { padding: 30px 20px; }
    .contact-middle-text { padding: 60px 20px; }
    .contact-middle-text p { font-size: 1.1rem; }
    .site-footer-modern { padding: 60px 0 20px 0; }
    .footer-grid-4 { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-title::after { left: 50%; transform: translateX(-50%); } 
    .footer-list-arrow a::before { display: none; }
    .footer-bottom-bar { flex-direction: column; justify-content: center; text-align: center; }
    .footer-legal-links { justify-content: center; }
    .footer-copyright { text-align: center; }
}

/* ============================================================
   SOSYAL MEDYA FOOTER İKONLARI — CSS EKLEMESİ
   Eklenecek yer: assets/css/style.css — .footer-copyright kuralının HEMEN ALTINA
   (yaklaşık 226. satırın altı)
   ============================================================ */

/* Adres metni */
.footer-adres-text {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

/* Sosyal medya ikon grubu */
.footer-sosyal-ikonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* Her ikon için temel stil */
.footer-sosyal-ikon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* --- OUTLINE / PASIF MOD --- */
.footer-sosyal-ikon.ikon-outline {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-sosyal-ikon.ikon-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* --- RENKLİ / AKTİF MOD --- */
.footer-sosyal-ikon.ikon-renkli {
    color: #fff;
    border: 1px solid transparent; /* renk inline style ile geliyor */
}
.footer-sosyal-ikon.ikon-renkli:hover {
    opacity: 0.85;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Instagram için gradient (renkli moddayken) */
.footer-sosyal-ikonlar.sosyal-renkli a[title="Instagram"].ikon-renkli {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: #dc2743 !important;
}

/* Mobil uyum */
@media (max-width: 576px) {
    .footer-sosyal-ikonlar {
        justify-content: center;
    }
}

/* ============================================================
   POPUP — ÖN YÜZ STİLLERİ
   ============================================================ */

/* Arka plan karartması */
.site-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.70);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* Başlangıç: gizli */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Açık hali */
.site-popup-overlay.site-popup-acik {
    opacity: 1;
    visibility: visible;
}

/* Popup kutusu — görsel boyutuna göre otomatik */
.site-popup-box {
    position: relative;
    display: inline-flex;
    max-width: min(92vw, 900px);
    max-height: 90vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    /* Giriş animasyonu */
    transform: scale(0.88);
    transition: transform 0.35s cubic-bezier(0.34, 1.45, 0.64, 1);
}
.site-popup-overlay.site-popup-acik .site-popup-box {
    transform: scale(1);
}

/* Görsel */
.site-popup-img-wrap {
    display: block;
    line-height: 0;
}
.site-popup-img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

/* Hover: link varsa hafif karartma */
a.site-popup-img-wrap:hover .site-popup-img {
    filter: brightness(0.94);
    transition: filter 0.2s;
}

/* Kapat (×) butonu */
.site-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.50);
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s, transform 0.2s;
    line-height: 1;
    padding: 0;
}
.site-popup-close:hover {
    background: rgba(239, 68, 68, 0.90);
    border-color: rgba(239, 68, 68, 0.90);
    transform: scale(1.15);
}

/* Mobil */
@media (max-width: 576px) {
    .site-popup-box {
        max-width: 96vw;
        border-radius: 8px;
    }
    .site-popup-close {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 7px;
        right: 7px;
    }
}