:root {
    --premium-gold: #b3834d;
    --footer-bg: #0a0a0a; /* Sitenin gövdesinden bir tık daha koyu zemin */
    --footer-text: #aaaaaa;
}

/* ================= GENEL FOOTER AYARLARI ================= */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Montserrat', sans-serif;
    border-top: 2px solid #1a1a1a;
    padding-top: 80px;
    position: relative;
}

/* 1600px Genişlik Sınırı */
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* ================= SÜTUN 1: LOGO VE AÇIKLAMA ================= */
.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 220px; /* Logoyu sola dayalı ve kibar boyutta tutuyoruz */
    height: auto;
    display: block;
}

.footer-desc {
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* ================= ORTAK BAŞLIK ================= */
.footer-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

/* Başlık Altı Altın Çizgi */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--premium-gold);
}

/* ================= SÜTUN 2: HIZLI SAYFALAR ================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links a i {
    color: var(--premium-gold);
    margin-right: 10px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--premium-gold);
    transform: translateX(5px); /* Üzerine gelince sağa kayma efekti */
}

/* ================= SÜTUN 3: İLETİŞİM ================= */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--premium-gold);
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--premium-gold);
}

/* ================= SOSYAL MEDYA İKONLARI ================= */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #161616;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--premium-gold);
    border-color: var(--premium-gold);
    color: #121212;
    transform: translateY(-3px);
}

/* ================= ALT BİLGİ (TÜM HAKLARI SAKLIDIR & PEKSOFT) ================= */
.footer-bottom {
    background-color: #050505;
    border-top: 1px solid #1a1a1a;
    padding: 25px 0;
}

.footer-bottom-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.signature a {
    color: var(--premium-gold);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.signature a:hover {
    color: white;
}

/* ================= MOBİL UYUMLULUK ================= */
@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer { padding-top: 60px; }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-col.brand-col {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col.links-col, .footer-col.contact-col {
        text-align: center;
    }

    .footer-contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-info i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}