/* ============================================================
   PAGE: SOUND HEALING (/sound-healing)
   ============================================================ */

/* Hero Section */
.sh-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.sh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.sh-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 11, 26, 0.3), rgba(13, 11, 26, 0.8));
    z-index: 2;
}

.sh-hero__content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.sh-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.sh-hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-style: italic;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.sh-hero__btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.sh-hero__btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
}

.sh-hero__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    opacity: 0.3;
}

.pulse-circle {
    transform-origin: center;
    animation: pulseWave 4s infinite linear;
}

.pulse-circle.delay-1 {
    animation-delay: 2s;
}

@keyframes pulseWave {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Definition Section */
.sh-definition {
    padding: 100px 0;
    background: var(--bg-dark);
}

.sh-definition__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sh-def-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition);
}

.sh-def-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 160, 23, 0.3);
}

.sh-def-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.sh-def-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.sh-def-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Timeline Section */
.sh-timeline-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #151221);
    overflow: hidden;
}

.sh-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    padding: 0 20px;
}

.sh-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.sh-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.sh-step.active {
    opacity: 1;
    transform: translateY(-10px);
}

.sh-step__icon {
    width: 80px;
    height: 80px;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.sh-step.active .sh-step__icon {
    border-color: var(--gold);
    background: #1a1626;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}

.sh-step__content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.sh-step__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sh-step__time {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 4px;
    text-transform: uppercase;
}


/* Results Section */
.sh-results {
    padding: 100px 0;
    background: var(--bg-section);
}

.sh-results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.sh-res-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 32px;
    border-radius: var(--radius);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.sh-res-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sh-res-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sh-res-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.sh-res-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.sh-results__note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Instruments Marquee */
.sh-instruments {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee__content {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.2rem;
    font-family: var(--font-display);
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition);
}

.marquee-item:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold);
    transform: scale(1.05);
}

.marquee-icon {
    font-size: 1.8rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Tips Section */
.sh-tips {
    padding: 80px 0;
    background: var(--bg-section);
}

.sh-tips__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sh-tip {
    text-align: center;
}

.sh-tip h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.sh-tip p {
    color: var(--text-muted);
}

/* Formats Section */
.sh-formats {
    padding: 100px 0;
    background: var(--bg-dark);
}

.sh-formats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.format-card {
    background: var(--bg-card);
    padding: 40px 24px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition);
}

.format-card:hover {
    transform: translateY(-5px);
}

.format-card.popular {
    border-color: var(--gold);
    background: linear-gradient(to bottom, #1d1929, #151221);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.format-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.format-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    height: 40px;
    /* fixed height for alignment */
}

.format-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 0 24px 0;
}

.format-card span {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.1rem;
}

/* Reviews Section */
.sh-reviews {
    padding: 100px 0;
    background: #08060e;
    overflow: hidden;
}

.sh-reviews__carousel-container {
    width: 100%;
    overflow: hidden;
}

.sh-reviews__track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marqueeScroll 60s linear infinite;
}

.review-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.review-card cite {
    font-family: var(--font-display);
    color: var(--gold);
    font-style: normal;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Section */
.sh-faq {
    padding: 100px 0;
    background: var(--bg-section);
}

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

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item__q {
    padding: 24px 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-item__q:hover {
    color: var(--gold);
}

.faq-item__q .arr {
    font-size: 0.8rem;
    transition: transform var(--transition);
    color: rgba(255, 255, 255, 0.3);
}

.faq-item.active .faq-item__q .arr {
    transform: rotate(180deg);
    color: var(--gold);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-item__a {
    max-height: 200px;
    /* Approximate max height */
}

.faq-item__a p {
    padding-bottom: 24px;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Section */
.sh-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(13, 11, 26, 0.9), rgba(13, 11, 26, 0.9)), url('../photos/robert_vystuplenie_s_fioletovym_svetom.jpg') center/cover fixed;
    text-align: center;
}

.sh-cta h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

.sh-cta__btns {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Responsive Sound Healing */
@media (max-width: 1024px) {
    .sh-definition__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .sh-results__grid,
    .sh-tips__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-formats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sh-timeline {
        overflow-x: auto;
        padding-bottom: 40px;
        justify-content: start;
        gap: 40px;
    }

    .sh-timeline::before {
        width: 1000px;
        /* extend line for scroll */
    }

    .sh-step {
        flex: 0 0 120px;
    }
}

@media (max-width: 768px) {
    .sh-hero__title {
        font-size: 2.5rem;
    }

    .sh-results__grid,
    .sh-tips__grid,
    .sh-formats__grid {
        grid-template-columns: 1fr;
    }

    .sh-cta__btns {
        flex-direction: column;
        align-items: center;
    }

    .sh-cta__btns .btn {
        width: 100%;
        max-width: 300px;
    }
}