.bgGray {
    background-color: rgb(255, 244, 228) !important;
}

.audb {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000;
}

.fsz {
    font-size: 0.8rem !important;
}

.premium-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.landmark-section {
    background: #f9f9f9;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    color: #777;
    font-size: 14px;
}

.landmark-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.landmark-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.landmark-card:hover img {
    transform: scale(1.08);
}

.landmark-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.landmark-content h5 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.landmark-content span {
    font-size: 13px;
    opacity: 0.8;
}

/* download  */

.download-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top: 6px solid #f97316;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.download-loader {
    display: none;
}

.download-loader.active {
    display: flex;
}

@media (max-width: 765px) {
    .fsz {
        font-size: 0.7rem !important;
    }

    .audb {
        font-size: 1rem;
    }
    .subtitle {
        margin-bottom: 1rem;
    }
}
