/* ===============================
   ARALIS MODERN FOOTER (NAVY & ORANGE EDITION)
   =============================== */

:root {
    --footer-bg-dark: #000b1a; /* Çok koyu lacivert */
    --footer-bg-light: #00152e; /* Açık lacivert */
    --footer-accent: #FF8C3E; /* Aralis Turuncusu */
    --footer-accent-hover: #FF5F00; /* Koyu Turuncu */
    --footer-text-main: #ffffff;
    --footer-text-soft: #cbd5e1;
    --footer-text-muted: #94a3b8;
}

.aralis-footer-modern {
    background: linear-gradient(180deg, var(--footer-bg-light), var(--footer-bg-dark));
    color: var(--footer-text-soft);
    font-family: 'Poppins', sans-serif;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.aralis-footer-modern .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   ÜST ÇİZGİ GLOW EFEKTİ (Turuncu)
   ===================================================== */
.aralis-footer-modern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 140, 62, 0.6), /* Turuncu Glow */
        transparent
    );
    z-index: 3;
}

/* =====================================================
   ARALIS WATERMARK (Arkaplan İmzası)
   ===================================================== */
.aralis-footer-modern::before {
    content: "ARALİS";
    position: absolute;
    right: 5%;
    bottom: 8%;
    font-size: 180px;
    font-weight: 900;
    letter-spacing: 14px;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   GRID YAPISI & GİRİŞ ANİMASYONU
   ===================================================== */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1.2fr 1.2fr;
    gap: 60px;
    padding: 95px 0 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Animasyon */
.footer-top-grid > div {
    opacity: 0;
    transform: translateY(22px);
    animation: footerFadeUp 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}
.footer-top-grid > div:nth-child(2) { animation-delay: .12s; }
.footer-top-grid > div:nth-child(3) { animation-delay: .24s; }
.footer-top-grid > div:nth-child(4) { animation-delay: .36s; }

@keyframes footerFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   LOGO ALANI
   ===================================================== */
.footer-brand { padding-top: 20px; }

.footer-text-logo {
    margin-bottom: 26px;
    line-height: 1.05;
    padding-top: 6px;
    text-transform: uppercase;
}

.footer-text-logo .logo-solid {
    display: block;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(255,255,255,0.85);
    position: relative;
    top: 8px;
}

.footer-text-logo .logo-outline {
    display: block;
    margin-top: 6px;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 1.8px rgba(255,255,255,0.75);
    position: relative;
    top: 10px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--footer-text-muted);
    max-width: 380px;
}

/* =====================================================
   SOSYAL MEDYA
   ===================================================== */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s cubic-bezier(.22,.61,.36,1);
    backdrop-filter: blur(8px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1), 0 6px 20px rgba(0,0,0,0.25);
    text-decoration: none !important;
    border: none !important;
}

.footer-social a:hover { transform: translateY(-6px); }

/* Marka Renkleri */
.footer-social a.linkedin:hover { background: #0A66C2; }
.footer-social a.instagram:hover { background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf); }
.footer-social a.whatsapp:hover { background: #25D366; }

/* Genel Hover (Eğer class yoksa) */
.footer-social a:not(.linkedin):not(.instagram):not(.whatsapp):hover {
    background: var(--footer-accent);
}

/* =====================================================
   KOLON BAŞLIKLARI & LİSTELER
   ===================================================== */
.footer-col { padding-top: 20px; }

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-list li i {
    font-size: 12px;
    color: var(--footer-accent); /* Turuncu Oklar */
    min-width: 14px;
}

.footer-list li a {
    color: var(--footer-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: .3s;
}

.footer-list li a:hover {
    color: var(--footer-accent);
    padding-left: 4px;
}

/* =====================================================
   İLETİŞİM KARTLARI (Contact)
   ===================================================== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 16px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    margin: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
    font-size: 14px;
    line-height: 1.5;
    color: var(--footer-text-soft);
}

.footer-contact p:hover {
    background: rgba(255, 140, 62, 0.1); /* Turuncu Tint */
    border-color: rgba(255, 140, 62, 0.3);
    transform: translateX(6px);
}

.footer-contact i {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 140, 62, 0.15); /* İkon Arkaplanı */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-accent);
    font-size: 16px;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

/* =====================================================
   ŞİRKETLER PANELİ (Footer Companies)
   ===================================================== */
.footer-companies-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 26px;
    backdrop-filter: blur(8px);
    width: 100%;
    margin-top: 34px;
}

.footer-companies-panel h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.footer-companies-panel h4 i { color: var(--footer-accent); }

.companies-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.companies-panel-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Baş Harf Rozeti */
.company-initial {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(255, 140, 62, 0.15);
    border: 1px solid rgba(255, 140, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--footer-accent);
    flex-shrink: 0;
    transition: 0.3s;
}

