@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

/* Astrologer Section Redesign */
.featured-astrologers-section {
    background: #06041D;
    padding: 32px 0;
    position: relative;
}

.guidance-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.guidance-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.guidance-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

.view-all-astrologers-btn {
    color: #F2C94C;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.view-all-astrologers-btn:hover {
    color: #ffd863;
    text-decoration: none;
    transform: translateX(3px);
}

.astrologer-carousel-card {
    background: #120C31;
    border-radius: 16px;
    border: 1px solid rgba(158, 119, 241, 0.15);
    position: relative;
    padding: 24px 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 330px;
}

.astrologer-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F2C94C, #9E77F1, #00C6FF);
    opacity: 0.6;
}

.astrologer-carousel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.4);
    box-shadow: 0 10px 25px rgba(124, 92, 228, 0.2);
}

.verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 1px solid rgba(242, 201, 76, 0.6);
    color: #F2C94C;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    background: transparent;
    z-index: 10;
}

/* Avatar Styling */
.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    margin-top: 10px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initials {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #120C31;
    z-index: 2;
}

.status-dot.online {
    background-color: #27AE60;
}

.status-dot.busy {
    background-color: #F2994A;
}

.status-dot.offline {
    background-color: #828282;
}

/* Info Styling */
.astro-name {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.astro-specialty {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.astro-meta-stats {
    color: #82829E;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 20px;
    width: 100%;
}

/* Redesigned Premium Buttons */
.astro-action-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.btn-premium-call {
    flex: 1;
    background-color: #F2C94C;
    color: #06041D;
    border: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-premium-call:hover {
    background-color: #e0b32f;
    color: #06041D;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-premium-chat {
    flex: 1;
    background-color: rgba(158, 119, 241, 0.1);
    color: #9E77F1;
    border: 1px solid rgba(158, 119, 241, 0.3);
    padding: 9px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-premium-chat:hover {
    background-color: rgba(158, 119, 241, 0.25);
    border-color: #9E77F1;
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Owl Navigation Overrides */
.featured-astrologers-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.featured-astrologers-carousel .owl-nav button.owl-prev,
.featured-astrologers-carousel .owl-nav button.owl-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background-color: rgba(158, 119, 241, 0.2) !important;
    border: 1px solid rgba(158, 119, 241, 0.4) !important;
    color: #FFFFFF !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    transition: all 0.2s ease;
}

.featured-astrologers-carousel .owl-nav button.owl-prev:hover,
.featured-astrologers-carousel .owl-nav button.owl-next:hover {
    background-color: #F2C94C !important;
    border-color: #F2C94C !important;
    color: #06041D !important;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
}

.featured-astrologers-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
}

.featured-astrologers-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -50px;
}

@media (max-width: 1200px) {
    .featured-astrologers-carousel .owl-nav button.owl-prev {
        left: -15px;
    }

    .featured-astrologers-carousel .owl-nav button.owl-next {
        right: -15px;
    }
}

.rating-stars i {
    color: #F2C94C;
}

/* ===== Homepage Hero Section ===== */
.hero-section {
    padding: 20px 0 24px;
    position: relative;
}

/* Single bordered card — slider + stats inside */
.hero-outer-card {
    border: 1px solid rgba(98, 68, 200, 0.5);
    border-radius: 18px;
    background: #0D0B2A;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.7);
}

/* Slider wrap */
.hero-slider-area-wrap {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Slide 1 — containing block for absolute children */
.hero-slide-item {
    position: relative !important;
    min-height: 420px;
    height: 420px;
    overflow: hidden;
    padding: 0;
    display: block !important;
}

/* Background image fills 100% of the slide */
.hero-bg-img,
.banner-slider .item img.hero-bg-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 0 !important;
    display: block !important;
}

/* Text overlay — left-side gradient keeps text readable */
.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55%;
    z-index: 2;
    padding: 50px 60px 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    background: linear-gradient(90deg,
            rgba(13, 11, 42, 0.97) 0%,
            rgba(13, 11, 42, 0.90) 50%,
            rgba(13, 11, 42, 0.50) 75%,
            transparent 100%);
}

/* Database banner slides */
.db-slide-item {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.db-slide-item img.db-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mini-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title-premium {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    font-family: 'Playfair Display', Georgia, serif;
}

.hero-title-premium span.highlight {
    color: #F2C94C;
}

.hero-subtitle-premium {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
    text-align: left;
}

/* CTA buttons inside Hero */
.hero-ctas-premium {
    display: flex;
    gap: 16px;
}

.hero-btn-talk-premium {
    background-color: #F2C94C;
    color: #080718 !important;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn-talk-premium:hover {
    background-color: #e0b32f;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
}

.hero-btn-chat-premium {
    background-color: #251755;
    color: #FFFFFF !important;
    border: 1.5px solid #4a349c;
    font-weight: 600;
    font-size: 15px;
    padding: 11px 28px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-btn-chat-premium:hover {
    background-color: #2e1e6b;
    border-color: #5c42c2;
    color: #FFFFFF !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(92, 66, 194, 0.3);
}

/* Nav arrows — inside the card, anchored to hero-slider-area-wrap */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(242, 201, 76, 0.5);
    background: rgba(13, 11, 42, 0.7);
    color: #F2C94C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
}

.hero-nav-arrow:focus {
    outline: none;
}

.hero-nav-arrow.arrow-left {
    left: 18px;
}

.hero-nav-arrow.arrow-right {
    right: 18px;
}

.hero-nav-arrow:hover {
    background: #F2C94C;
    color: #080718;
    border-color: #F2C94C;
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.45);
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: #F2C94C;
    width: 26px;
    border-radius: 6px;
}

/* hero-graphic-col / hero-text-col not used in new full-bg layout */

/* Divider inside the card */
.hero-card-divider {
    height: 1px;
    background: rgba(98, 68, 200, 0.35);
    width: 100%;
}

/* Stats bar — same card, slightly darker strip */
.hero-stats-area {
    background: #0a0820;
    padding: 18px 40px;
}

.stats-row-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    color: #F2C94C;
    font-size: 24px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.stat-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
}

