.dr-footer {
    position: relative;
    background: #0b2c66;
    color: #ffffff;
    overflow: hidden;
    padding-top: 70px;
}

/* TEXTURA OVERLAY */
.dr-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/paper-fibers.png");
    opacity: .08;
    pointer-events: none;
}

.dr-footer > .container {
    position: relative;
    z-index: 2;
}

/* WAVE */
.dr-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    transform: translateY(-99%);
}

.dr-footer-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* TRUST SECTION */
.dr-footer-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 40px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.dr-footer-trust-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    transition: .25s ease;
}

.dr-footer-trust-item:hover {
    background: rgba(255,255,255,.08);
}

.dr-footer-trust-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.dr-footer-trust-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    color: #ffffff;
}

.dr-footer-trust-text span {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

/* GRID */
.dr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 45px;
}

/* BRAND */
.dr-footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 24px;
}

.dr-footer-brand p {
    margin: 0;
    max-width: 430px;
    line-height: 1.8;
    font-size: 14px;
    color: rgba(255,255,255,.75);
}

/* COLUMNS */
.dr-footer-items h4 {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.dr-footer-items a,
.dr-footer-items span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .2s ease;
}

.dr-footer-items a:hover {
    color: #ffffff;
}

/* SOCIAL */
.dr-footer-social-label {
    margin-top: 22px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}

.dr-footer-socials {
    display: flex;
    gap: 12px;
}

.dr-footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    transition: .25s;
    color: #fff;
}

.dr-footer-socials a:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.18);
}

/* PAYMENTS */
.dr-footer-payments {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.dr-footer-payment-text strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
}

.dr-footer-payment-text span {
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.dr-footer-payment-badges {
    display: flex;
    gap: 16px;
    align-items: center;
}

.dr-footer-payment-badges img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

/* BOTTOM */
.dr-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255,255,255,.65);
}

.dr-footer-created a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width:1200px) {
    .dr-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dr-footer-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:768px) {
    .dr-footer-grid,
    .dr-footer-trust {
        grid-template-columns: 1fr;
    }

    .dr-footer-payments,
    .dr-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .dr-footer-logo {
        height: 64px;
    }
}