.companies-panel-list li a {
    font-size: 14px;
    color: var(--footer-text-soft);
    text-decoration: none;
    transition: all .3s ease;
}

/* Hover Effects */
.companies-panel-list li:hover .company-initial {
    background: var(--footer-accent);
    color: #fff;
}
.companies-panel-list li:hover a {
    color: var(--footer-accent);
    transform: translateX(2px);
}

/* =====================================================
   NEWSLETTER (Bülten)
   ===================================================== */
.footer-newsletter { margin-top: 28px; }

.footer-newsletter h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.footer-newsletter h4 i { color: var(--footer-accent); margin-right: 8px; }

.newsletter-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 6px;
    transition: all .35s;
}

.newsletter-form:focus-within {
    border-color: var(--footer-accent);
    background: rgba(255, 140, 62, 0.05);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    padding: 10px 12px;
}
.newsletter-form input::placeholder { color: #64748b; }

.newsletter-form button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--footer-accent);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s;
}

.newsletter-form button:hover {
    background: var(--footer-accent-hover);
    transform: translateX(4px);
    box-shadow: 0 10px 20px rgba(255, 140, 62, 0.3);
}

/* =====================================================
   ALT BAR (Copyright & Links)
   ===================================================== */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(0,0,0,0.2));
    padding: 18px 0;
    margin-top: 25px;
    position: relative;
    z-index: 2;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-inner span {
    font-size: 12px;
    color: var(--footer-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-inner span::before {
    content: "©";
    color: var(--footer-accent);
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    color: var(--footer-text-soft);
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all .3s;
}

.footer-links a:hover {
    color: var(--footer-accent);
    background: rgba(255, 140, 62, 0.1);
    border-color: rgba(255, 140, 62, 0.3);
}

/* Scroll Top Butonu */
.footer-scroll-top {
    background: linear-gradient(135deg, var(--footer-accent), var(--footer-accent-hover));
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 10px 20px rgba(255, 140, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 25px rgba(255, 140, 62, 0.5);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 65px 0;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-col h4 {
        border-left: 3px solid var(--footer-accent);
        padding-left: 12px;
    }
}
/* ===============================
   ARALIS MODERN FOOTER (SLIDER & TICKER SYNC)
   =============================== */

:root {
    --footer-bg-dark: #000b1a; 
    --footer-bg-light: #001226; /* Slider ile aynı derin lacivert */
    --footer-accent: #FF8C3E; 
    --footer-accent-hover: #e6762d; 
    --footer-text-soft: #cbd5e1;
    --footer-text-muted: #64748b;
    --font-main: 'Plus Jakarta Sans', sans-serif; /* Slider'daki font ile eşlendi */
}

.aralis-footer-modern {
    background: linear-gradient(180deg, var(--footer-bg-light) 0%, var(--footer-bg-dark) 100%);
    color: var(--footer-text-soft);
    font-family: var(--font-main);
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Şeritten sonra pürüzsüz geçiş için */
    border-top: 1px solid rgba(255, 140, 62, 0.1);
}

/* Arkaplan Watermark - Daha modern ve büyük */
.aralis-footer-modern::before {
    content: "ARALİS";
    position: absolute;
    right: -2%;
    bottom: 5%;
    font-size: 220px;
    font-weight: 900;
    letter-spacing: -5px;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    z-index: 0;
}

/* Grid Yapısı */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr; /* Genişlikler slider uyumu için optimize edildi */
    gap: 50px;
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

/* =====================================================
   LOGO ALANI (Slider Başlık Stiliyle Eşlendi)
   ===================================================== */
.footer-text-logo {
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-text-logo .logo-solid {
    display: block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
}

.footer-text-logo .logo-outline {
    display: block;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 2px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    margin-top: 2px;
    line-height: 1;
}

/* =====================================================
   ŞİRKETLER PANELİ (Vizyon Kartlarıyla Uyumlu)
   ===================================================== */
.footer-companies-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px; /* Daha yumuşak köşeler */
    padding: 30px;
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.footer-companies-panel:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 140, 62, 0.2);
    transform: translateY(-5px);
}

.company-initial {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 140, 62, 0.1);
    color: var(--footer-accent);
    font-size: 14px;
    border: 1px solid rgba(255, 140, 62, 0.2);
}

/* =====================================================
   NEWSLETTER & FORM (Modern Minimalist)
   ===================================================== */
.newsletter-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    margin-top: 20px;
}

.newsletter-form input {
    font-family: var(--font-main);
    font-weight: 500;
}

.newsletter-form button {
    background: var(--footer-accent);
    border-radius: 12px;
    width: 46px;
    height: 46px;
}

