/* Life Path Information Section */

.life-path-info-section {
    background: transparent;
    padding: var(--space-8xl) 0;
    position: relative;
}

.life-path-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Grid Areas */
.text-content {
    grid-area: 1 / 1 / 2 / 2;
}

.infographic {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-numbers {
    grid-area: 2 / 1 / 3 / 2;
}

.karmic-debt {
    grid-area: 2 / 2 / 3 / 3;
}

/* Text Content Block */
.section-title {
    font-family: sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    background: linear-gradient(135deg, #8A2BE2 0%, #9370DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-text {
    font-family: sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Infographic Block */
.infographic-image {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.infographic-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Card Styling for Master Numbers and Karmic Debt */
.master-numbers,
.karmic-debt {
    background: linear-gradient(135deg, rgba(97, 97, 125, 0.2) 0%, rgba(97, 97, 125, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.master-numbers:hover,
.karmic-debt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-title {
    font-family: sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.2;
}

.numbers-display {
    font-family: sans-serif;
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    color: #A78BFA;
    text-shadow: 0 0 20px rgba(167, 139, 250, 0.4);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.numbers-display.karmic {
    color: #FCEA8A;
    text-shadow: 0 0 20px rgba(252, 234, 138, 0.4);
}

.master-numbers:hover .numbers-display {
    text-shadow: 0 0 30px rgba(167, 139, 250, 0.6);
    transform: scale(1.05);
}

.karmic-debt:hover .numbers-display.karmic {
    text-shadow: 0 0 30px rgba(252, 234, 138, 0.6);
    transform: scale(1.05);
}

.card-description {
    font-family: sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .life-path-info {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 30px;
        padding: 40px 15px;
    }

    .text-content {
        grid-area: 1 / 1 / 2 / 2;
    }

    .infographic {
        grid-area: 2 / 1 / 3 / 2;
    }

    .master-numbers {
        grid-area: 3 / 1 / 4 / 2;
    }

    .karmic-debt {
        grid-area: 4 / 1 / 5 / 2;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .section-text {
        font-size: 15px;
        text-align: center;
        margin-bottom: 16px;
    }

    .infographic-image {
        max-width: 320px;
    }

    .master-numbers,
    .karmic-debt {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .numbers-display {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .life-path-info {
        padding: 30px 10px;
        gap: 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .master-numbers,
    .karmic-debt {
        padding: 20px 15px;
    }

    .infographic-image {
        max-width: 280px;
    }
}

/* Animation for scroll-triggered effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.life-path-info > * {
    animation: fadeInUp 0.6s ease-out;
}

.life-path-info > *:nth-child(1) { animation-delay: 0.1s; }
.life-path-info > *:nth-child(2) { animation-delay: 0.2s; }
.life-path-info > *:nth-child(3) { animation-delay: 0.3s; }
.life-path-info > *:nth-child(4) { animation-delay: 0.4s; }