/* Free Sessions Page Specific Styles - Amora Eternal Light */

/* Free Hero Section */
.free-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: var(--section-pad-xl) 0 var(--section-pad-md);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.moon-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.moon-phase {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
}

.full-moon {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: glowMoon 8s infinite ease-in-out;
}

.star {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 3s infinite ease-in-out;
}

.star-1 { width: 3px; height: 3px; top: 20%; left: 15%; animation-delay: 0s; }
.star-2 { width: 2px; height: 2px; top: 40%; left: 80%; animation-delay: 1s; }
.star-3 { width: 4px; height: 4px; top: 60%; left: 25%; animation-delay: 2s; }
.star-4 { width: 2px; height: 2px; top: 30%; left: 60%; animation-delay: 1.5s; }
.star-5 { width: 3px; height: 3px; top: 70%; left: 45%; animation-delay: 0.5s; }

@keyframes glowMoon {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.05); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.free-hero-content .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.free-hero-content .hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.free-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.healing-circle {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulseCenter 4s infinite ease-in-out;
    z-index: 2;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: expandWave 6s infinite ease-in-out;
}

.wave-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.wave-2 {
    width: 280px;
    height: 280px;
    animation-delay: 2s;
}

.wave-3 {
    width: 360px;
    height: 360px;
    animation-delay: 4s;
}

.participant {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.participant-1 { top: 20%; left: 50%; transform: translateX(-50%); }
.participant-2 { top: 50%; right: 10%; transform: translateY(-50%); }
.participant-3 { bottom: 20%; left: 50%; transform: translateX(-50%); }
.participant-4 { top: 50%; left: 10%; transform: translateY(-50%); }

@keyframes pulseCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes expandWave {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Full Moon Section */
.full-moon-section {
    background-color: var(--section-light);
}

.moon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--button-radius);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.moon-badge i {
    color: var(--primary-color);
}

.full-moon-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.full-moon-content .lead {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.session-details {
    margin-bottom: 2.5rem;
}

.detail-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.detail-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.detail-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.detail-content p {
    color: var(--text-medium);
    margin: 0;
}

.session-date {
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 1.1rem;
}

.countdown-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    text-align: center;
}

.countdown-container h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.countdown-unit {
    text-align: center;
}

.countdown-unit .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-unit .label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-buttons {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.calendar-buttons h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.btn-group-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.btn-calendar {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-calendar:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.btn-calendar i {
    font-size: 1.8rem;
}

.full-moon-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moon-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.moon-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.moon-image {
    width: 120px;
    height: 120px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--primary-color);
    font-size: 3rem;
}

.moon-content h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.moon-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.moon-content li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.moon-content li:last-child {
    border-bottom: none;
}

.moon-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* WhatsApp Section */
.whatsapp-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.community-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.channel-card::before {
    background: linear-gradient(90deg, #25D366, #075E54);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
}

.whatsapp-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.whatsapp-card p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.community-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.feature i {
    color: #25D366;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

/* Other Sessions Section */
.free-session-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.free-session-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.session-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.free-session-card:hover .session-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.free-session-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.free-session-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.session-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.frequency, .duration {
    background: var(--primary-soft);
    color: var(--primary-dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonial-card-free {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card-free:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content .stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.testimonial-content p {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.author-info h5 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-accordion-free {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-item-free {
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}

.faq-item-free:last-child {
    border-bottom: none;
}

.faq-question-free {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question-free:hover {
    background: var(--primary-soft);
}

.faq-question-free.active {
    background: var(--primary-soft);
    color: var(--primary-color);
}

.faq-question-free i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question-free.active i {
    transform: rotate(45deg);
}

.faq-answer-free {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--section-alt);
}

.faq-answer-free.active {
    max-height: 500px;
}

.faq-answer-free p {
    padding: 1.5rem 2rem;
    margin: 0;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Free CTA Section */
.free-cta-section {
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--section-alt) 100%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .free-hero-content .hero-title {
        font-size: 3rem;
    }
    
    .free-hero-content .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-unit .number {
        font-size: 2rem;
    }
    
    .btn-group-calendar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .free-hero-section {
        padding: 6rem 0 2rem;
    }
    
    .free-hero-content .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .free-hero-content .hero-subtitle {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .detail-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .detail-icon {
        margin-right: 0;
    }
    
    .community-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .faq-question-free {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-free p {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .free-hero-content .hero-title {
        font-size: 2.2rem;
    }
    
    .free-hero-content .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .countdown-unit .number {
        font-size: 1.8rem;
    }
    
    .moon-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animations */
.free-session-card:nth-child(1) { animation-delay: 0.1s; }
.free-session-card:nth-child(2) { animation-delay: 0.2s; }
.free-session-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card-free:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-free:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card-free:nth-child(3) { animation-delay: 0.3s; }