/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.javimunRestoreYogaNestBody {
    background-color: #060708;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.javimunRestoreYogaNestContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1.javimunRestoreYogaNestHeroH1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFC55E;
}

h2.javimunRestoreYogaNestH2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #FFC55E;
}

h2.javimunRestoreYogaNestH2::after {
    content: '✦';
    font-size: 1rem;
    display: block;
    color: #FFC55E;
    margin-top: 10px;
}

h3 {
    color: #FFC55E;
    margin-bottom: 15px;
}

/* Header & Nav */
header.javimunRestoreYogaNestHeader {
    background: #060708;
    border-bottom: 2px solid #FFC55E;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.javimunRestoreYogaNestFlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.javimunRestoreYogaNestLogo {
    font-size: 24px;
    font-weight: bold;
    color: #FFC55E;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.javimunRestoreYogaNestNavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.javimunRestoreYogaNestNavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.javimunRestoreYogaNestNavLink:hover {
    color: #FFC55E;
}

/* Mobile Menu Burger (No JS) */
.javimunRestoreYogaNestBurgerToggle {
    display: none;
}

.javimunRestoreYogaNestBurgerLabel {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.javimunRestoreYogaNestBurgerLabel span {
    width: 30px;
    height: 3px;
    background: #FFC55E;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.javimunRestoreYogaNestHero {
    padding: 100px 0;
    background: linear-gradient(180deg, #060708 0%, #0a0c0e 100%);
}

.javimunRestoreYogaNestHeroGrid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.javimunRestoreYogaNestHeroImageCol,
.javimunRestoreYogaNestHeroTextCol {
    flex: 1;
}

.javimunRestoreYogaNestHeroImg {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 197, 94, 0.1);
}

.javimunRestoreYogaNestHeroMiniReview {
    background: #111315;
    padding: 20px;
    border-left: 4px solid #FFC55E;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    width: 90%;
    margin-left: auto;
    border-radius: 0 10px 10px 0;
}

.javimunRestoreYogaNestMiniReviewText {
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.javimunRestoreYogaNestMiniReviewAuthor {
    font-weight: bold;
    color: #FFC55E;
    font-size: 0.85rem;
}

.javimunRestoreYogaNestHeroSub {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.javimunRestoreYogaNestHeroP {
    margin-bottom: 20px;
    color: #b0b0b0;
}

/* Buttons */
.javimunRestoreYogaNestBtnPrimary {
    display: inline-block;
    background: #FFC55E;
    color: #060708;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFC55E;
}

.javimunRestoreYogaNestBtnPrimary:hover {
    background: transparent;
    color: #FFC55E;
    box-shadow: 0 0 15px rgba(255, 197, 94, 0.4);
}

.javimunRestoreYogaNestBtnOutline {
    display: inline-block;
    background: transparent;
    color: #FFC55E;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFC55E;
}

.javimunRestoreYogaNestBtnOutline:hover {
    background: #FFC55E;
    color: #060708;
}

/* Reviews */
.javimunRestoreYogaNestReviews {
    padding: 80px 0;
    background: #060708;
}

.javimunRestoreYogaNestReviewItem {
    display: flex;
    gap: 30px;
    background: #0a0c0e;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #1a1c1e;
}

.javimunRestoreYogaNestReviewAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #FFC55E;
    object-fit: cover;
}

.javimunRestoreYogaNestReviewName {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.javimunRestoreYogaNestReviewRating {
    color: #FFC55E;
    margin-bottom: 15px;
}

/* Pricing */
.javimunRestoreYogaNestPricing {
    padding: 80px 0;
    background: #0a0c0e;
}

.javimunRestoreYogaNestPricingGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.javimunRestoreYogaNestPriceCard {
    flex: 1 1 300px;
    max-width: 350px;
    background: #060708;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #FFC55E;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.javimunRestoreYogaNestPriceCardFeatured {
    border-width: 3px;
    transform: scale(1.05);
    background: #0d0f11;
}

.javimunRestoreYogaNestPriceTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.javimunRestoreYogaNestPriceValue {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 25px;
    color: #FFC55E;
}

.javimunRestoreYogaNestPriceFeatures {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.javimunRestoreYogaNestPriceFeatures li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.javimunRestoreYogaNestPriceFeatures li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

/* Who Needs */
.javimunRestoreYogaNestWho {
    padding: 80px 0;
}

.javimunRestoreYogaNestWhoGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.javimunRestoreYogaNestWhoItem {
    background: #0a0c0e;
    padding: 30px;
    border-radius: 15px;
}

.javimunRestoreYogaNestWhoImg {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Benefits */
.javimunRestoreYogaNestBenefits {
    padding: 80px 0;
    background: #0a0c0e;
}

.javimunRestoreYogaNestBenefitsFlex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.javimunRestoreYogaNestBenefitsText {
    flex: 1;
}

.javimunRestoreYogaNestBenefitsImage {
    flex: 1;
}

.javimunRestoreYogaNestBenefitsImg {
    width: 100%;
    border-radius: 20px;
}

.javimunRestoreYogaNestBenefitsList {
    list-style: none;
}

.javimunRestoreYogaNestBenefitsList li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.javimunRestoreYogaNestBenefitsList li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #FFC55E;
}

/* Expert Section */
.javimunRestoreYogaNestExpert {
    padding: 100px 0;
    background: #060708;
}

.javimunRestoreYogaNestExpertCard {
    background: #111315;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    border: 1px dashed #FFC55E;
}

.javimunRestoreYogaNestQuote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.javimunRestoreYogaNestExpertName {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFC55E;
}

/* FAQ */
.javimunRestoreYogaNestFaq {
    padding: 80px 0;
}

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

.javimunRestoreYogaNestFaqItem {
    background: #0a0c0e;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.javimunRestoreYogaNestFaqSummary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFC55E;
    list-style: none;
}

.javimunRestoreYogaNestFaqAnswer {
    padding: 0 20px 20px 20px;
    color: #b0b0b0;
}

/* Text Sections */
.javimunRestoreYogaNestTextSection {
    padding: 80px 0;
}

.javimunRestoreYogaNestSectionAlt {
    background: #0a0c0e;
}

.javimunRestoreYogaNestP {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.javimunRestoreYogaNestTextList {
    margin: 20px 0 30px 20px;
    list-style: square;
    color: #FFC55E;
}

.javimunRestoreYogaNestTextList li {
    margin-bottom: 10px;
}

/* Form */
.javimunRestoreYogaNestContact {
    padding: 100px 0;
    background: #0a0c0e;
}

.javimunRestoreYogaNestFormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #060708;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #1a1c1e;
}

.javimunRestoreYogaNestInputGroup {
    margin-bottom: 20px;
}

.javimunRestoreYogaNestLabel {
    display: block;
    margin-bottom: 8px;
    color: #FFC55E;
}

.javimunRestoreYogaNestInput,
.javimunRestoreYogaNestTextarea {
    width: 100%;
    padding: 15px;
    background: #111315;
    border: 1px solid #333;
    color: #fff;
    border-radius: 5px;
}

.javimunRestoreYogaNestTextarea {
    height: 120px;
    resize: vertical;
}

.javimunRestoreYogaNestCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.javimunRestoreYogaNestCheckbox {
    margin-top: 5px;
}

.javimunRestoreYogaNestCheckboxLabel {
    font-size: 0.85rem;
    color: #888;
}

.javimunRestoreYogaNestCheckboxLabel a {
    color: #FFC55E;
}

.javimunRestoreYogaNestBtnSubmit {
    width: 100%;
    background: #FFC55E;
    border: none;
    padding: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer */
.javimunRestoreYogaNestFooter {
    background: #060708;
    padding: 60px 0 30px;
    border-top: 1px solid #1a1c1e;
}

.javimunRestoreYogaNestFooterTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.javimunRestoreYogaNestFooterBrand {
    font-size: 1.5rem;
    color: #FFC55E;
    font-weight: bold;
}

.javimunRestoreYogaNestFooterContact p {
    margin-bottom: 5px;
    color: #888;
}

.javimunRestoreYogaNestFooterContact a {
    color: #FFC55E;
    text-decoration: none;
}

.javimunRestoreYogaNestFooterBottom {
    padding-top: 30px;
    border-top: 1px solid #1a1c1e;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #555;
    font-size: 0.9rem;
}

.javimunRestoreYogaNestFooterLinks {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.javimunRestoreYogaNestFooterLinks a {
    color: #555;
    text-decoration: none;
}

.javimunRestoreYogaNestFooterLinks a:hover {
    color: #FFC55E;
}

/* Responsiveness */
@media (max-width: 992px) {
    .javimunRestoreYogaNestHeroGrid,
    .javimunRestoreYogaNestBenefitsFlex {
        flex-direction: column;
    }
    
    .javimunRestoreYogaNestWhoGrid {
        grid-template-columns: 1fr;
    }

    h1.javimunRestoreYogaNestHeroH1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .javimunRestoreYogaNestBurgerLabel {
        display: flex;
    }

    .javimunRestoreYogaNestNav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #060708;
        display: none;
        padding: 20px;
        border-bottom: 1px solid #FFC55E;
    }

    .javimunRestoreYogaNestNavList {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .javimunRestoreYogaNestBurgerToggle:checked ~ .javimunRestoreYogaNestNav {
        display: block;
    }

    .javimunRestoreYogaNestPriceCardFeatured {
        transform: none;
    }
    
    .javimunRestoreYogaNestReviewItem {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}