/* ========================================
   HEARTFUL ALLIES PREMIUM FOOTER
======================================== */

.footer {

    position: relative;

    background:
    linear-gradient(
        135deg,
        #0f172a 0%,
        #172554 45%,
        #1e293b 100%
    );

    padding:
    90px 20px 35px;

    height: auto;
}

/* ========================================
   TOP ACCENT LINE
======================================== */

.footer::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(147,197,253,0.9),
        transparent
    );
}

/* ========================================
   CONTAINER
======================================== */

.footer .container {

    max-width: 1250px;

    margin: auto;

    position: relative;

    z-index: 2;
}

/* ========================================
   FOOTER GRID
======================================== */

.footer-grid {

    display: grid;

    grid-template-columns:
    1.4fr
    1fr
    1fr
    1.2fr;

    gap: 60px;
}

/* ========================================
   BRAND COLUMN
======================================== */

.footer-brand-column {

    display: flex;

    flex-direction: column;
}

/* Logo */

.footer-logo {

    width: 100%;

    max-width: 250px;

    margin-bottom: 26px;

    display: block;

    filter:
    drop-shadow(
        0 8px 24px rgba(0,0,0,0.35)
    );
}

/* Description */

.footer-description {

    color:
    rgba(255,255,255,0.78);

    line-height: 1.9;

    font-size: 1rem;

    margin-bottom: 32px;

    max-width: 340px;
}

/* ========================================
   WHATSAPP BUTTON
======================================== */

.footer-whatsapp {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    padding: 14px 22px;

    border-radius: 14px;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    color: #ffffff !important;

    font-weight: 600;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;

    margin-bottom: 35px;
}

.footer-whatsapp:hover {

    background: #25D366;

    color: #ffffff !important;

    transform:
    translateY(-4px);

    box-shadow:
    0 14px 30px rgba(0,0,0,0.25);
}

/* ========================================
   SOCIAL ICONS
======================================== */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.footer-socials a {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 1rem;

    transition: all 0.3s ease;
}

/* Hover */

.footer-socials a:hover {

    background: #dbeafe;

    color: #0f172a;

    transform:
    translateY(-5px);

    box-shadow:
    0 12px 28px rgba(0,0,0,0.22);
}

/* ========================================
   FOOTER HEADINGS
======================================== */

.footer-column h4 {

    position: relative;

    color: #ffffff;

    font-size: 1.15rem;

    font-weight: 700;

    margin-bottom: 28px;

    letter-spacing: 0.3px;
}

/* Underline */

.footer-column h4::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 46px;
    height: 3px;

    border-radius: 20px;

    background:
    linear-gradient(
        90deg,
        #60a5fa,
        #93c5fd
    );
}

/* ========================================
   LISTS
======================================== */

.footer-column ul {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-column ul li {

    margin-bottom: 16px;
}

/* ========================================
   LINKS
======================================== */

.footer-column a {

    color:
    rgba(255,255,255,0.74);

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-column a:hover {

    color: #ffffff;

    transform:
    translateX(4px);
}

/* ========================================
   CONTACT TEXT
======================================== */

.footer-column p {

    color:
    rgba(255,255,255,0.75);

    line-height: 1.9;

    margin-bottom: 18px;

    font-size: 0.96rem;
}

/* Icons */

.footer-column i {

    color: #93c5fd;

    margin-right: 10px;
}

/* ========================================
   GLOBAL EMAILS
======================================== */

.footer-global-mails {

    margin-top: 28px;
}

.footer-global-mails strong {

    display: inline-block;

    margin-bottom: 4px;

    color: #ffffff;

    font-size: 0.96rem;
}

/* ========================================
   COPYRIGHT
======================================== */

.footer-bottom {

    margin-top: 65px;

    padding-top: 28px;

    border-top:
    1px solid rgba(255,255,255,0.10);

    text-align: center;
}

.footer-bottom p {

    color:
    rgba(255,255,255,0.64);

    font-size: 0.95rem;

    line-height: 1.8;

    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */

@media(max-width:1100px){

.footer-grid {

    grid-template-columns:
    repeat(2,1fr);

    gap: 50px;
}

}

@media(max-width:768px){

.footer {

    padding:
    70px 20px 30px;
}

.footer-grid {

    grid-template-columns: 1fr;

    gap: 45px;
}

.footer-brand-column {

    align-items: center;

    text-align: center;
}

.footer-logo {

    max-width: 190px;
}

.footer-description {

    max-width: 100%;

    font-size: 0.96rem;
}

.footer-column {

    text-align: center;
}

.footer-column h4::after {

    left: 50%;

    transform: translateX(-50%);
}

.footer-socials {

    justify-content: center;
}

.footer-whatsapp {

    justify-content: center;
}

.footer-bottom {

    margin-top: 45px;
}

}