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

html {
    scroll-behavior: smooth;
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050607;
}
::-webkit-scrollbar-thumb {
    background: #5AF3FF;
    border-radius: 4px;
}

/* Header */
.morxenoPelvicSoftHarbor_HeaderMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 6, 7, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #5AF3FF;
    box-shadow: 0 4px 15px rgba(90, 243, 255, 0.2);
}

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

.morxenoPelvicSoftHarbor_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5AF3FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(90, 243, 255, 0.5);
}

.morxenoPelvicSoftHarbor_NavList {
    display: flex;
    list-style: none;
    gap: 25px;
}

.morxenoPelvicSoftHarbor_NavLink {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-transform: uppercase;
}

.morxenoPelvicSoftHarbor_NavLink:hover {
    color: #5AF3FF;
    text-shadow: 0 0 8px rgba(90, 243, 255, 0.8);
}

/* Burger Menu */
.morxenoPelvicSoftHarbor_MenuCheckbox {
    display: none;
}

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

.morxenoPelvicSoftHarbor_BurgerBtn span {
    width: 25px;
    height: 3px;
    background: #5AF3FF;
    transition: 0.3s;
}

/* Main Content Wrapper */
.morxenoPelvicSoftHarbor_ContentWrapper {
    margin-top: 70px;
}

/* Section Common */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.morxenoPelvicSoftHarbor_SectionHeading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
}

.morxenoPelvicSoftHarbor_NeonMarker {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #5AF3FF;
    margin-right: 15px;
    box-shadow: 0 0 10px #5AF3FF;
}

/* Hero Section */
.morxenoPelvicSoftHarbor_HeroSection {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.morxenoPelvicSoftHarbor_QuickLinksWrapper {
    margin-bottom: 50px;
}

.morxenoPelvicSoftHarbor_QuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.morxenoPelvicSoftHarbor_QuickBtn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 4px;
}

.morxenoPelvicSoftHarbor_QuickBtn:hover {
    background: rgba(90, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(90, 243, 255, 0.4);
}

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

.morxenoPelvicSoftHarbor_HeroImageCol, .morxenoPelvicSoftHarbor_HeroTextCol {
    flex: 1;
}

.morxenoPelvicSoftHarbor_HeroImg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(90, 243, 255, 0.15);
    border: 1px solid rgba(90, 243, 255, 0.3);
}

.morxenoPelvicSoftHarbor_HeroTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #5AF3FF;
}

