/* ================================
   CURVED MODERN FOOTER
================================ */

.bt-footer-premium {
    background: var(--secondary-color);
    color: #fff;
    padding-top: 80px;
    margin-top: 60px;
    position: relative;
}

/* Curved top */
.bt-footer-curve {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 70% 70% 0 0;
}

/* Titles */
.bt-footer-title {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 900;
    color: #f3c76c;
}

/* Description */
.bt-footer-text {
    font-size: 1.35rem;
    line-height: 2;
    color: #e8e8e8;
}

.bt-footer-text-small {
    font-size: 1.25rem;
    color: #cccccc;
}

/* Buttons */
.bt-footer-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bt-footer-buttons a {
    display: block;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.35rem;
    transition: 0.3s;
}

.bt-btn-instagram {
    background: linear-gradient(45deg, #fd1d1d, #fcb045);
    color: #fff !important;
}

.bt-btn-instagram i {
    margin-left: 0;
}

.bt-btn-instagram:hover {
    transform: translateY(-3px);
}

.bt-btn-support {
    background: #f3c76c;
    color: var(--secondary-color) !important;
}

.bt-btn-support i {
    margin-left: 0;
}

.bt-btn-support:hover {
    background: #d4a548;
    transform: translateY(-3px);
}

/* Lists */
.bt-footer-menu li a {
    font-size: 1.35rem;
    color: #dcdcdc;
    transition: 0.25s;
}

.bt-footer-menu li a:hover {
    color: #f3c76c;
}

/* Newsletter */
.bt-newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.bt-newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
}

.bt-newsletter-form button {
    width: 50px;
    border: none;
    border-radius: 12px;
    background: #f3c76c;
    cursor: pointer;
    font-size: 1.4rem;
}

.bt-newsletter-form button:hover {
    background: #d4a548;
}

/* BADGES */
.bt-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* link wrapper */
.bt-badge-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    padding: 10px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    flex-shrink: 0;
}

/* hover effect */
.bt-badge-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* image inside link */
.bt-badge-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 600px) {
    .bt-badges-row {
        gap: 12px;
    }

    .bt-badge-link {
        width: 90px;
        height: 90px;
        padding: 8px;
    }
}

@media (max-width: 400px) {
    .bt-badge-link {
        height: 80px;
    }
}

/* Bottom */
.bt-footer-bottom {
    background: #002427;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
    color: #e0e0e0;
    font-size: 1.3rem;
}

.bt-footer-bottom p {
    color: #fffdf4;
}

/* Responsive */
@media (max-width: 768px) {
    .bt-badges-row img {
        width: 48%;
        height: 100px;
    }
}
