/* RESET AND BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.perviroxRestSightFlowBodyMain {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #000F2B; /* Cold Dark Navy */
    color: #D9FAFF; /* Ice Blue */
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HEADER STYLE */
.perviroxRestSightFlowHeaderWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 15, 43, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.2);
}

.perviroxRestSightFlowContainerHeader {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perviroxRestSightFlowLogoText {
    font-size: 26px;
    font-weight: 800;
    color: #D9FAFF;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.perviroxRestSightFlowNavList {
    display: flex;
    gap: 25px;
}

.perviroxRestSightFlowNavLink {
    color: #D9FAFF;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.8;
}

.perviroxRestSightFlowNavLink:hover {
    opacity: 1;
    text-shadow: 0 0 10px #D9FAFF;
}

/* MOBILE BURGER */
.perviroxRestSightFlowMobileToggleInput {
    display: none;
}

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

.perviroxRestSightFlowBurgerLabel span {
    display: block;
    width: 25px;
    height: 2px;
    background: #D9FAFF;
    transition: 0.3s;
}

/* MAIN CONTENT SECTIONS */
.perviroxRestSightFlowMainContentArea {
    padding-top: 80px;
}

.perviroxRestSightFlowSectionTitle {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #D9FAFF;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* HERO SECTION */
.perviroxRestSightFlowHeroSectionBlock {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.perviroxRestSightFlowHeroQuickLinks {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.perviroxRestSightFlowQuickBtn {
    padding: 8px 18px;
    border: 1px solid #D9FAFF;
    color: #D9FAFF;
    font-size: 13px;
    border-radius: 20px;
    background: transparent;
}

.perviroxRestSightFlowQuickBtn:hover {
    background: rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.3);
}

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

.perviroxRestSightFlowHeroImageCol, .perviroxRestSightFlowHeroTextCol {
    flex: 1;
}

.perviroxRestSightFlowHeroMainImg {
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(217, 250, 255, 0.1);
}

.perviroxRestSightFlowMainTitle {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.perviroxRestSightFlowHeroSubtitle {
    font-size: 20px;
    color: #A0C4CC;
    margin-bottom: 20px;
}

.perviroxRestSightFlowHeroDescription {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}

.perviroxRestSightFlowPrimaryBtn {
    display: inline-block;
    padding: 16px 35px;
    background: #D9FAFF;
    color: #000F2B;
    font-weight: 700;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 4px 0 rgba(160, 196, 204, 0.5);
}

.perviroxRestSightFlowPrimaryBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.6);
}

/* PRICE SECTION */
.perviroxRestSightFlowPriceSectionBlock {
    padding: 80px 20px;
    background: linear-gradient(180deg, #000F2B 0%, #00163d 100%);
}

.perviroxRestSightFlowPriceQuickNav {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #A0C4CC;
}

.perviroxRestSightFlowPriceQuickNav a {
    color: #D9FAFF;
    margin: 0 5px;
}

.perviroxRestSightFlowPriceCardsGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.perviroxRestSightFlowPriceCardItem {
    flex: 1;
    background: rgba(217, 250, 255, 0.03);
    border: 1px solid rgba(217, 250, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.perviroxRestSightFlowPriceCardItem:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 250, 255, 0.4);
}

.perviroxRestSightFlowPriceCardFeatured {
    background: rgba(217, 250, 255, 0.07);
    border: 1px solid #D9FAFF;
    transform: scale(1.05);
}

.perviroxRestSightFlowPriceCardLabel {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D9FAFF;
    color: #000F2B;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
}

.perviroxRestSightFlowPriceCardTitle {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.perviroxRestSightFlowPriceValue {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #D9FAFF;
}

.perviroxRestSightFlowPriceList {
    text-align: left;
    margin-bottom: 30px;
}

.perviroxRestSightFlowPriceList li {
    margin-bottom: 12px;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.perviroxRestSightFlowPriceList li::before {
    content: "❄";
    position: absolute;
    left: 0;
    color: #D9FAFF;
}

.perviroxRestSightFlowPriceBtn, .perviroxRestSightFlowPriceBtnFeatured {
    display: block;
    padding: 12px;
    border: 1px solid #D9FAFF;
    color: #D9FAFF;
    font-weight: 600;
    border-radius: 4px;
}

.perviroxRestSightFlowPriceBtnFeatured {
    background: #D9FAFF;
    color: #000F2B;
}

.perviroxRestSightFlowPriceBtn:hover {
    background: rgba(217, 250, 255, 0.1);
}

/* FOR WHOM SECTION */
.perviroxRestSightFlowForWhomSectionBlock {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.perviroxRestSightFlowForWhomDecorationLine {
    width: 100px;
    height: 3px;
    background: #D9FAFF;
    margin: 40px auto;
}

.perviroxRestSightFlowSectionSub {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    color: #A0C4CC;
}

.perviroxRestSightFlowForWhomGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.perviroxRestSightFlowForWhomCard {
    flex: 1 1 calc(33.333% - 20px);
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 10px;
    border-left: 2px solid #D9FAFF;
    position: relative;
}

.perviroxRestSightFlowDiscountBadge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    background: #D9FAFF;
    color: #000F2B;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 800;
}

.perviroxRestSightFlowForWhomIcon {
    margin-bottom: 20px;
}

.perviroxRestSightFlowForWhomTitle {
    font-size: 18px;
    margin-bottom: 10px;
    color: #D9FAFF;
}

/* BENEFITS SECTION */
.perviroxRestSightFlowBenefitsSectionBlock {
    padding: 80px 20px;
    background: rgba(217, 250, 255, 0.02);
}

.perviroxRestSightFlowBenefitsInner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.perviroxRestSightFlowBenefitsTextSide, .perviroxRestSightFlowBenefitsImageSide {
    flex: 1;
}

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

.perviroxRestSightFlowBenefitsDetailList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D9FAFF;
    font-weight: 900;
    font-size: 20px;
}

.perviroxRestSightFlowBenefitsImg {
    border-radius: 20px;
    border: 1px solid rgba(217, 250, 255, 0.2);
}

/* EXPERT SECTION */
.perviroxRestSightFlowExpertSectionBlock {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.perviroxRestSightFlowQuoteContainer {
    background: rgba(217, 250, 255, 0.05);
    padding: 60px;
    border-radius: 4px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    position: relative;
}

.perviroxRestSightFlowQuoteContainer::after {
    content: "“";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(217, 250, 255, 0.1);
    line-height: 1;
}

.perviroxRestSightFlowQuoteText {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.perviroxRestSightFlowQuoteAuthor {
    display: flex;
    align-items: center;
    gap: 20px;
}

.perviroxRestSightFlowAuthorPhoto img {
    border-radius: 50%;
    border: 2px solid #D9FAFF;
}

.perviroxRestSightFlowAuthorName {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.perviroxRestSightFlowAuthorTitle {
    font-size: 14px;
    opacity: 0.7;
}

/* EXTRA TEXT SECTIONS */
.perviroxRestSightFlowExtraTextBlock {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.perviroxRestSightFlowGlassBg {
    background: rgba(217, 250, 255, 0.03);
    border-radius: 15px;
    padding: 60px 40px;
}

.perviroxRestSightFlowContentLayout p {
    margin-bottom: 20px;
    font-size: 17px;
    opacity: 0.9;
}

.perviroxRestSightFlowIceDivider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #D9FAFF, transparent);
    margin: 40px 0;
}

.perviroxRestSightFlowCustomList {
    margin: 25px 0;
}

.perviroxRestSightFlowCustomList li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.perviroxRestSightFlowCustomList li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 2px;
    background: #D9FAFF;
}

/* FAQ SECTION */
.perviroxRestSightFlowFaqSectionBlock {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.perviroxRestSightFlowFaqItem {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
}

.perviroxRestSightFlowFaqSummary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.perviroxRestSightFlowFaqSummary::after {
    content: "+";
    font-size: 24px;
}

.perviroxRestSightFlowFaqItem[open] .perviroxRestSightFlowFaqSummary::after {
    content: "-";
}

.perviroxRestSightFlowFaqContent {
    padding: 0 20px 20px;
    font-size: 16px;
    opacity: 0.8;
}

/* FORM SECTION */
.perviroxRestSightFlowFormSectionBlock {
    padding: 100px 20px;
    background: linear-gradient(0deg, #000F2B 0%, #001a4d 100%);
}

.perviroxRestSightFlowFormWrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 15, 43, 0.5);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 50px;
    border-radius: 8px;
}

.perviroxRestSightFlowFormTitle {
    font-size: 28px;
    margin-bottom: 15px;
    text-align: center;
}

.perviroxRestSightFlowFormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    opacity: 0.7;
}

.perviroxRestSightFlowInputGroup {
    margin-bottom: 20px;
}

.perviroxRestSightFlowInputLabel {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.perviroxRestSightFlowInputField, .perviroxRestSightFlowTextAreaField {
    width: 100%;
    background: rgba(217, 250, 255, 0.05);
    border: 1px solid rgba(217, 250, 255, 0.2);
    padding: 12px 15px;
    color: #D9FAFF;
    border-radius: 4px;
    outline: none;
}

.perviroxRestSightFlowInputField:focus, .perviroxRestSightFlowTextAreaField:focus {
    border-color: #D9FAFF;
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.2);
}

.perviroxRestSightFlowTextAreaField {
    height: 120px;
    resize: none;
}

.perviroxRestSightFlowCheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 13px;
}

.perviroxRestSightFlowCheckboxGroup a {
    color: #D9FAFF;
    text-decoration: underline;
}

.perviroxRestSightFlowSubmitBtn {
    width: 100%;
    padding: 18px;
    background: #D9FAFF;
    color: #000F2B;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.perviroxRestSightFlowSubmitBtn:hover {
    background: #ffffff;
    box-shadow: 0 0 30px rgba(217, 250, 255, 0.4);
}

/* FOOTER AREA */
.perviroxRestSightFlowFooterArea {
    padding: 60px 20px;
    border-top: 1px solid rgba(217, 250, 255, 0.1);
}

.perviroxRestSightFlowFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

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

.perviroxRestSightFlowFooterBrand {
    font-size: 22px;
    font-weight: 800;
}

.perviroxRestSightFlowFooterContact {
    font-size: 14px;
    text-align: right;
    line-height: 2;
}

.perviroxRestSightFlowFooterDivider {
    height: 1px;
    background: rgba(217, 250, 255, 0.1);
    margin-bottom: 40px;
}

.perviroxRestSightFlowFooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    opacity: 0.6;
}

.perviroxRestSightFlowFooterLinks {
    display: flex;
    gap: 20px;
}

.perviroxRestSightFlowFooterLinks a {
    color: #D9FAFF;
}

.perviroxRestSightFlowFooterLinks a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .perviroxRestSightFlowHeroInnerGrid, .perviroxRestSightFlowBenefitsInner {
        flex-direction: column;
        text-align: center;
    }
    .perviroxRestSightFlowBenefitsDetailList {
        text-align: left;
    }
    .perviroxRestSightFlowPriceCardsGrid {
        flex-wrap: wrap;
    }
    .perviroxRestSightFlowPriceCardItem {
        flex: 1 1 45%;
    }
    .perviroxRestSightFlowPriceCardFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .perviroxRestSightFlowBurgerLabel {
        display: flex;
    }
    .perviroxRestSightFlowNavigationMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000F2B;
        padding: 40px;
        border-bottom: 1px solid rgba(217, 250, 255, 0.2);
    }
    .perviroxRestSightFlowMobileToggleInput:checked ~ .perviroxRestSightFlowNavigationMenu {
        display: block;
    }
    .perviroxRestSightFlowNavList {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .perviroxRestSightFlowMainTitle {
        font-size: 32px;
    }
    .perviroxRestSightFlowPriceCardItem {
        flex: 1 1 100%;
    }
    .perviroxRestSightFlowForWhomCard {
        flex: 1 1 100%;
    }
    .perviroxRestSightFlowFooterTop, .perviroxRestSightFlowFooterBottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .perviroxRestSightFlowFooterContact {
        text-align: center;
    }
    .perviroxRestSightFlowFooterLinks {
        flex-wrap: wrap;
        justify-content: center;
    }
}