/* ========== FOOTER ========== */
.site-footer {
    background: #ffffff;
    padding: 20px 20px;
    margin-top: 15px;
    border-top: 1px solid #e0e0e0;
    color: #000;
    /* Footer-un altına bottom menu üçün boşluq */
    padding-bottom: 70px; /* bottom menu hündürlüyünə uyğun artırıldı */
}

.site-footer.day-mode {
    background: #fff;
    color: #000;
}

/* Footer container – bölmələr arasındakı məsafə azaldıldı və kompakt edildi */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* əvvəl 6px idi */
    justify-content: space-between;
}

/* Footer bölmələri – eni azaldıldı ki, sıx görünsün */
.footer-section {
    flex: 1 1 150px; /* əvvəl 200px idi */
    min-width: 120px; /* mobil üçün limit */
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 10px; /* əvvəl 12px idi */
}

/* ==================== KEÇİDLƏR ==================== */
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 6px 0; /* əvvəl 8px idi */
    display: flex;
    align-items: center;
}

.footer-section ul li::before {
    content: "•";
    color: #007bff;
    font-size: 18px;
    margin-right: 6px;
    transition: 0.2s;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.footer-section ul li:hover a {
    margin-left: 3px;
    color: #007bff;
}

.footer-section ul li:hover::before {
    color: #0056d6;
}

/* ==================== Sosial ikonlar ==================== */
.social-links a {
    font-size: 24px;
    margin-right: 8px; /* əvvəl 10px idi */
    transition: 0.2s ease;
}

.social-links a .fa-instagram { color: #E1306C; }
.social-links a .fa-facebook  { color: #1877F2; }
.social-links a .fa-tiktok    { color: #000000; }
.social-links a .fa-youtube   { color: #FF0000; }

.social-links a:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* Haqqımızda mətni */
.about-text p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0 0 15px 0; /* alt boşluq əlavə edildi */
    position: relative;
}

/* Separator xətt */
.footer-container::after {
    content: "";
    display: block;
    height: 1px;              /* xətt qalınlığı */
    background: #e0e0e0;      /* xətt rəngi */
    margin: 10px 0;           /* about-text ilə footer-bottom arasında məsafə */
}

/* Footer alt hissə */
.footer-bottom {
    text-align: center;
    padding: 10px 15px;
    border-radius: 8px;
    background: #079;
    color: #fff;
    font-size: 13px;
    opacity: 0.9;
    position: relative;
    z-index: 5;
}

/* Mobil uyğunlaşma */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 10px; /* kompakt */
    }

    .footer-section {
        flex: 1 1 100%; /* bölmələr alt-alta düşsün */
        min-width: auto;
    }

    .about-text p {
        margin-bottom: 8px;
        
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 12px;
        margin-top: 8px;
        padding-top: 8px;
    }
}