/* ════════════════════════════════════════════════════════════════════
   AstroBhagya Homepage V1 Refined Stylesheet (public/css/pages/index.css)
   Fully scoped to .astro-homepage-wrapper
   Uses canonical design tokens from public/css/variables.css
   ════════════════════════════════════════════════════════════════════ */

.astro-homepage-wrapper {
    font-family: var(--font-body, "Inter", sans-serif);
    color: #1f2937;
    background-color: #f8fafc;
    overflow-x: hidden;
    width: 100%;
}

/* ── 8. GLOBAL SECTION SPACING & SEPARATION RHYTHM ────────────────── */
.astro-homepage-wrapper section {
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .astro-homepage-wrapper section {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

.astro-homepage-wrapper .astro-hero-section {
    margin-top: 0;
    margin-bottom: 0;
}

.astro-homepage-wrapper .astro-trust-strip {
    margin-top: 0;
    margin-bottom: 0;
}

/* ── 1 & 6. UNIFIED FLUID HOMEPAGE CONTAINER SYSTEM ───────────────── */
.astro-homepage-wrapper .astro-fluid-container {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .astro-homepage-wrapper .astro-fluid-container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (min-width: 1200px) {
    .astro-homepage-wrapper .astro-fluid-container {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (min-width: 1600px) {
    .astro-homepage-wrapper .astro-fluid-container {
        padding-left: 64px;
        padding-right: 64px;
    }
}

/* ── CENTERED SECTION HEADINGS WITH INDEPENDENT VIEW MORE ACTION ─── */
.astro-section-header {
    position: relative;
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.astro-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 9999px;
    background-color: var(--color-primary-light, #fff7ed);
    border: 1px solid var(--color-primary-border, #fed7aa);
    color: var(--color-primary, #f37021);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.astro-section-title {
    font-family: var(--font-heading, "Poppins", sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    line-height: 1.25;
    margin-bottom: 6px;
    text-align: center;
}

@media (min-width: 768px) {
    .astro-section-title {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    .astro-section-title {
        font-size: 32px;
    }
}

.astro-section-subtitle {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 0;
    max-width: 620px;
    text-align: center;
    line-height: 1.4;
}

/* Independent Right-Aligned View More Action */
.astro-section-view-more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #f37021);
    text-decoration: none !important;
    padding: 6px 14px;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid var(--color-primary-border, #fed7aa);
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.astro-section-view-more:hover {
    background-color: var(--color-primary, #f37021);
    color: #ffffff;
    border-color: var(--color-primary, #f37021);
}

@media (max-width: 640px) {
    .astro-section-view-more {
        position: static;
        transform: none;
        margin-top: 12px;
    }
}

/* ── HERO CONTENT / CTA LAYOUT & HEIGHT BALANCE ───────────────────── */
.astro-hero-section {
    padding-top: 24px;
    padding-bottom: 32px;
    background: linear-gradient(180deg, #fff9e6 0%, #f8fafc 100%);
}

.astro-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

.astro-hero-slider-wrapper {
    order: 1;
}

.astro-hero-content {
    order: 2;
}

@media (min-width: 1024px) {
    .astro-hero-grid {
        grid-template-columns: 1fr 1.15fr;
        gap: 36px;
    }

    .astro-hero-content {
        order: 1;
    }

    .astro-hero-slider-wrapper {
        order: 2;
    }
}

.astro-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.astro-hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 9999px;
    background-color: var(--color-primary-light, #fff7ed);
    border: 1px solid var(--color-primary-border, #fed7aa);
    color: #c2410c;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.astro-hero-headline {
    font-family: var(--font-heading, "Poppins", sans-serif);
    font-size: 26px;
    font-weight: 800;
    color: var(--color-navy, #1a237e);
    line-height: 1.2;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .astro-hero-headline {
        font-size: 32px;
    }
}

@media (min-width: 1024px) {
    .astro-hero-headline {
        font-size: 38px;
    }
}

.astro-hero-headline span {
    color: var(--color-primary, #f37021);
}

.astro-hero-subtext {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Compact Side-by-Side Desktop CTA Stack */
.astro-hero-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    margin-bottom: 18px;
}

@media (min-width: 768px) {
    .astro-hero-cta-stack {
        flex-direction: row;
        align-items: center;
    }

    .astro-hero-primary-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .astro-hero-search-box {
        flex-grow: 1;
    }
}

.astro-hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #f37021, #e06015);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.3);
    transition: all 0.2s ease;
}

.astro-hero-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
    color: #ffffff !important;
}

.astro-hero-search-box {
    width: 100%;
    position: relative;
}

.astro-hero-search-input {
    width: 100%;
    padding: 11px 16px 11px 40px;
    border-radius: 9999px;
    border: 1.5px solid #cbd5e1;
    background-color: #ffffff;
    font-size: 13.5px;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.astro-hero-search-input:focus {
    outline: none;
    border-color: var(--color-primary, #f37021);
    box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.15);
}

.astro-hero-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
}

.astro-hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.astro-hero-tag-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
}

.astro-hero-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.astro-hero-tag:hover {
    border-color: var(--color-primary-border, #fed7aa);
    background-color: var(--color-primary-light, #fff7ed);
    color: var(--color-primary, #f37021);
    text-decoration: none;
}

/* ── BANNER SHARPER BORDER RADIUS (12PX) ─────────────────────────── */
.astro-hero-slider-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    position: relative;
}

#main-banner-slider.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #fff9e6;
    aspect-ratio: 16 / 9;
    /* Mobile */
}

@media (min-width: 768px) {
    #main-banner-slider.slider {
        aspect-ratio: 16 / 8;
        /* Tablet */
    }
}

@media (min-width: 1024px) {
    #main-banner-slider.slider {
        aspect-ratio: 16 / 6.5;
        /* Desktop */
    }
}

#main-banner-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease-in-out;
}

#main-banner-slider .slide a {
    display: block;
    width: 100%;
    height: 100%;
}

#main-banner-slider .slide img,
#main-banner-slider .slide video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px;
    display: block;
}

.bannerbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--color-navy, #1a237e);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.bannerbtn:hover {
    background: #ffffff;
    color: var(--color-primary, #f37021);
    transform: translateY(-50%) scale(1.08);
}

.bannerbtn-prev {
    left: 12px;
}

.bannerbtn-next {
    right: 12px;
}

.unmute-control {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
}

/* ── TRUST / VALUE STRIP ─────────────────────────────────────────── */
.astro-trust-strip {
    padding-top: 20px;
    padding-bottom: 24px;
    background-color: var(--color-white, #ffffff);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astro-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .astro-trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

.astro-trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--color-primary-border, #fed7aa);
    box-shadow: 0 2px 8px rgba(243, 112, 33, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.astro-trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.1);
}

.astro-trust-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: var(--color-primary-light, #fff7ed);
    color: var(--color-primary, #f37021);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.astro-trust-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    margin-bottom: 2px;
    line-height: 1.2;
}

.astro-trust-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.3;
}

/* ── MASTER ASTROLOGER SECTION ───────────────────────────────────── */
.master-astrologers-section {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-bg-neutral, #f8fafc);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.master-carousel-outer-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.master-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 8px 0 16px;
}

.master-carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
    overflow: visible;
}

.master-carousel-slide {
    flex: 0 0 270px;
    max-width: 270px;
    min-width: 0;
}

@media (min-width: 576px) {
    .master-carousel-slide {
        flex: 0 0 310px;
        max-width: 310px;
    }
}

@media (min-width: 992px) {
    .master-carousel-slide {
        flex: 0 0 340px;
        max-width: 340px;
    }
}

.master-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #cbd5e1;
    background-color: #ffffff;
    color: var(--color-navy, #1a237e);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.master-nav-btn:hover {
    border-color: var(--color-primary, #f37021);
    background-color: var(--color-primary, #f37021);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.master-nav-btn-prev {
    left: -12px;
}

.master-nav-btn-next {
    right: -12px;
}

@media (min-width: 1200px) {
    .master-nav-btn-prev {
        left: -20px;
    }

    .master-nav-btn-next {
        right: -20px;
    }
}

#masterCarouselIndicators {
    display: none !important;
}

/* ── LIVE SESSIONS ────────────────────────────────────────────────── */
.astroway-live-astrologers {
    padding-top: 36px;
    padding-bottom: 44px;
    background: linear-gradient(180deg, #111827 0%, #1e1e1e 100%);
    color: #ffffff;
}

.astroway-live-astrologers .astro-section-title {
    color: #ffffff;
}

.astroway-live-astrologers .astro-section-subtitle {
    color: #9ca3af;
}

.astro-live-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.25s ease;
    display: block;
}

.astro-live-card:hover {
    transform: translateY(-4px) scale(1.02);
}

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

.astro-live-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
}

.astro-live-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9999px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
}

.astro-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    animation: astroPulse 1.5s infinite;
}

@keyframes astroPulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.astro-live-info {
    color: #ffffff;
}

.astro-live-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
}

.astro-live-category {
    font-size: 12px;
    color: #d1d5db;
}

/* ── STORIES BAR ──────────────────────────────────────────────────── */
.astro-stories-section {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: var(--color-white, #ffffff);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.stories-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
    width: 72px;
}

.story-avatar-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, var(--color-primary, #f37021), #ffc107);
    margin-bottom: 6px;
    transition: transform 0.2s ease;
}

.story.viewed .story-avatar-ring {
    background: #cbd5e1;
}

.story:hover .story-avatar-ring {
    transform: scale(1.06);
}

.story-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
}

.story-name {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* ── FREE ASTROLOGY SERVICES ───────────────────────────────────────── */
.astroway-menu {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-bg-neutral, #f8fafc);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astro-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (max-width: 575px) {
    .astro-services-grid .astro-service-card:nth-child(5) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        max-width: calc(50% - 7px);
    }
}

@media (min-width: 576px) {
    .astro-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .astro-services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }
}

.astro-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.astro-service-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-border, #fed7aa);
    box-shadow: 0 12px 24px rgba(243, 112, 33, 0.1);
}

.astro-service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-primary-light, #fff7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.astro-service-card:hover .astro-service-icon-wrapper {
    transform: scale(1.1);
}

.astro-service-icon-wrapper img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.astro-service-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    margin-bottom: 4px;
}

.astro-service-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.3;
}

.astro-homepage-wrapper .astroway-expertise,
.astroway-expertise.astroway-expertise,
section.astroway-expertise {
    padding-top: 36px;
    padding-bottom: 44px;
    background: var(--color-bg-neutral, #f8fafc) !important;
    background-color: var(--color-bg-neutral, #f8fafc) !important;
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astro-homepage-wrapper .astroway-expertise::before,
.astroway-expertise.astroway-expertise::before,
section.astroway-expertise::before {
    display: none !important;
    background: none !important;
}

.astro-intent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .astro-intent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .astro-intent-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.astro-intent-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
    transition: all 0.25s ease;
    height: 100%;
}

.astro-intent-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary-border, #fed7aa);
    box-shadow: 0 12px 28px rgba(26, 35, 126, 0.08);
}

.astro-intent-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.astro-intent-card-1 .astro-intent-icon-wrapper {
    background: #fff7ed;
    color: #f37021;
}

.astro-intent-card-2 .astro-intent-icon-wrapper {
    background: #eff6ff;
    color: #2563eb;
}

.astro-intent-card-3 .astro-intent-icon-wrapper {
    background: #f0fdf4;
    color: #16a34a;
}

.astro-intent-card-4 .astro-intent-icon-wrapper {
    background: #fef3c7;
    color: #d97706;
}

.astro-intent-title {
    font-family: var(--font-heading, "Poppins", sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    margin-bottom: 6px;
}

.astro-intent-desc {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 14px;
}

.astro-intent-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary, #f37021);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ── DAILY HOROSCOPE ZODIAC GRID ─────────────────────────────────── */
.astro-horoscope-section {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-bg-neutral, #f8fafc);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astro-zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .astro-zodiac-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (min-width: 1024px) {
    .astro-zodiac-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
}

.astro-zodiac-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 10px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #fed7aa;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.astro-zodiac-card:hover {
    transform: translateY(-3px);
    background-color: var(--color-primary-light, #fff7ed);
    border-color: var(--color-primary, #f37021);
    box-shadow: 0 6px 16px rgba(243, 112, 33, 0.12);
}

.astro-zodiac-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 8px;
}

.astro-zodiac-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    margin-bottom: 2px;
}

.astro-zodiac-date {
    font-size: 11px;
    color: #6b7280;
}

/* ── CUSTOMER VIDEOS & MEDIA COVERAGE ────────────────────────────── */
.astroway-customer-stories {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-white, #ffffff);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astroway-publishers {
    padding-top: 28px;
    padding-bottom: 28px;
    background-color: #111827;
    color: #ffffff;
}

.publishers-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.publisher img {
    height: 38px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.25s ease;
}

.publisher:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* ── 1 & 2. BLOG SECTION (RESPONSIVE CAROUSEL & NATURAL CONTROLLED CARDS) ── */
.astroway-blog {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-bg-neutral, #f8fafc);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astroway-blog .owl-stage {
    display: flex;
}

.astroway-blog .owl-item {
    display: flex;
    justify-content: center;
}

.modern-blog-card {
    width: 100%;
    max-width: 350px;
    background-color: var(--color-white, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border-subtle, #e2e8f0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.modern-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.modern-blog-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #f1f5f9;
}

.modern-blog-img-wrapper img {
    width: 100%;
    height: 200px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

.modern-blog-card:hover .modern-blog-img-wrapper img {
    transform: scale(1.04);
}

.modern-blog-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.modern-blog-meta {
    font-size: 12px;
    color: var(--color-text-muted, #6b7280);
    margin-bottom: 8px;
    line-height: 1.3;
}

.modern-blog-author {
    color: var(--color-primary, #f37021);
    font-weight: 600;
}

.modern-blog-title-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    margin-bottom: 14px;
}

.modern-blog-title {
    font-family: var(--font-heading, "Poppins", sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy, #1a237e);
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.modern-blog-title-link:hover .modern-blog-title {
    color: var(--color-primary, #f37021);
}

.modern-blog-footer {
    margin-top: auto;
    padding-top: 4px;
}

.btn-readmore {
    display: inline-block;
    border: 1px solid var(--color-primary, #f37021);
    color: var(--color-primary, #f37021);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.btn-readmore:hover,
.btn-readmore:focus,
.btn-readmore:active {
    background-color: var(--color-primary, #f37021);
    color: #ffffff !important;
    border-color: var(--color-primary, #f37021);
}

.modern-read-more:hover {
    color: #e06015;
}

/* ── 6. FLUID FAQ SECTION (EXACT CONTAINER MATCH WITH FREE SERVICES) ─── */
.astro-faq-section {
    padding-top: 36px;
    padding-bottom: 44px;
    background-color: var(--color-bg-neutral, #f8fafc);
    border-bottom: 1px solid var(--color-border-subtle, #e2e8f0);
}

.astro-faq-container {
    width: 100%;
    /* Matches Free Services container exactly */
    margin-left: 0;
    margin-right: 0;
}

.astro-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 10px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.astro-faq-item:hover {
    border-color: #cbd5e1;
}

.astro-faq-item[open] {
    border-color: var(--color-primary-border, #fed7aa);
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.06);
}

.astro-faq-summary {
    padding: 16px 20px;
    font-family: var(--font-heading, "Poppins", sans-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-navy, #1a237e);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}

.astro-faq-summary::-webkit-details-marker {
    display: none;
}

.astro-faq-icon {
    font-size: 13px;
    color: var(--color-primary, #f37021);
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.astro-faq-item[open] .astro-faq-icon {
    transform: rotate(180deg);
}

.astro-faq-content {
    padding: 0 20px 18px 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #f1f5f9;
    margin-top: 2px;
    padding-top: 14px;
}
}