.footer {
    background: linear-gradient(
            to bottom,
            #062958,
            #041c3d
    );
    color: white;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 70px 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo-wrap h2 {
    color: white;
    font-size: 24px;
    line-height: 1.3;
}

.footer-logo-wrap h2 span {
    display: block;
    color: #F01E00;
}

.footer-description {
    margin-top: 25px;
    color: #cfcfcf;
    line-height: 1.9;
    max-width: 700px;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn-primary {
    background: #F01E00;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ff4f4f;
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 8px;
}

.btn-secondary:hover {
    background: white;
    color: #062958;
}

.footer h3 {
    color: #F01E00;
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a,
.footer-bottom-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #cfcfcf;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    transition: .3s;
}

.social-icons a:hover {
    background: #F01E00;
    color: #062958;
    transform: scale(1.1);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,.1);
    margin: 50px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    color: #999;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

/* Tablet */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* Mobile */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-logo-wrap h2 {
        font-size: 18px;
    }

}