/* =========================================
   PDS FOOTER - MODERN CORPORATE
========================================= */

.pds-footer {
    width: 100%;
    background:linear-gradient(135deg,#031b34,#004d61);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.pds-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px 55px;

    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 1fr;
    gap: 46px;
}

/* COLUMN */

.pds-footer-column h3 {
    font-size: 17px;
    font-weight: 700;
    color: #00bcd4;
    margin-bottom: 22px;
    letter-spacing: -0.2px;
}

.pds-footer-column p {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 18px;
}

.pds-footer-about p {
    max-width: 360px;
}

/* CONTACT */

.pds-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
}

.pds-footer-contact span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

/* QUICK LINK */

.pds-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pds-footer-column ul li {
    margin-bottom: 13px;
}

.pds-footer-column ul li a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.pds-footer-column ul li a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* SOCIAL BUTTON */

.pds-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.pds-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.pds-footer-social .whatsapp {
    background: #25d366;
    color: #ffffff;
}

.pds-footer-social .instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #ffffff;
}

.pds-footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* GALLERY */

.pds-footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pds-footer-gallery img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: 0.35s ease;
}

.pds-footer-gallery img:hover {
    transform: scale(1.04);
    opacity: 0.9;
}

/* BOTTOM */

.pds-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 40px;

    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .pds-footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px;
    }
}

@media (max-width: 768px) {
    .pds-footer-container {
        grid-template-columns: 1fr;
        padding: 65px 24px 45px;
        gap: 36px;
    }

    .pds-footer-about p {
        max-width: 100%;
    }

    .pds-footer-gallery {
        max-width: 360px;
    }

    .pds-footer-bottom {
        padding: 20px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .pds-footer-social {
        flex-direction: column;
    }

    .pds-footer-social a {
        width: 100%;
    }

    .pds-footer-gallery img {
        height: 95px;
    }
}

.pds-footer-visitor {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pds-footer-visitor span {
    font-size: 13px;
    color: #cbd5e1;
}

.pds-footer-visitor strong {
    font-size: 13px;
    color: #ffffff;
    font-weight: 800;
}