/* ========================================
   READINGS PAGE - VIBRANT & INSPIRING STYLES
   ======================================== */

/* Hero Section */
.readings-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 30%, #4a1942 70%, #1a0a2e 100%);
}

.readings-hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://ana-new-site.b-cdn.net/images/compressed_life-coaching.jpg') center center;
    background-size: cover;
    opacity: 0.25;
    filter: blur(2px);
}

.readings-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, transparent 70%),
                radial-gradient(ellipse at 20% 80%, rgba(236, 72, 153, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%);
}

.readings-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.readings-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9a8d4 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtext {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-glow {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 50%, #fbbf24 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.4),
                0 0 60px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(236, 72, 153, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Empathy Section */
.empathy-section {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f051d 100%);
    padding: 6rem 0;
    position: relative;
}

.empathy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
}

.empathy-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.empathy-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.3),
                0 0 100px rgba(139, 92, 246, 0.2);
    border: 3px solid rgba(236, 72, 153, 0.4);
}

.empathy-text h2 {
    font-size: 2.5rem;
    color: #f9a8d4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.empathy-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.empathy-highlight {
    font-size: 1.4rem !important;
    color: #fbbf24 !important;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0 !important;
}

/* Transformation Section */
.transformation-section {
    background: linear-gradient(135deg, #2d1b4e 0%, #4a1942 50%, #2d1b4e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.transformation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.section-title-glow {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.transform-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.transform-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.transform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.transform-card h3 {
    font-size: 1.3rem;
    color: #f9a8d4;
    margin-bottom: 1rem;
}

.transform-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Promise Section */
.promise-section {
    background: linear-gradient(180deg, #0f051d 0%, #1a0a2e 100%);
    padding: 6rem 0;
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.promise-image img {
    width: 100%;
    max-width: 380px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(236, 72, 153, 0.4),
                0 0 120px rgba(139, 92, 246, 0.2);
    border: 4px solid rgba(251, 191, 36, 0.5);
}

.promise-text h2 {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.promise-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.promise-highlight {
    font-size: 1.3rem !important;
    color: #f9a8d4 !important;
    font-weight: 600;
    font-style: italic;
}

/* How It Works Section */
.how-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
    padding: 6rem 0;
}

.steps-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.step-item {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.step-item h3 {
    font-size: 1.3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    margin-top: 50px;
    border-radius: 3px;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials Section */
.testimonials-heart {
    background: linear-gradient(180deg, #2d1b4e 0%, #4a1942 50%, #2d1b4e 100%);
    padding: 6rem 0;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-heart-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(236, 72, 153, 0.3);
    transition: all 0.3s ease;
}

.testimonial-heart-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.2);
}

.quote-mark {
    font-size: 5rem;
    color: rgba(236, 72, 153, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-name {
    font-size: 1rem;
    color: #f9a8d4;
    font-weight: 600;
    text-align: right;
}

/* Topics Section */
.topics-section {
    background: linear-gradient(180deg, #1a0a2e 0%, #0f051d 100%);
    padding: 5rem 0;
    text-align: center;
}

.topics-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.topics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.topic-pill {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.topic-pill:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4) 0%, rgba(139, 92, 246, 0.4) 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(236, 72, 153, 0.3);
}

/* FAQ Section */
.faq-warm {
    background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
    padding: 5rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-warm {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item-warm:hover {
    border-color: rgba(236, 72, 153, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item-warm h3 {
    font-size: 1.15rem;
    color: #f9a8d4;
    margin-bottom: 0.8rem;
}

.faq-item-warm p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #4a1942 0%, #2d1b4e 50%, #1a0a2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.8rem;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.4);
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cta-highlight {
    font-size: 1.4rem !important;
    color: #f9a8d4 !important;
    font-weight: 600;
    font-style: italic;
    margin: 1.5rem 0 !important;
}

.cta-button-final {
    background: linear-gradient(135deg, #fbbf24 0%, #ec4899 50%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 15px 50px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0 1rem;
}

.cta-button-final:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.5);
}

.cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .readings-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtext {
        font-size: 1.1rem;
    }
    
    .empathy-content,
    .promise-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .empathy-image,
    .promise-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .empathy-image img,
    .promise-image img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .steps-flow {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .section-title-glow {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .readings-hero {
        min-height: 70vh;
    }
    
    .readings-hero h1 {
        font-size: 1.8rem;
    }
    
    .empathy-text h2,
    .promise-text h2 {
        font-size: 1.8rem;
    }
    
    .transform-card {
        padding: 1.5rem;
    }
    
    .cta-button-glow,
    .cta-button-final {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .topic-pill {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}
