/* Common Typography & Subtitles */
.na-gold-tag {
    color: #cda85f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}
.tj-grid-shape {
    position: absolute;
    top: 0;
    inset-inline-end: 0;
    z-index: -1;
    color: #fff;
    width: 200px;
    aspect-ratio: 1 / 1;
}
.tj-grid-shape svg {
    width: 100%;
    height: 100%;
}
.na-section-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.na-section-desc {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Image Wrapper Styling */
.na-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.na-rounded-img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.na-img-wrapper:hover .na-rounded-img {
    transform: scale(1.03);
}

.na-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #cda85f;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.na-img-badge span {
    color: #cda85f;
}

/* Gold Button Style */
.btn-primary-gold {
    background-color: #cda85f;
    color: #000000 !important;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 1vw;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #cda85f;
    transition: all 0.3s ease;
}

.btn-primary-gold:hover {
    background-color: var(--color-2);
    color: #fff !important;
    border: 2px solid var(--color-2);
}

/* ===================================================
   SECTION 1: BUSINESS LISTINGS FEATURE
   =================================================== */
.na-listings-feature-section {
    background-color: #D9E6FF;
    padding: 90px 0;
    z-index: 0;
    position: relative;
}
@media(max-width: 767px){
    .btn-primary-gold{
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .tj-grid-shape {
        width: 100px;
    }
}