/* =========================
   FOOTER CSS - CONTACT STYLE
   ========================= */

.footer {
    background: linear-gradient(135deg, #2d123a 0%, #4b1761 52%, #6f2c91 100%);
    color: #eadcf4;
    font-size: 0.95rem;
    padding: 40px 30px 0;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.10), transparent 26%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
    pointer-events: none;
}

.footer-top {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .col-lg-6,
.footer .col-lg-3 {
    padding: 15px;
    flex: 1 1 250px;
}

.footer .col-lg-6 {
    flex: 1 1 420px;
}

.footer .heading {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.footer p {
    line-height: 1.75;
    color: #eadcf4;
    margin: 0;
    font-size: 0.95rem;
}

.footer p a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer p a:hover {
    color: #f3d9ff;
    text-decoration: underline;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #dbc3ea;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 0;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    background: rgba(34, 10, 46, 0.35);
    padding: 12px 20px;
    color: #e5d6ef;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom .copyright {
    margin: 5px 0;
    color: #e5d6ef;
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-right: 20px;
}

.payment-icons img {
    height: 28px;
    width: auto;
    max-width: 100%;
    filter: grayscale(10%);
    transition: 0.3s ease;
}

.payment-icons img:hover {
    filter: none;
    transform: scale(1.05);
}

/* =========================
   LARGE SCREENS
   ========================= */
@media (min-width: 1200px) {
    .footer {
        padding: 50px 40px 0;
    }

    .footer-top {
        padding: 30px 0;
    }

    .footer .heading {
        font-size: 1.3rem;
    }

    .footer p,
    .footer ul li a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .payment-icons {
        padding-right: 40px;
    }

    .payment-icons img {
        height: 28px;
    }
}

/* =========================
   LAPTOP / DESKTOP
   ========================= */
@media (min-width: 1025px) and (max-width: 1199px) {
    .footer {
        padding: 40px 35px 0;
        font-size: 0.95rem;
    }

    .footer .heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer p,
    .footer ul li a {
        font-size: 0.92rem;
    }

    .footer .col-lg-6,
    .footer .col-lg-3 {
        padding: 15px;
    }

    .footer-bottom {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .payment-icons {
        padding-right: 30px;
    }

    .payment-icons img {
        height: 28px;
    }
}

/* =========================
   TABLET
   ========================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 35px 25px 0;
        font-size: 0.9rem;
    }

    .footer .heading {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .footer ul li {
        margin-bottom: 9px;
    }

    .footer ul li a {
        font-size: 0.9rem;
    }

    .footer .col-lg-6,
    .footer .col-lg-3 {
        flex: 1 1 45%;
        padding: 12px;
    }

    .footer .row {
        gap: 15px;
    }

    .footer-bottom {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .payment-icons {
        justify-content: flex-end;
        padding-right: 15px;
        gap: 15px;
    }

    .payment-icons img {
        height: 25px;
    }
}

/* =========================
   MOBILE / SMALL TABLET
   ========================= */
@media (min-width: 481px) and (max-width: 768px) {
    .footer {
        padding: 30px 20px 0;
        font-size: 0.88rem;
    }

    .footer-top {
        padding: 20px 0;
    }

    .footer .heading {
        font-size: 1rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .footer p {
        font-size: 0.85rem;
        line-height: 1.6;
        color: #e7d9f1;
    }

    .footer ul li {
        margin-bottom: 8px;
    }

    .footer ul li a {
        font-size: 0.88rem;
        color: #d9c4e8;
    }

    .footer ul li a:hover {
        color: #ffffff;
        padding-left: 3px;
    }

    .footer .row {
        flex-direction: column;
        gap: 15px;
    }

    .footer .col-lg-6,
    .footer .col-lg-3 {
        flex: 1 1 100%;
        padding: 10px 0;
    }

    .footer-bottom {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .payment-icons {
        justify-content: center;
        padding-right: 0;
        gap: 12px;
        margin-top: 15px;
    }

    .payment-icons img {
        height: 24px;
    }
}

/* =========================
   SMALL MOBILE
   ========================= */
@media (max-width: 480px) {
    .footer {
        padding: 20px 15px 0;
        font-size: 0.8rem;
    }

    .footer-top {
        padding: 15px 0;
    }

    .footer .heading {
        font-size: 0.95rem;
        margin-bottom: 10px;
        text-align: center;
        font-weight: 700;
    }

    .footer p {
        font-size: 0.8rem;
        line-height: 1.5;
        text-align: center;
        color: #e8daf2;
    }

    .footer ul {
        text-align: center;
        margin: 10px 0;
    }

    .footer ul li {
        margin-bottom: 6px;
    }

    .footer ul li a {
        font-size: 0.8rem;
        color: #d5bfe5;
    }

    .footer ul li a:hover {
        padding-left: 0;
        color: #ffffff;
    }

    .footer .row {
        flex-direction: column;
        gap: 10px;
    }

    .footer .col-lg-6,
    .footer .col-lg-3 {
        flex: 1 1 100%;
        padding: 8px 0;
    }

    .footer-bottom {
        padding: 8px 10px;
        font-size: 0.75rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .payment-icons {
        justify-content: center;
        padding-right: 0;
        gap: 8px;
        margin-top: 10px;
    }

    .payment-icons img {
        height: 20px;
    }
}

/* =========================
   VERY SMALL MOBILE
   ========================= */
@media (max-width: 360px) {
    .footer {
        padding: 15px 12px 0;
        font-size: 0.75rem;
    }

    .footer .heading {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer p {
        font-size: 0.75rem;
    }

    .footer ul li {
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding: 6px 8px;
        font-size: 0.7rem;
    }

    .payment-icons {
        gap: 6px;
    }

    .payment-icons img {
        height: 18px;
    }
}