/*
 * Pavimun - Style Isolation and Futuristic Theme
 */

/* RESET AND CORE */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body.pavimunYogaTempoFieldBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0B0020;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.pavimunYogaTempoFieldImgResponsive {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(185, 140, 255, 0.2);
}

.pavimunYogaTempoFieldCenter {
    text-align: center;
}

.pavimunYogaTempoFieldH1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #B98CFF;
    text-shadow: 0 0 15px rgba(185, 140, 255, 0.5);
}

.pavimunYogaTempoFieldH2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #B98CFF;
}

.pavimunYogaTempoFieldH3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

/* HEADER */
.pavimunYogaTempoFieldHeader {
    background-color: rgba(11, 0, 32, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #B98CFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

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

.pavimunYogaTempoFieldLogo {
    font-size: 2rem;
    font-weight: 800;
    color: #B98CFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.pavimunYogaTempoFieldNavLink {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pavimunYogaTempoFieldNavLink:hover {
    color: #B98CFF;
    text-shadow: 0 0 10px #B98CFF;
}

/* BURGER */
.pavimunYogaTempoFieldMenuCheck {
    display: none;
}

.pavimunYogaTempoFieldBurger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.pavimunYogaTempoFieldBurger span {
    width: 30px;
    height: 3px;
    background-color: #B98CFF;
    border-radius: 2px;
}

/* HERO */
.pavimunYogaTempoFieldHero {
    padding: 100px 0;
    background: linear-gradient(180deg, #0B0020 0%, #1a0033 100%);
}

.pavimunYogaTempoFieldHeroGrid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pavimunYogaTempoFieldHeroImage, .pavimunYogaTempoFieldHeroContent {
    flex: 1;
}

.pavimunYogaTempoFieldSub {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #B98CFF;
}

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

.pavimunYogaTempoFieldBtnPrimary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #B98CFF;
    color: #0B0020;
    text-decoration: none;
    font-weight: 800;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.pavimunYogaTempoFieldBtnPrimary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px #B98CFF;
    transform: translateY(-2px);
}

.pavimunYogaTempoFieldBtnSecondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #B98CFF;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #B98CFF;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pavimunYogaTempoFieldBtnSecondary:hover {
    background-color: #B98CFF;
    color: #0B0020;
}

.pavimunYogaTempoFieldHeroExtraImages {
    display: flex;
    gap: 30px;
    margin-top: 80px;
}

.pavimunYogaTempoFieldExtraItem {
    flex: 1;
}

.pavimunYogaTempoFieldExtraText {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #B98CFF;
    font-style: italic;
}

/* REVIEWS */
.pavimunYogaTempoFieldReviews {
    padding: 80px 0;
    background-color: #0B0020;
}

.pavimunYogaTempoFieldSlider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.pavimunYogaTempoFieldSliderArrow {
    font-size: 3rem;
    color: #B98CFF;
    cursor: pointer;
    user-select: none;
}

.pavimunYogaTempoFieldReviewCard {
    max-width: 800px;
    padding: 40px;
    background-color: #1a0033;
    border-left: 5px solid #B98CFF;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pavimunYogaTempoFieldQuote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.pavimunYogaTempoFieldAuthor {
    font-weight: 700;
    color: #B98CFF;
    display: block;
    text-align: right;
}

/* PRICES */
.pavimunYogaTempoFieldPrice {
    padding: 100px 0;
    background: #0B0020;
}

.pavimunYogaTempoFieldPriceGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pavimunYogaTempoFieldPriceCard {
    background-color: #1a0033;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(185, 140, 255, 0.1);
    transition: transform 0.3s ease;
}

.pavimunYogaTempoFieldPriceCard:hover {
    transform: translateY(-10px);
    border-color: #B98CFF;
}

.pavimunYogaTempoFieldPriceCardFeatured {
    border: 2px solid #B98CFF;
    background-color: #1a0033;
    box-shadow: 0 0 30px rgba(185, 140, 255, 0.2);
}

.pavimunYogaTempoFieldPriceIcon {
    font-size: 2.5rem;
    color: #B98CFF;
    margin-bottom: 20px;
}

.pavimunYogaTempoFieldPriceVal {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: #ffffff;
}

.pavimunYogaTempoFieldPriceList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

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

.pavimunYogaTempoFieldPriceList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #B98CFF;
}

/* BENEFITS */
.pavimunYogaTempoFieldBenefits {
    padding: 100px 0;
    background-color: #1a0033;
}

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

.pavimunYogaTempoFieldBenefitsContent, .pavimunYogaTempoFieldBenefitsImage {
    flex: 1;
}

.pavimunYogaTempoFieldCheckList {
    list-style: none;
    margin-top: 30px;
}

.pavimunYogaTempoFieldCheckList li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.pavimunYogaTempoFieldCheckList li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #B98CFF;
    font-size: 1.3rem;
}