.stat-divider {
    height: 35px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-section {
        padding: 12px 0 16px;
    }

    .hero-outer-card {
        border-radius: 12px;
    }

    .hero-slide-item {
        min-height: 320px;
        height: 320px;
    }

    .hero-text-overlay {
        width: 80%;
        height: 320px;
        padding: 28px 20px 28px 24px;
    }

    .hero-nav-arrow {
        display: none !important;
    }

    .db-slide-item {
        height: 280px;
    }

    .hero-stats-area {
        padding: 16px;
    }

    .hero-title-premium {
        font-size: 26px;
    }

    .hero-subtitle-premium {
        font-size: 14px;
    }

    /* Buttons remain inline on tablet */
    .hero-ctas-premium {
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .hero-btn-talk-premium,
    .hero-btn-chat-premium {
        width: auto;
    }

    .stats-row-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 45%;
    }
}

@media (max-width: 575px) {
    .hero-slide-item {
        min-height: 380px;
        height: 380px;
    }

    .hero-text-overlay {
        width: 100% !important;
        height: 380px !important;
        padding: 24px 20px;
        background: linear-gradient(180deg, rgba(13, 11, 42, 0.75) 0%, rgba(13, 11, 42, 0.9) 100%) !important;
        align-items: center;
        text-align: center;
    }

    .hero-title-premium {
        font-size: 20px;
        text-align: center;
    }

    .hero-subtitle-premium {
        font-size: 13px;
        text-align: center;
        margin-bottom: 24px;
    }

    /* Stack buttons on mobile */
    .hero-ctas-premium {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-btn-talk-premium,
    .hero-btn-chat-premium {
        width: 100%;
        justify-content: center;
    }

    .hero-mini-badge {
        padding: 4px 12px;
        margin-bottom: 14px;
        font-size: 10px;
    }

    .banner-slider .item img.hero-bg-img {
        object-position: right center !important;
    }

    /* Stats 2-column responsive layout */
    .stats-row-container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px 10px;
        padding: 0 4px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 47%;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .stat-icon {
        width: 24px;
        text-align: center;
        flex-shrink: 0;
        font-size: 18px;
    }

    .stat-info {
        align-items: flex-start;
        text-align: left;
    }
}

/* Explore Services Section */
.explore-services-section {
    background: #0E0B2A;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.services-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.services-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.services-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

/* Service Card Layout */
.service-card-link {
    text-decoration: none !important;
    display: block;
    height: 100%;
}

.service-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(242, 201, 76, 0.4);
    box-shadow: 0 10px 20px rgba(124, 92, 228, 0.15);
}

.service-icon-box {
    background: rgba(158, 119, 241, 0.12);
    width: 52px;
    height: 52px;
    border-radius: 12px;
    color: #9E77F1;
    font-size: 20px;
    flex-shrink: 0;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background: #F2C94C;
    color: #06041D;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.4);
}

.service-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-desc {
    color: #82829E;
    font-size: 13px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 26px;
    }
}

/* Daily Predictions (Horoscope) Section Redesign */
.daily-predictions-section {
    background: #06041D;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.predictions-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.predictions-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.predictions-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

.zodiac-grid {
    margin-top: 40px;
}

.zodiac-card-link {
    text-decoration: none !important;
    display: block;
}

.zodiac-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 16px;
    padding: 24px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.4);
    box-shadow: 0 10px 20px rgba(124, 92, 228, 0.15);
}