/* =====================================================
   ALT BAR & RESPONSIVE
   ===================================================== */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

@media (max-width: 1200px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1fr;
        padding: 60px 0;
    }
    
    .footer-text-logo .logo-solid { font-size: 28px; }
    .footer-text-logo .logo-outline { font-size: 30px; }
    
    .footer-companies-panel {
        padding: 20px;
    }
}

/* Scroll Top Butonu - Slider'daki buton tasarımıyla eşlendi */
.footer-scroll-top {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 140, 62, 0.1);
    border: 1px solid rgba(255, 140, 62, 0.3);
    color: var(--footer-accent);
}

.footer-scroll-top:hover {
    background: var(--footer-accent);
    color: #fff;
}
/* ===============================
   ÇAKIŞMAYI ÖNLEYEN GÜNCEL FOOTER CSS
   =============================== */

.footer-top-grid {
    display: grid;
    /* Kutuların iç içe girmemesi için minmax kullanıyoruz */
    grid-template-columns: minmax(250px, 1.2fr) minmax(200px, 1fr) minmax(200px, 1fr) minmax(250px, 1.2fr);
    gap: 30px; /* Kutular arası boşluğu netleştiriyoruz */
    padding: 80px 0;
    align-items: stretch; /* Kutuların boylarını eşitler */
}

/* Şirketler Paneli ve İletişim Kutuları İçin Ortak Düzenleme */
.footer-companies-panel, 
.footer-contact p {
    width: 100% !important; /* Genişliği kapsayıcıya sabitler */
    box-sizing: border-box; /* Padding'in genişliği bozmasını engeller */
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Responsive Düzenleme: Görseldeki iç içe geçme genelde 1200px altında başlar */
@media (max-width: 1200px) {
    .footer-top-grid {
        grid-template-columns: 1fr 1fr; /* 4 sütundan 2 sütuna düşürür */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top-grid {
        grid-template-columns: 1fr; /* Mobilde her şey tek sütun ve alt alta */
        gap: 30px;
    }
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* İç içe geçmeyi önlemek için konteyner dışına taşmayı engeller */
    overflow: hidden; 
}

.footer-contact p {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    min-height: 60px; /* Kutuların yüksekliklerini dengelemek için */
}
:root {
    --footer-bg: #000814; /* Daha asil bir derin gece mavisi */
    --footer-card-bg: rgba(255, 255, 255, 0.03);
    --footer-accent: #FF8C3E; 
    --footer-accent-rgb: 255, 140, 62;
    --footer-border: rgba(255, 255, 255, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.aralis-footer-modern {
    background: var(--footer-bg);
    padding-top: 100px;
    border-top: 1px solid var(--footer-border);
    position: relative;
}

/* Üst Glow Çizgisi */
.aralis-footer-modern::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--footer-accent), transparent);
    filter: blur(1px);
}

/* Grid Düzenlemesi - İç içe geçmeyi %100 önler */
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* Logo Stili - Daha Keskin ve Modern */
.footer-text-logo .logo-solid {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-text-logo .logo-outline {
    font-size: 38px;
    letter-spacing: 4px;
    opacity: 0.4;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

/* Şirket Kartı - Premium Glassmorphism */
.footer-companies-panel {
    background: var(--footer-card-bg);
    border: 1px solid var(--footer-border);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.footer-companies-panel:hover {
    border-color: rgba(var(--footer-accent-rgb), 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}

.company-initial {
    background: rgba(var(--footer-accent-rgb), 0.1);
    border: 1px solid rgba(var(--footer-accent-rgb), 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.companies-panel-list li:hover .company-initial {
    background: var(--footer-accent);
    color: #000;
    transform: scale(1.1) rotate(-5deg);
}

/* İletişim Kutuları - Hover Efekti */
.footer-contact p {
    background: var(--footer-card-bg);
    border: 1px solid var(--footer-border);
    padding: 18px;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.footer-contact p:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 25px;
    border-color: var(--footer-accent);
}

/* Bülten Formu - Modern Input */
.newsletter-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--footer-border);
    padding: 6px;
    border-radius: 12px;
    display: flex;
}

.newsletter-form input {
    padding: 12px 15px;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--footer-accent);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(var(--footer-accent-rgb), 0.3);
}

/* Alt Bar - Saf ve Şık */
.footer-bottom-bar {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
    border-top: 1px solid var(--footer-border);
}

.footer-links a {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.6;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--footer-accent);
}

/* Mobile Fixes */
@media (max-width: 1100px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-top-grid { grid-template-columns: 1fr; }
}
.designer-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.designer-link:hover {
    color: #f5a623; /* vurgu rengi */
}

/* MODAL */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

