/* 
    Tenoravim CSS - Dark Obsidian & Mint Style 
    Isolated Unique Classes (12-character naming strategy)
*/

/* Base Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body.TenoravimBodyMainClass {
    background-color: #03070A;
    color: #E0E0E0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.HeaderWrapperSectionNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 7, 10, 0.95);
    border-bottom: 2px solid #42FFD5;
}

.HeaderContainerInnerContent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.HeaderLogoTextBrandName {
    font-size: 1.8rem;
    font-weight: 800;
    color: #42FFD5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.HeaderNavigationLinksMenu .HeaderNavUlListItems {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.HeaderNavLinkAnchorText {
    text-decoration: none;
    color: #E0E0E0;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.HeaderNavLinkAnchorText:hover {
    color: #42FFD5;
}

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

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

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

/* Hero Section */
.HeroSectionLayoutContainer {
    padding: 120px 2rem 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.HeroSectionContentFlexBox {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.HeroSectionImageColumnLeft {
    flex: 1;
}

.HeroMainBannerImageElement {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(66, 255, 213, 0.1);
    object-fit: cover;
}

.HeroMiniGalleryGridContainer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.HeroMiniGalleryImageItem {
    width: 31%;
    border-radius: 8px;
    border: 1px solid #1A252B;
}

.HeroSectionTextColumnRight {
    flex: 1;
}

.HeroSectionMainTitleHeading {
    font-size: 3rem;
    line-height: 1.1;
    color: #42FFD5;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(66, 255, 213, 0.3);
}

.HeroSectionSubTitleDescription {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.HeroSectionParagraphTextInfo {
    margin-bottom: 1.5rem;
    color: #A0AEC0;
}

.HeroSectionCallToActionBtn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #42FFD5;
    color: #03070A;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.HeroSectionCallToActionBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(66, 255, 213, 0.4);
}

/* Price Section */
.PriceSectionLayoutContainer {
    padding: 80px 2rem;
    background: #050B10;
    text-align: center;
}

.PriceSectionMainTitleHeading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #42FFD5;
}

.PriceSectionQuickLinksContainer {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.PriceQuickLinkSmallBtn {
    padding: 0.5rem 1.2rem;
    border: 1px solid #42FFD5;
    color: #42FFD5;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.PriceQuickLinkSmallBtn:hover {
    background: #42FFD5;
    color: #03070A;
}

.PriceSectionCardsFlexContainer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.PriceCardItemElementUnique {
    background: #0A1218;
    border: 1px solid #1A252B;
    padding: 3rem 2rem;
    border-radius: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: border 0.3s ease;
}

.PriceCardItemElementUnique:hover {
    border-color: #42FFD5;
}

.PriceCardHighlightedSpecial {
    border: 2px solid #42FFD5;
    transform: scale(1.05);
    background: #0D1B22;
}

.PriceCardTitleHeadingText {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.PriceCardCostValueDisplay {
    font-size: 2.2rem;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 2rem;
}

.PriceCardFeaturesListUl {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.PriceCardFeatureLiItem {
    padding: 0.7rem 0;
    border-bottom: 1px solid #1A252B;
    color: #A0AEC0;
}

.PriceCardFeatureLiItem::before {
    content: "— ";
    color: #42FFD5;
}

.PriceCardBookingButtonLink {
    text-decoration: none;
    background: transparent;
    border: 2px solid #42FFD5;
    color: #42FFD5;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.3s;
}

.PriceCardBookingButtonLink:hover {
    background: #42FFD5;
    color: #03070A;
}

/* Practitioner / Reviews Section (CSS Slider) */
.PractitionerQuoteSectionLayout {
    padding: 80px 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.PractitionerSectionMainTitle {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #42FFD5;
}

.PractitionerSliderContainerWrapper {
    position: relative;
    overflow: hidden;
}

.PractitionerSliderRadioHidden {
    display: none;
}

.PractitionerSlidesInnerWrapper {
    display: flex;
    transition: transform 0.6s ease;
}

.PractitionerSingleSlideCard {
    min-width: 100%;
    padding: 2rem;
}

.PractitionerQuoteTextContent {
    font-size: 1.6rem;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.PractitionerAuthorNameCite {
    display: block;
    color: #42FFD5;
    font-size: 1.1rem;
    font-style: normal;
}

.PractitionerSliderControlsFlex {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.PractitionerSliderDotLabel {
    width: 12px;
    height: 12px;
    background: #1A252B;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

#PractitionerSlideInput1:checked ~ .PractitionerSlidesInnerWrapper { transform: translateX(0); }
#PractitionerSlideInput2:checked ~ .PractitionerSlidesInnerWrapper { transform: translateX(-100%); }
#PractitionerSlideInput3:checked ~ .PractitionerSlidesInnerWrapper { transform: translateX(-200%); }

#PractitionerSlideInput1:checked ~ .PractitionerSliderControlsFlex label:nth-child(1),
#PractitionerSlideInput2:checked ~ .PractitionerSliderControlsFlex label:nth-child(2),
#PractitionerSlideInput3:checked ~ .PractitionerSliderControlsFlex label:nth-child(3) {
    background: #42FFD5;
    box-shadow: 0 0 10px #42FFD5;
}

/* Benefits Section */
.BenefitsSectionLayoutContainer {
    padding: 80px 2rem;
}

.BenefitsSectionFlexGridRow {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.BenefitsSectionRowMirrored {
    flex-direction: row-reverse;
}

.BenefitsSectionTextColumn {
    flex: 1;
}

.BenefitsSectionImageColumn {
    flex: 1;
}

.BenefitsIllustrationImageElement {
    width: 100%;
    border-radius: 15px;
    border: 1px solid #1A252B;
}

.BenefitsSectionTitleHeading {
    font-size: 2.5rem;
    color: #42FFD5;
    margin-bottom: 2rem;
}

.BenefitsSectionIntroText {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.BenefitsSectionDetailsUlList {
    list-style: none;
}

.BenefitsSectionDetailLiItem {
    margin-bottom: 1.5rem;
    padding-left: 20px;
    border-left: 3px solid #42FFD5;
}

.BenefitsDetailStrongTitle {
    display: block;
    color: #42FFD5;
    margin-bottom: 0.3rem;
}

.BenefitsSectionTitleHeadingSub {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

/* Audience Section */
.AudienceSectionLayoutContainer {
    padding: 80px 2rem;
    background: #050B10;
}

.AudienceSectionMainHeadingTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #42FFD5;
    margin-bottom: 1rem;
}

.AudienceSectionIntroductoryText {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #A0AEC0;
}

.AudienceItemsGridContainerWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.AudienceItemCardSingle {
    background: #0A1218;
    padding: 2rem;
    border-radius: 10px;
    border-bottom: 2px solid #1A252B;
    transition: 0.3s;
}

.AudienceItemCardSingle:hover {
    border-bottom-color: #42FFD5;
    transform: translateY(-5px);
}

.AudienceItemCardText {
    color: #E0E0E0;
}

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

.AudienceProductsMainTitleHeading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.AudienceProductsFlexList {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.AudienceProductItemUnit {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.AudienceProductImageElement {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.AudienceProductTitleName {
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.AudienceProductPriceTagValue {
    color: #42FFD5;
    font-weight: 700;
}

/* Extra Text Sections */
.ExtraTextContentSectionWrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 2rem;
}

.ExtraTextSectionMainHeading {
    font-size: 2.2rem;
    color: #42FFD5;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.ExtraTextSectionMainHeading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #42FFD5;
}

.ExtraTextSectionInnerBodyContent p {
    margin-bottom: 1.5rem;
    color: #A0AEC0;
    font-size: 1.1rem;
}

.ExtraTextBulletListItems {
    margin: 2rem 0;
    padding-left: 1.5rem;
    list-style: none;
}

.ExtraTextBulletListItems li {
    margin-bottom: 1rem;
    position: relative;
}

.ExtraTextBulletListItems li::before {
    content: '→';
    color: #42FFD5;
    position: absolute;
    left: -25px;
}

/* FAQ Section */
.FaqSectionLayoutContainer {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 2rem;
}

.FaqSectionMainHeadingTitle {
    text-align: center;
    font-size: 2.5rem;
    color: #42FFD5;
    margin-bottom: 3rem;
}

.FaqSectionSingleItemDetails {
    background: #0A1218;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #1A252B;
}

.FaqSectionSummaryHeading {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    list-style: none;
    position: relative;
}

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

.FaqSectionSummaryHeading::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #42FFD5;
    font-size: 1.5rem;
}

.FaqSectionSingleItemDetails[open] .FaqSectionSummaryHeading::after {
    content: '−';
}

.FaqSectionAnswerBodyText {
    padding: 0 1.5rem 1.5rem;
    color: #A0AEC0;
    border-top: 1px solid #1A252B;
    padding-top: 1rem;
}

/* Contact Form Section */
.ContactFormSectionLayoutWrapper {
    padding: 100px 2rem;
    background: radial-gradient(circle at center, #0D1B22 0%, #03070A 100%);
}

.ContactFormInnerContainerBox {
    max-width: 600px;
    margin: 0 auto;
}

.ContactFormMainTitleHeadingText {
    text-align: center;
    font-size: 2.5rem;
    color: #42FFD5;
    margin-bottom: 1rem;
}

.ContactFormSubTitleDescriptionText {
    text-align: center;
    color: #A0AEC0;
    margin-bottom: 3rem;
}

.ContactFormElementBodyMain {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ContactFormInputGroupRow {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ContactFormLabelTextElement {
    font-size: 0.9rem;
    color: #42FFD5;
}

.ContactFormTextInputField, 
.ContactFormTextAreaField {
    background: #0A1218;
    border: 1px solid #1A252B;
    padding: 1rem;
    color: #FFFFFF;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.ContactFormTextInputField:focus, 
.ContactFormTextAreaField:focus {
    border-color: #42FFD5;
}

.ContactFormCheckboxGroupRow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ContactFormCheckboxCustomLabel {
    font-size: 0.85rem;
    color: #A0AEC0;
}

.ContactFormInlinePolicyLink {
    color: #42FFD5;
    text-decoration: underline;
}

.ContactFormSubmitBtnElement {
    width: 100%;
    padding: 1.2rem;
    background: #42FFD5;
    color: #03070A;
    border: none;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.ContactFormSubmitBtnElement:hover {
    box-shadow: 0 0 20px rgba(66, 255, 213, 0.5);
}

/* Footer Section */
.FooterSectionLayoutContainer {
    background: #020508;
    padding: 60px 2rem 30px;
    border-top: 1px solid #1A252B;
}

.FooterInnerContentFlexBox {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.FooterLogoTextBrand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #42FFD5;
    margin-bottom: 1rem;
}

.FooterCopyrightTextNotice {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
}

.FooterContactEmailDisplay, .FooterContactPhoneDisplay {
    font-size: 0.9rem;
    color: #A0AEC0;
}

.FooterLinkSimpleEmail {
    color: #42FFD5;
    text-decoration: none;
}

.FooterLegalLinksFlexGrid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.FooterLegalLinkItemSingle {
    color: #718096;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.FooterLegalLinkItemSingle:hover {
    color: #42FFD5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .HeroSectionContentFlexBox, .BenefitsSectionFlexGridRow, .BenefitsSectionRowMirrored {
        flex-direction: column;
        gap: 3rem;
    }
    
    .PriceSectionCardsFlexContainer {
        flex-direction: column;
        align-items: center;
    }
    
    .PriceCardItemElementUnique {
        width: 100%;
        max-width: 450px;
    }

    .PriceCardHighlightedSpecial {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .HeaderNavigationLinksMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #03070A;
        border-bottom: 2px solid #42FFD5;
    }

    .HeaderNavUlListItems {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .MobileMenuBurgerIconLabel {
        display: flex;
    }

    #MobileMenuToggleCheckbox:checked ~ .HeaderNavigationLinksMenu {
        display: block;
    }

    .HeroSectionMainTitleHeading {
        font-size: 2.2rem;
    }
    
    .FooterInnerContentFlexBox {
        flex-direction: column;
        text-align: center;
    }
}