/* =========================================
   PRE-FOOTER - COD COMPLET (DESKTOP + MOBIL)
   ========================================= */
.pre-footer {
    background: #1a0430;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.pre-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logo + Description */
.pre-footer-logo-desc {
    flex: 1 1 300px;
    text-align: left;
}

.pre-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pre-footer-logo {
    width: 50px;
    height: auto;
}

.pre-footer-site-name {
    font-size: 1.3rem;
    font-weight: bold;
}

.pre-footer-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Social Inline */
.pre-footer-social-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-title-inline {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #bb86fc;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Meniuri */
.pre-footer-menus {
    display: flex;
    flex: 2 1 500px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pre-footer-menu h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.pre-footer-menu ul {
    list-style: none;
    padding: 0;
}

.pre-footer-menu ul li {
    margin-bottom: 8px;
}

.pre-footer-menu ul li a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s;
}

.pre-footer-menu ul li a:hover {
    color: #ffffff;
}

/* App Badges */
.download-app .app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-badge {
    width: 120px;
}

.app-badge img {
    width: 100%;
    border-radius: 8px;
}

/* =========================================
   OPTIMIZARE MOBIL (ALINIERE STÂNGA)
   ========================================= */
@media (max-width: 1024px) {
    .pre-footer-container {
        flex-direction: column;
        align-items: flex-start; /* Forțează alinierea la stânga a containerului */
        text-align: left;        /* Textul la stânga */
        gap: 35px;
    }

    .pre-footer-logo-desc {
        flex: 1 1 100%;
        width: 100%;
    }

    .pre-footer-logo-row {
        justify-content: flex-start; /* Logo la stânga */
    }

    .pre-footer-social-inline {
        flex-direction: column;
        align-items: flex-start; /* Social la stânga */
        gap: 12px;
    }

    .pre-footer-menus {
        flex-direction: column;
        align-items: flex-start; /* Meniurile la stânga */
        width: 100%;
        gap: 30px;
    }

    .download-app .app-badges {
        flex-direction: row; /* Badges rămân pe orizontală pentru economie de spațiu */
        justify-content: flex-start;
        gap: 15px;
    }

    .pre-footer-menu ul li {
        margin-bottom: 12px; /* Mai ușor de apăsat pe ecran */
    }
}