.morxenoPelvicSoftHarbor_HeroSub {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.morxenoPelvicSoftHarbor_CtaButtonPrimary {
    display: inline-block;
    padding: 18px 40px;
    background: #5AF3FF;
    color: #050607;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.4);
}

.morxenoPelvicSoftHarbor_CtaButtonPrimary:hover {
    box-shadow: 0 0 35px rgba(90, 243, 255, 0.8);
    transform: translateY(-2px);
}

/* Reviews */
.morxenoPelvicSoftHarbor_ReviewsGrid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.morxenoPelvicSoftHarbor_ReviewCard {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    position: relative;
    border-radius: 10px;
}

.morxenoPelvicSoftHarbor_ReviewText {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.morxenoPelvicSoftHarbor_ReviewAuthor {
    color: #5AF3FF;
    font-weight: 700;
}

/* Target Section */
.morxenoPelvicSoftHarbor_HeadingSub {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px;
    font-size: 1.2rem;
    color: #aaaaaa;
}

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

.morxenoPelvicSoftHarbor_TargetItem {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #0a0c0e;
    border-left: 3px solid #5AF3FF;
    transition: 0.3s;
}

.morxenoPelvicSoftHarbor_TargetItem:hover {
    background: rgba(90, 243, 255, 0.05);
    transform: translateX(10px);
}

.morxenoPelvicSoftHarbor_TargetLine {
    height: 1px;
    width: 50px;
    background: #5AF3FF;
    margin-bottom: 15px;
}

/* Price Section */
.morxenoPelvicSoftHarbor_PriceGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.morxenoPelvicSoftHarbor_PriceCard {
    flex: 1;
    min-width: 220px;
    background: #0a0c0e;
    padding: 30px;
    border: 1px solid #1a1e22;
    text-align: center;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.morxenoPelvicSoftHarbor_PriceCard:hover {
    border-color: #5AF3FF;
    box-shadow: 0 0 20px rgba(90, 243, 255, 0.1);
}

.morxenoPelvicSoftHarbor_PriceBadge {
    background: #5AF3FF;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 20px;
}

.morxenoPelvicSoftHarbor_PriceName {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #5AF3FF;
}

.morxenoPelvicSoftHarbor_PriceValue {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.morxenoPelvicSoftHarbor_Discount {
    font-size: 0.9rem;
    color: #ff5a5a;
    display: block;
}

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

.morxenoPelvicSoftHarbor_PriceFeatures li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #bbb;
}

.morxenoPelvicSoftHarbor_PriceBtn {
    display: block;
    width: 100%;
    padding: 12px;
    border: 1px solid #5AF3FF;
    color: #5AF3FF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    transition: 0.3s;
}

.morxenoPelvicSoftHarbor_PriceBtn:hover {
    background: #5AF3FF;
    color: #000;
}

.morxenoPelvicSoftHarbor_HighlightCard {
    border: 2px solid #5AF3FF;
    transform: scale(1.05);
    z-index: 10;
}

/* Quote Section */
.morxenoPelvicSoftHarbor_QuoteSection {
    background: linear-gradient(135deg, #050607 0%, #0a0c0e 100%);
    padding: 100px 20px;
}

.morxenoPelvicSoftHarbor_QuoteBox {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(90, 243, 255, 0.3);
    padding: 60px;
    position: relative;
}

.morxenoPelvicSoftHarbor_QuoteContent {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 30px;
}

.morxenoPelvicSoftHarbor_QuoteAuthor {
    display: block;
    font-size: 1.1rem;
    color: #5AF3FF;
    font-weight: 600;
}

/* Benefits Section */
.morxenoPelvicSoftHarbor_BenefitsGrid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.morxenoPelvicSoftHarbor_BenefitsTextCol, .morxenoPelvicSoftHarbor_BenefitsImageCol {
    flex: 1;
}

.morxenoPelvicSoftHarbor_BenefitsList {
    list-style: none;
}

.morxenoPelvicSoftHarbor_BenefitsList li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.morxenoPelvicSoftHarbor_ListBullet {
    width: 10px;
    height: 10px;
    background: #5AF3FF;
    margin-right: 15px;
    margin-top: 8px;
    box-shadow: 0 0 8px #5AF3FF;
}

.morxenoPelvicSoftHarbor_BenefitsImg {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(90, 243, 255, 0.1);
}

/* Articles */
.morxenoPelvicSoftHarbor_ArticleSection {
    padding: 60px 20px;
}

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

.morxenoPelvicSoftHarbor_ArticleTitle {
    font-size: 2rem;
    color: #5AF3FF;
    margin-bottom: 25px;
}

.morxenoPelvicSoftHarbor_ArticleContainer p {
    margin-bottom: 20px;
    color: #d1d1d1;
    font-size: 1.1rem;
}

.morxenoPelvicSoftHarbor_SimpleList {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 20px;
}

.morxenoPelvicSoftHarbor_SimpleList li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.morxenoPelvicSoftHarbor_SimpleList li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5AF3FF;
}

.morxenoPelvicSoftHarbor_DarkBg {
    background: #0a0c0e;
}

/* FAQ */
.morxenoPelvicSoftHarbor_FaqContainer {
    max-width: 900px;
    margin: 0 auto;
}

.morxenoPelvicSoftHarbor_FaqItem {
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 15px;
    border: 1px solid rgba(90, 243, 255, 0.1);
    border-radius: 5px;
}

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

.morxenoPelvicSoftHarbor_FaqSummary::-webkit-details-marker {
    display: none;
}

.morxenoPelvicSoftHarbor_FaqSummary::after {
    content: "+";
    color: #5AF3FF;
    font-size: 1.5rem;
}

.morxenoPelvicSoftHarbor_FaqItem[open] .morxenoPelvicSoftHarbor_FaqSummary::after {
    content: "-";
}

.morxenoPelvicSoftHarbor_FaqContent {
    padding: 0 20px 20px;
    color: #cccccc;
}

/* Form Section */
.morxenoPelvicSoftHarbor_FormBox {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0c0e;
    padding: 50px;
    border: 1px solid rgba(90, 243, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(90, 243, 255, 0.05);
}

.morxenoPelvicSoftHarbor_FormSub {
    text-align: center;
    margin-bottom: 30px;
    color: #aaaaaa;
}

.morxenoPelvicSoftHarbor_FormGroup {
    margin-bottom: 20px;
}

.morxenoPelvicSoftHarbor_FormLabel {
    display: block;
    margin-bottom: 8px;
    color: #5AF3FF;
    font-weight: 600;
}

.morxenoPelvicSoftHarbor_FormInput, .morxenoPelvicSoftHarbor_FormTextArea {
    width: 100%;
    padding: 12px 15px;
    background: #050607;
    border: 1px solid #1a1e22;
    color: #fff;
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

.morxenoPelvicSoftHarbor_FormInput:focus, .morxenoPelvicSoftHarbor_FormTextArea:focus {
    border-color: #5AF3FF;
}

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

.morxenoPelvicSoftHarbor_FormCheckbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #888;
}

.morxenoPelvicSoftHarbor_FormCheckbox a {
    color: #5AF3FF;
    text-decoration: none;
}

.morxenoPelvicSoftHarbor_SubmitBtn {
    width: 100%;
    padding: 15px;
    background: #5AF3FF;
    color: #000;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
}

.morxenoPelvicSoftHarbor_SubmitBtn:hover {
    box-shadow: 0 0 20px #5AF3FF;
    transform: scale(1.02);
}

/* Footer */
.morxenoPelvicSoftHarbor_FooterMain {
    background: #020304;
    border-top: 1px solid #1a1e22;
    padding: 60px 20px 20px;
}

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

.morxenoPelvicSoftHarbor_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.morxenoPelvicSoftHarbor_FooterBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #5AF3FF;
}

.morxenoPelvicSoftHarbor_FooterEmail a, .morxenoPelvicSoftHarbor_FooterPhone {
    color: #cccccc;
    text-decoration: none;
}

.morxenoPelvicSoftHarbor_FooterDivider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.morxenoPelvicSoftHarbor_FooterBottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.morxenoPelvicSoftHarbor_Copyright {
    font-size: 0.85rem;
    color: #666;
}

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

.morxenoPelvicSoftHarbor_FooterLinks a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}

.morxenoPelvicSoftHarbor_FooterLinks a:hover {
    color: #5AF3FF;
}

/* Responsive */
@media (max-width: 992px) {
    .morxenoPelvicSoftHarbor_HeroGrid, .morxenoPelvicSoftHarbor_BenefitsGrid {
        flex-direction: column;
    }
    
    .morxenoPelvicSoftHarbor_HeroTitle {
        font-size: 2.5rem;
    }
    
    .morxenoPelvicSoftHarbor_HighlightCard {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .morxenoPelvicSoftHarbor_NavMenu {
        position: fixed;
        top: 68px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 68px);
        background: #050607;
        transition: 0.5s;
        padding-top: 50px;
    }
    
    .morxenoPelvicSoftHarbor_NavList {
        flex-direction: column;
        align-items: center;
    }
    
    .morxenoPelvicSoftHarbor_BurgerBtn {
        display: flex;
    }
    
    .morxenoPelvicSoftHarbor_MenuCheckbox:checked ~ .morxenoPelvicSoftHarbor_NavMenu {
        right: 0;
    }

    .morxenoPelvicSoftHarbor_MenuCheckbox:checked ~ .morxenoPelvicSoftHarbor_BurgerBtn span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .morxenoPelvicSoftHarbor_MenuCheckbox:checked ~ .morxenoPelvicSoftHarbor_BurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    .morxenoPelvicSoftHarbor_MenuCheckbox:checked ~ .morxenoPelvicSoftHarbor_BurgerBtn span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .morxenoPelvicSoftHarbor_FormBox {
        padding: 25px;
    }
}

/* Decorative Background Helper */
.morxenoPelvicSoftHarbor_CyberGridDeco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(90, 243, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(90, 243, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}