.zodiac-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zodiac-icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.zodiac-card:hover .zodiac-icon-box {
    background: #F2C94C;
    box-shadow: 0 0 12px rgba(242, 201, 76, 0.4);
    transform: scale(1.05);
}


.zodiac-name {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.zodiac-card:hover .zodiac-name {
    color: #F2C94C;
}

.zodiac-date {
    color: #82829E;
    font-size: 12px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .predictions-title {
        font-size: 26px;
    }

    .zodiac-card {
        padding: 16px 10px;
    }
}

/* Free Kundli and Panchang Section */
.free-kundli-panchang-section {
    background: #0E0B2A;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.kundli-promo-card,
.today-panchang-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 20px;
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.kundli-promo-card:hover,
.today-panchang-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    box-shadow: 0 10px 30px rgba(124, 92, 228, 0.12);
}

/* Taglines */
.promo-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.panchang-tag {
    color: #F2C94C;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Titles */
.promo-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
    font-family: 'Playfair Display', Georgia, serif;
}

.promo-title span.highlight {
    color: #F2C94C;
}

.panchang-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.panchang-sub-details {
    color: #9E77F1;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* Descriptions */
.promo-desc {
    color: #82829E;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Buttons container */
.promo-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn-generate-kundli {
    background-color: #F2C94C;
    color: #06041D !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-generate-kundli:hover {
    background-color: #e0b32f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 201, 76, 0.25);
}

.btn-kundli-matching {
    background-color: rgba(158, 119, 241, 0.1);
    color: #9E77F1 !important;
    border: 1px solid rgba(158, 119, 241, 0.3);
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-kundli-matching:hover {
    background-color: rgba(158, 119, 241, 0.25);
    border-color: #9E77F1;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

/* Panchang 2x2 grid */
.panchang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.panchang-info-card {
    background: rgba(6, 4, 29, 0.4);
    border: 1px solid rgba(158, 119, 241, 0.08);
    border-radius: 12px;
    padding: 10px 16px;
    transition: all 0.2s ease;
}

.panchang-info-card:hover {
    background: rgba(158, 119, 241, 0.06);
    border-color: rgba(158, 119, 241, 0.15);
}

.panchang-info-label {
    color: #82829E;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.panchang-info-value {
    color: #F2C94C;
    font-size: 16px;
    font-weight: 700;
}

/* Detailed Panchang Link */
.panchang-detailed-link {
    color: #9E77F1;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.panchang-detailed-link:hover {
    color: #FFFFFF;
    text-decoration: none;
    transform: translateX(3px);
}

@media (max-width: 991px) {

    .kundli-promo-card,
    .today-panchang-card {
        padding: 30px;
    }

    .promo-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .free-kundli-panchang-section .row>div:first-child {
        margin-bottom: 24px;
    }

    .promo-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-generate-kundli,
    .btn-kundli-matching {
        width: 100%;
    }
}

/* Premium Astrology Reports Section */
.premium-reports-section {
    background: #06041D;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.reports-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reports-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.reports-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.reports-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.reports-view-all {
    color: #F2C94C;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}

.reports-view-all:hover {
    color: #ffd863;
    text-decoration: none;
    transform: translateX(3px);
}

.report-promo-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.report-promo-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    box-shadow: 0 10px 30px rgba(124, 92, 228, 0.12);
}

.report-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(158, 119, 241, 0.1);
    color: #9E77F1;
    font-size: 22px;
    flex-shrink: 0;
    margin-right: 24px;
    transition: all 0.3s ease;
}

.report-promo-card:hover .report-icon-box {
    background: #F2C94C;
    color: #06041D;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.4);
}

.report-content {
    display: flex;
    flex-direction: column;
}

.report-card-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.report-card-desc {
    color: #82829E;
    font-size: 13px;
    margin-bottom: 12px;
}

.report-card-price {
    color: #F2C94C;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.btn-buy-report {
    background-color: #F2C94C;
    color: #06041D !important;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    align-self: flex-start;
}

.btn-buy-report:hover {
    background-color: #e0b32f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 201, 76, 0.25);
}

@media (max-width: 991px) {
    .report-promo-card {
        padding: 24px;
    }

    .report-icon-box {
        margin-right: 16px;
    }
}

@media (max-width: 768px) {
    .reports-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .reports-view-all {
        margin-bottom: 0;
    }

    .reports-title {
        font-size: 26px;
    }

    .premium-reports-section .row>div {
        margin-bottom: 20px;
    }

    .premium-reports-section .row>div:last-child {
        margin-bottom: 0;
    }
}

/* Real Stories (Testimonials) Section */
.real-stories-section {
    background: #0E0B2A;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.stories-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.stories-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.stories-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

.story-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.story-card::after {
    content: '”';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: rgba(158, 119, 241, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.story-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    box-shadow: 0 10px 30px rgba(124, 92, 228, 0.12);
    transform: translateY(-4px);
}

.story-stars {
    margin-bottom: 16px;
}

.story-stars i {
    color: #F2C94C;
    font-size: 14px;
    margin-right: 2px;
}

.story-quote {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.story-author-info {
    border-top: 1px solid rgba(158, 119, 241, 0.12);
    padding-top: 20px;
}

.story-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 16px;
}

.story-avatar.purple {
    background: #8B5CF6;
}

.story-avatar.green {
    background: #10B981;
}

.story-avatar.blue {
    background: #3B82F6;
}

.story-avatar.rose {
    background: #EC4899;
}

.story-author-details {
    display: flex;
    flex-direction: column;
}

.story-author-name {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.story-author-meta {
    color: #82829E;
    font-size: 13px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stories-title {
        font-size: 26px;
    }

    .story-card {
        padding: 24px;
    }
}

/* Live Sessions Section */
.live-sessions-section {
    background: #0E0B2A;
    padding: 32px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.live-sessions-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.live-sessions-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.live-sessions-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

/* Live sessions custom button styling */
.live-sessions-section .view-more {
    background-color: rgba(158, 119, 241, 0.1);
    color: #9E77F1 !important;
    border: 1px solid rgba(158, 119, 241, 0.3);
    font-weight: 700;
    padding: 11px 30px;
    border-radius: 30px;
    font-size: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.live-sessions-section .view-more:hover {
    background-color: rgba(158, 119, 241, 0.25);
    border-color: #9E77F1;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(158, 119, 241, 0.2);
}


/* Stories Section */
.stories-section {
    background: #06041D;
    padding: 32px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.stories-header {
    text-align: left;
}

.stories-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.stories-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.stories-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

/* Stories avatars styling fixes */
.stories-section .story p {
    color: #FFFFFF !important;
    font-weight: 500;
}

/* Why Choose Us & App Banner Section */
.trust-app-section {
    background: #06041D;
    padding: 35px 0;
    position: relative;
    border-top: 1px solid rgba(158, 119, 241, 0.12);
}

.trust-tag {
    color: #9E77F1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.trust-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 6px;
}

.trust-subtitle {
    color: #82829E;
    font-size: 15px;
    font-weight: 400;
}

/* Trust Cards */
.trust-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: rgba(242, 201, 76, 0.3);
    box-shadow: 0 10px 30px rgba(124, 92, 228, 0.12);
    transform: translateY(-4px);
}

.trust-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(158, 119, 241, 0.12);
    color: #9E77F1;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon-box {
    background: #F2C94C;
    color: #06041D;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.4);
}

.trust-card-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-card-desc {
    color: #82829E;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* App Download Banner Card */
.app-banner-card {
    background: #120C31;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.app-banner-title {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight,
.app-banner-title .highlight {
    color: #F2C94C !important;
}

.app-banner-desc {
    color: #82829E;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Download Buttons */
.app-buttons {
    display: flex;
    gap: 12px;
}

.btn-app-download {
    background-color: rgba(158, 119, 241, 0.05);
    color: #FFFFFF !important;
    border: 1px solid rgba(158, 119, 241, 0.25);
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-app-download:hover {
    background-color: rgba(158, 119, 241, 0.15);
    border-color: #9E77F1;
    transform: translateY(-1px);
}

/* App Rating Badge */
.app-rating-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}

.app-rating-container .rating-stars i {
    color: #F2C94C;
    font-size: 14px;
    margin-right: 2px;
}

.rating-value-large {
    color: #F2C94C;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin: 4px 0;
}

.rating-count-text {
    color: #82829E;
    font-size: 13px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .app-banner-card {
        padding: 30px;
    }

    .app-banner-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: row;
        width: 100%;
    }

    .btn-app-download {
        flex: 1;
        justify-content: center;
    }

    .app-rating-container {
        display: block !important;
        margin-top: 15px;
        text-align: center !important;
    }
}

@media (max-width: 575px) {
    .app-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   NEW PREMIUM HOMEPAGE SECTIONS STYLING
   ========================================== */

/* Section Gold Title Styling */
.section-title-gold-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0E0B2A;
    padding: 0 20px;
    z-index: 10;
    white-space: nowrap;
}

.section-title-gold-wrapper::before,
.section-title-gold-wrapper::after {
    display: none;
}

.section-title-gold {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 10px rgba(242, 201, 76, 0.15);
}

.sparkle-gold {
    color: #F2C94C;
    font-size: 16px;
    animation: goldGlow 2.5s infinite ease-in-out alternate;
}

@keyframes goldGlow {
    from {
        text-shadow: 0 0 4px rgba(242, 201, 76, 0.4);
        transform: scale(0.95);
    }

    to {
        text-shadow: 0 0 12px rgba(242, 201, 76, 0.9);
        transform: scale(1.05);
    }
}

/* .premium-border-box is defined in the "5 New Premium Sections" block below */

/* 1. Why Customers Trust Section Styling */
.trust-highlights-section {
    background: #0E0B2A;
    padding: 32px 0;
}

.trust-highlights-card {
    border: 1px solid rgba(242, 201, 76, 0.25);
    border-radius: 24px;
    background: rgba(18, 12, 49, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 44px 30px 28px;
    position: relative;
    margin-top: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.trust-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(242, 201, 76, 0.08);
    border: 1px solid rgba(242, 201, 76, 0.35);
    color: #F2C94C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-item-new:hover .trust-icon-circle {
    background: #F2C94C;
    color: #080718;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.6);
}

.trust-text-block {
    display: flex;
    flex-direction: column;
}

.trust-title-new {
    color: #F2C94C !important;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 2px 0;
    font-family: 'Inter', sans-serif;
}

.trust-desc-new {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

.trust-divider-new {
    height: 45px;
    width: 1px;
    background-color: rgba(242, 201, 76, 0.2);
    margin: 0 15px;
    flex-shrink: 0;
}

/* 2. Free Astrology Tools Section Styling */
.free-tools-highlights-section {
    background: #0E0B2A;
    padding: 32px 0;
}

.tool-card-new {
    border-radius: 20px;
    border: 1px solid rgba(242, 201, 76, 0.25);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tool-card-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tool-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.45);
    box-shadow: 0 20px 40px rgba(242, 201, 76, 0.12);
}

.tool-kundli-new {
    background: linear-gradient(135deg, #2c085c 0%, #0d0630 100%);
}

.tool-matching-new {
    background: linear-gradient(135deg, #660a3b 0%, #15051b 100%);
}

.tool-card-body-new {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.tool-graphic-col {
    flex-shrink: 0;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-svg-icon {
    width: 100%;
    max-height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(242, 201, 76, 0.15));
}

.tool-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tool-title-new {
    color: #FFFFFF;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px 0;
    font-family: 'Playfair Display', Georgia, serif;
}

.tool-desc-new {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 22px 0;
}

.btn-tool-action {
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none !important;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-purple-new {
    background: linear-gradient(90deg, #673ab7, #512da8);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.4);
    border: 1px solid rgba(103, 58, 183, 0.5);
}

.btn-purple-new:hover {
    background: linear-gradient(90deg, #7e57c2, #673ab7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.6);
}

.btn-pink-new {
    background: linear-gradient(90deg, #e91e63, #c2185b);
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    border: 1px solid rgba(233, 30, 99, 0.5);
}

.btn-pink-new:hover {
    background: linear-gradient(90deg, #ec407a, #e91e63);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
}

/* 3. Talk to Astrologer By Category Section Styling */
.talk-categories-section {
    background: #0E0B2A;
    padding: 32px 0;
}

.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.category-card-new {
    background: rgba(18, 12, 49, 0.4);
    border: 1px solid rgba(242, 201, 76, 0.22);
    border-radius: 16px;
    padding: 24px 15px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.category-card-new:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 201, 76, 0.5);
    box-shadow: 0 12px 30px rgba(242, 201, 76, 0.15);
}

.category-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 15px;
}

.category-icon-wrap-new {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Specific colors for icon wrap backgrounds and icon colors */
.cat-love {
    background: rgba(235, 87, 87, 0.1);
    color: #eb5757;
    border: 1px solid rgba(235, 87, 87, 0.25);
}

.category-card-new:hover .cat-love {
    background: transparent;
    box-shadow: none;
}

.cat-career {
    background: rgba(86, 204, 242, 0.1);
    color: #56ccf2;
    border: 1px solid rgba(86, 204, 242, 0.25);
}

.category-card-new:hover .cat-career {
    background: transparent;
    box-shadow: none;
}

.cat-marriage {
    background: rgba(242, 201, 76, 0.1);
    color: #f2c94c;
    border: 1px solid rgba(242, 201, 76, 0.25);
}

.category-card-new:hover .cat-marriage {
    background: transparent;
    box-shadow: none;
}

.cat-finance {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border: 1px solid rgba(39, 174, 96, 0.25);
}

.category-card-new:hover .cat-finance {
    background: transparent;
    box-shadow: none;
}

.cat-health {
    background: rgba(155, 81, 224, 0.1);
    color: #9b51e0;
    border: 1px solid rgba(155, 81, 224, 0.25);
}

.category-card-new:hover .cat-health {
    background: transparent;
    box-shadow: none;
}

.cat-family {
    background: rgba(242, 153, 74, 0.1);
    color: #f2994a;
    border: 1px solid rgba(242, 153, 74, 0.25);
}

.category-card-new:hover .cat-family {
    background: transparent;
    box-shadow: none;
}

.category-name-new {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    font-family: 'Inter', sans-serif;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-category-talk {
    background-color: #F2C94C;
    color: #080718 !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border: none;
    display: inline-block;
    width: 100%;
}

.btn-category-talk:hover {
    background-color: #e0b32f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 201, 76, 0.35);
}

/* Media Queries for New Sections */
@media (max-width: 991px) {
    .trust-highlights-card {
        flex-direction: column;
        gap: 20px;
        padding: 45px 24px 24px;
        /* Maintain top padding for title alignment */
    }

    .trust-divider-new {
        display: none;
    }

    .trust-item-new {
        width: 100%;
        justify-content: flex-start;
    }

    .categories-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .tool-card-new {
        padding: 24px;
    }

    .premium-border-box {
        padding: 45px 20px 24px;
    }
}

@media (max-width: 767px) {
    .tool-card-body-new {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .tool-graphic-col {
        width: 110px;
    }

    .tool-text-col {
        align-items: center;
    }

    .tool-title-new {
        font-size: 22px;
    }

    .tool-desc-new {
        font-size: 13px;
    }

    .section-title-gold {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .section-title-gold-wrapper {
        padding: 0 12px;
        gap: 8px;
    }

    .sparkle-gold {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .categories-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card-new {
        padding: 16px 10px;
    }

    .category-name-new {
        font-size: 13px;
        min-height: 36px;
    }

    .btn-category-talk {
        padding: 7px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-title-gold {
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .section-title-gold-wrapper {
        padding: 0 8px;
        gap: 6px;
    }

    .sparkle-gold {
        font-size: 11px;
    }
}

/* ==========================================================================
   5 New Premium Sections Styling (Quick Answers, Horoscope, Store, Testimonials, App Download)
   ========================================================================== */

/* 1. Common Premium Box Styles — unified definition (gold border restored) */
.premium-border-box {
    position: relative;
    border: 1px solid rgba(242, 201, 76, 0.28);
    border-radius: 24px;
    padding: 44px 28px 28px;
    background: rgba(18, 12, 49, 0.45);
    margin-top: 20px;
    margin-bottom: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.section-subtitle-gold-desc {
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 20px;
}

/* 2. Need Quick Answers Banner */
.quick-answers-banner-section {
    padding: 32px 0;
}

.chat-banner-card-link {
    text-decoration: none !important;
    display: block;
}

.chat-banner-card {
    background: linear-gradient(105deg, #130830 0%, #2a0d55 45%, #1a0535 100%);
    border: 1px solid rgba(120, 60, 220, 0.35);
    border-radius: 16px;
    padding: 24px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.chat-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 92, 228, 0.35);
}

/* Chat bubble graphic (left column) */
.chat-banner-graphic-wrap {
    position: relative;
    width: 110px;
    height: 90px;
    flex-shrink: 0;
}

.bubble-purple {
    position: absolute;
    top: 0;
    left: 0;
    background: #6B21A8;
    color: #fff;
    width: 72px;
    height: 56px;
    border-radius: 12px 12px 12px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(107, 33, 168, 0.5);
    z-index: 2;
}

.bubble-yellow {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #F2C94C;
    color: #1a0535;
    width: 68px;
    height: 54px;
    border-radius: 12px 12px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(242, 201, 76, 0.4);
    z-index: 1;
}

/* Middle text + bullets */
.chat-banner-title {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    white-space: nowrap;
}

.chat-banner-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.chat-banner-bullets li {
    color: #D3CDE6;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-yellow {
    color: #F2C94C;
    font-size: 13px;
    flex-shrink: 0;
}

/* Right CTA box */
.chat-banner-cta-box {
    background: rgba(30, 5, 50, 0.7);
    border: 1.5px solid #FF007F;
    border-radius: 14px;
    padding: 18px 24px;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 18px rgba(255, 0, 127, 0.2);
    min-width: 260px;
}

.chat-banner-card:hover .chat-banner-cta-box {
    background: rgba(30, 5, 50, 0.9);
    box-shadow: 0 0 28px rgba(255, 0, 127, 0.35);
}

.cta-inner {
    width: 100%;
}

/* White outlined icon circle — matches reference */
.cta-icon-circle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 14px;
    flex-shrink: 0;
}

.cta-text-wrap {
    display: flex;
    flex-direction: column;
}

/* Large pink "Start Chat Now" text */
.cta-title {
    color: #FF007F;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cta-subtitle {
    color: #A39EBD;
    font-size: 12px;
    margin-top: 3px;
}

.cta-arrow {
    color: #FF007F;
    font-size: 18px;
    transition: transform 0.2s;
    margin-left: 10px;
}

.chat-banner-card:hover .cta-arrow {
    transform: translateX(5px);
}

/* Zodiac Unicode symbol inside horo-icon-circle */
.zodiac-symbol {
    font-size: 22px;
    line-height: 1;
    color: #F2C94C;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    user-select: none;
}

.horo-item-link:hover .zodiac-symbol {
    color: #06041D;
}

/* DB image inside horo circle — fitted & centered */
.horo-sign-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    padding: 8px;
    transition: filter 0.3s ease;
}

.horo-item-link:hover .horo-sign-img {
    filter: brightness(0) invert(0.1);
}

/* 3. Daily Horoscope Section */
.daily-horoscope-banner-section {
    padding: 16px 0;
}

.horoscope-row-scroll-container {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    padding: 10px 0;
}

.horoscope-row-scroll-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.horoscope-items-wrap {
    display: flex;
    gap: 16px;
    align-items: center;
}

.horo-item-link {
    text-decoration: none !important;
    flex-shrink: 0;
}

.horo-sign-item {
    width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.horo-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(242, 201, 76, 0.3);
    background: rgba(18, 12, 49, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F2C94C;
    font-size: 20px;
    transition: all 0.3s ease;
}

.horo-item-link:hover .horo-icon-circle {
    border-color: #F2C94C;
    background: #F2C94C;
    color: #06041D;
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.4);
    transform: scale(1.05);
}

.horo-sign-name {
    color: #D3CDE6;
    font-size: 12px;
    font-weight: 500;
}

.horo-item-link:hover .horo-sign-name {
    color: #FFFFFF;
}

/* View All Horoscope Card */
.view-all-horo-link {
    margin-left: auto;
}

.view-all-card {
    width: 120px;
    height: 54px;
    border: 1px solid rgba(242, 201, 76, 0.4);
    border-radius: 8px;
    background: rgba(18, 12, 49, 0.6);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.view-all-title {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.view-all-arrow {
    color: #F2C94C;
    font-size: 14px;
    transition: transform 0.2s;
}

.view-all-horo-link:hover .view-all-card {
    background: rgba(242, 201, 76, 0.1);
    border-color: #F2C94C;
}

.view-all-horo-link:hover .view-all-arrow {
    transform: translateX(4px);
}

/* 4. Explore Our Store Section */
.explore-store-section {
    padding: 32px 0;
}

.store-sub-box {
    background: linear-gradient(180deg, #1C0F43 0%, #0E0729 100%);
    border: 1px solid rgba(158, 119, 241, 0.25);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.store-sub-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.store-sub-title {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.store-view-all-link {
    color: #F2C94C;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s;
}

.store-view-all-link:hover {
    color: #ffd863;
}

.store-card-link {
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-product-card {
    background: #08031E;
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 12px;
    padding: 12px 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.store-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 201, 76, 0.4);
    box-shadow: 0 6px 20px rgba(124, 92, 228, 0.25);
    background: #0D062E;
}

.store-img-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.store-illustration {
    width: 54px;
    height: 54px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.store-product-card:hover .store-illustration {
    transform: scale(1.1);
}

.store-product-name {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.store-product-price {
    color: #F2C94C;
    font-size: 14px;
    font-weight: 700;
}

/* Sacred Products card style with CTA buttons */
.product-item-cta-card {
    padding-bottom: 14px;
}

.btn-product-cta {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s;
    background: transparent;
}

.btn-book-now {
    border: 1px solid #FF9500;
    color: #FF9500;
}

.btn-book-now:hover {
    background: #FF9500;
    color: #06041D;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.3);
}

.btn-shop-now {
    border: 1px solid #F2C94C;
    color: #F2C94C;
}

.btn-shop-now:hover {
    background: #F2C94C;
    color: #06041D;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.3);
}

/* 5. What Our Customers Say (Testimonials) Section */
.customers-say-section {
    padding: 32px 0;
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 40px;
    margin-top: 24px;
}

.testimonial-card-new {
    background: rgba(18, 12, 49, 0.8);
    border: 1px solid rgba(158, 119, 241, 0.15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    height: 100%;
}

.testimonial-card-new:hover {
    border-color: rgba(242, 201, 76, 0.4);
    box-shadow: 0 6px 20px rgba(124, 92, 228, 0.2);
}

.testimonial-stars-new {
    color: #F2C94C;
    font-size: 12px;
    margin-bottom: 12px;
}

.testimonial-text-new {
    color: #D3CDE6;
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
    min-height: 70px;
    margin-bottom: 16px;
}

.testimonial-user-new {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(242, 201, 76, 0.4);
}

.user-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info-new {
    display: flex;
    flex-direction: column;
}

.user-name {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
}

.user-location {
    color: #82829E;
    font-size: 12px;
}

/* Custom Navigation Arrows */
.testi-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(18, 12, 49, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s;
    outline: none !important;
}

.testi-nav-arrow:hover {
    background: #F2C94C;
    color: #06041D;
    border-color: #F2C94C;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.4);
}

.arrow-left {
    left: -10px;
}

.arrow-right {
    right: -10px;
}

/* Testimonials Dots Styling */
.testimonials-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonials-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}

.testimonials-slider-dots .dot.active {
    background: #F2C94C;
    transform: scale(1.2);
}

/* 6. Download App Banner Section */
.download-app-banner-section {
    padding: 32px 0 40px;
}

/* Card: flex row, images fully contained */
.app-banner-card-new {
    background: linear-gradient(105deg, #1a0535 0%, #2e0a5a 40%, #3d0848 100%);
    border: 1px solid rgba(120, 60, 200, 0.3);
    border-radius: 18px;
    height: 160px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    gap: 0;
}

/* Phone: first flex child, aligned to bottom of card */
.app-phone-col {
    flex-shrink: 0;
    width: 150px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
}

.app-phone-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
}

/* Title + description — flex: 1, vertically centered */
.app-text-col {
    flex: 1;
    min-width: 0;
    align-self: center;
    padding: 0 20px;
}

.app-title-new {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.app-desc-new {
    color: #C4BAE0;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* Store buttons — vertically centered, side by side */
.app-buttons-col {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-self: center;
    padding: 0 20px;
}

.app-store-badge-link {
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 8px;
    overflow: hidden;
}

.app-store-badge-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 92, 228, 0.25);
}

.app-store-badge-img {
    height: 48px;
    width: auto;
    display: block;
}

.btn-store-download-new {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    text-decoration: none !important;
    transition: all 0.2s;
    min-width: 150px;
}

.btn-store-download-new:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: #1c1c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-store-download-new i {
    font-size: 26px;
    flex-shrink: 0;
}

.btn-store-text-new {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-mini {
    font-size: 9px;
    color: #aaaaaa;
    letter-spacing: 0.5px;
}

.download-main {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Ganesha: last flex child, aligned to bottom of card */
.app-ganesha-col {
    flex-shrink: 0;
    width: 160px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: stretch;
}

.app-ganesha-img {
    height: 155px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ==========================================================================
   Responsive Media Queries for 5 New Sections
   ========================================================================== */
@media (max-width: 1199px) {
    .app-banner-card-new {
        height: auto;
        align-items: center;
        padding: 20px 0;
        flex-wrap: wrap;
        gap: 10px;
    }

    .app-phone-col {
        display: none;
    }

    .app-ganesha-col {
        display: none;
    }

    .app-text-col {
        padding: 0 20px;
    }

    .app-buttons-col {
        padding: 0 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .app-banner-card-new {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .app-buttons-col {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 991px) {
    .chat-banner-card {
        padding: 24px 20px;
        flex-wrap: wrap;
        gap: 16px;
    }

    .premium-border-box {
        padding: 30px 16px 20px 16px;
    }
}

@media (max-width: 767px) {
    .chat-banner-title {
        font-size: 18px;
    }

    .cta-title {
        font-size: 18px;
    }

    .chat-banner-cta-box {
        min-width: unset;
        width: 100%;
    }

    .store-sub-box {
        margin-bottom: 20px;
    }

    .testimonials-carousel-wrapper {
        padding: 0 10px;
    }

    .arrow-left {
        left: -15px;
    }

    .arrow-right {
        right: -15px;
    }
}

@media (max-width: 575px) {
    .section-title-gold {
        font-size: 15px;
    }

    .section-title-gold-wrapper {
        padding: 0 12px;
    }

    .chat-banner-bullets {
        gap: 6px;
    }

    .app-store-buttons-new {
        flex-direction: column;
        gap: 10px;
    }

    .btn-store-download-new {
        justify-content: center;
    }

    .app-title-new {
        font-size: 20px;
    }

    .app-store-badge-img {
        height: 40px !important;
    }
}

/* ===== Category SVG Icons – full visual, no circle clip ===== */
.cat-svg-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.category-card-new:hover .cat-svg-icon {
    transform: scale(1.1);
}

/* ===== Store Product Icons ===== */
/* SVGs are 120×120 with built-in background — display at full size, no clipping */
.store-product-icon {
    width: 90px;
    height: 90px;
    border-radius: 0;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.store-svg-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.store-product-card:hover .store-product-icon,
.store-product-card:hover .store-svg-icon {
    transform: scale(1.06);
}

/* Glow classes — SVGs have their own background; these are no-ops to avoid double styling */
.red-heart-glow,
.orange-gift-glow,
.yellow-ring-glow,
.bear-glow,
.yellow-diya-glow,
.rudraksha-glow,
.blue-gem-glow,
.gold-yantra-glow {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Zodiac Upload Image styles */
.zodiac-upload-img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.horo-item-link:hover .zodiac-upload-img {
    transform: scale(1.1);
}