@import url(common.css);

/* ===== DOWNLOAD SECTION ===== */
.footer-section-download {
    background-color: rgb(26,28,49);
    text-align: center;
    color: white;
    padding: 100px 50px;
}

.footer-section-download h2 {
    color: var(--main-primary-color);
}

.footer-section-download button {
    all: unset;
    padding: 10px 20px 10px 20px;
    margin: 30px 10px;
    background-color: white;
    cursor: pointer;
    color: var(--main-primary-color);
    border-radius: 6px;
}

/* ===== LINKS SECTION LAYOUT ===== */
.footer-section-links {
    background-color: rgb(20,21,36);
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 120px;
    justify-content: space-between;
}

.footer-col {
    width: 23%; 
    margin-bottom: 30px;
}

/* ===== COLUMN CONTENT STYLING ===== */
.footer-col h3 {
    font-size: 18px;
    color: #ffc845; 
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d1d1;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 15px;
    color: #d1d1d1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px; 
}

/* ===== CONTACTS & ICONS ===== */
.contacts li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #d1d1d1;
}

.text-icon {
    font-size: 18px;
}

.fa-phone { color: #ff6b6b; }    
.fa-whatsapp { color: #69788d; } 
.fa-envelope { color: #d1d1d1; } 

/* ===== MEDIA QUERIES ===== */

/* Tablet (2 columns) */
@media (max-width: 768px) {
    .footer-col {
        width: 50%; 
    }
}

/* Mobile (1 column + centering) */
@media (max-width: 574px) {
    .footer-col {
        width: 100%; 
        text-align: center; 
    }
    
    .contacts li {
        justify-content: center; 
    }
}