/* FOR WHOM */
.pavimunYogaTempoFieldForWhom {
    padding: 100px 0;
}

.pavimunYogaTempoFieldForWhomHeader {
    margin-bottom: 50px;
}

.pavimunYogaTempoFieldIntroText {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
}

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

.pavimunYogaTempoFieldTargetItem {
    background-color: #1a0033;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #B98CFF;
    font-size: 1.1rem;
}

/* FAQ */
.pavimunYogaTempoFieldFAQ {
    padding: 100px 0;
    background-color: #0B0020;
}

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

.pavimunYogaTempoFieldDetails {
    margin-bottom: 15px;
    background-color: #1a0033;
    border-radius: 8px;
    overflow: hidden;
}

.pavimunYogaTempoFieldSummary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.pavimunYogaTempoFieldSummary:hover {
    background-color: #2a004a;
}

.pavimunYogaTempoFieldSummary::after {
    content: "+";
    color: #B98CFF;
    font-size: 1.5rem;
}

.pavimunYogaTempoFieldDetails[open] .pavimunYogaTempoFieldSummary::after {
    content: "-";
}

.pavimunYogaTempoFieldAnswer {
    padding: 20px;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
    color: #cccccc;
}

/* EXTRA SECTIONS */
.pavimunYogaTempoFieldExtraSection {
    padding: 80px 0;
}

.pavimunYogaTempoFieldAltBg {
    background-color: #1a0033;
}

.pavimunYogaTempoFieldContentList {
    margin-top: 30px;
    padding: 30px;
    background: rgba(185, 140, 255, 0.05);
    border-radius: 10px;
}

.pavimunYogaTempoFieldContentList h3 {
    margin-bottom: 20px;
    color: #B98CFF;
}

.pavimunYogaTempoFieldContentList ul {
    list-style: square;
    margin-left: 20px;
}

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

/* FORM */
.pavimunYogaTempoFieldFormSec {
    padding: 100px 0;
    background: linear-gradient(0deg, #0B0020 0%, #1a0033 100%);
}

.pavimunYogaTempoFieldFormContainer {
    max-width: 700px;
}

.pavimunYogaTempoFieldFormSub {
    margin-bottom: 40px;
    color: #cccccc;
}

.pavimunYogaTempoFieldMainForm {
    background-color: #0B0020;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #B98CFF;
}

.pavimunYogaTempoFieldFormGroup {
    margin-bottom: 20px;
}

.pavimunYogaTempoFieldLabel {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.pavimunYogaTempoFieldInput, .pavimunYogaTempoFieldTextarea {
    width: 100%;
    padding: 15px;
    background-color: #1a0033;
    border: 1px solid rgba(185, 140, 255, 0.3);
    color: #ffffff;
    border-radius: 5px;
    font-family: inherit;
}

.pavimunYogaTempoFieldInput:focus, .pavimunYogaTempoFieldTextarea:focus {
    outline: none;
    border-color: #B98CFF;
    box-shadow: 0 0 10px rgba(185, 140, 255, 0.3);
}

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

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

.pavimunYogaTempoFieldFormCheck a {
    color: #B98CFF;
}

/* FOOTER */
.pavimunYogaTempoFieldFooter {
    padding: 60px 0 30px;
    background-color: #050010;
    border-top: 1px solid rgba(185, 140, 255, 0.2);
}

.pavimunYogaTempoFieldFooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.pavimunYogaTempoFieldFooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #B98CFF;
}

.pavimunYogaTempoFieldFooterContacts a {
    color: #B98CFF;
    text-decoration: none;
}

.pavimunYogaTempoFieldFooterCopy {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
    color: #777;
}

.pavimunYogaTempoFieldFooterLinks {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pavimunYogaTempoFieldFooterLinks a {
    color: #999;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pavimunYogaTempoFieldFooterLinks a:hover {
    color: #B98CFF;
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    .pavimunYogaTempoFieldHeroGrid, .pavimunYogaTempoFieldBenefitsGrid {
        flex-direction: column;
        text-align: center;
    }
    .pavimunYogaTempoFieldHeroGrid {
        flex-direction: column-reverse;
    }
    .pavimunYogaTempoFieldPriceGrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pavimunYogaTempoFieldH1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .pavimunYogaTempoFieldNav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0B0020;
        transition: 0.3s;
        padding: 40px 20px;
    }
    .pavimunYogaTempoFieldNavList {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .pavimunYogaTempoFieldBurger {
        display: flex;
    }
    .pavimunYogaTempoFieldMenuCheck:checked ~ .pavimunYogaTempoFieldNav {
        left: 0;
    }
    .pavimunYogaTempoFieldPriceGrid {
        grid-template-columns: 1fr;
    }
    .pavimunYogaTempoFieldTargetGrid {
        grid-template-columns: 1fr;
    }
    .pavimunYogaTempoFieldHeroExtraImages {
        flex-direction: column;
    }
    .pavimunYogaTempoFieldFooterTop {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
}