/* RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-dark: #1f2937;
    --bg-darker: #111827;
    --accent-orange: #f97316;
    --accent-pink: #fb7185;
    --accent-yellow: #fde68a;
    --accent-cold: #7DEFFF;
    --text-white: #f3f4f6;
    --text-dim: #9ca3af;
    --transition: all 0.3s ease;
    --glow-shadow: 0 0 15px rgba(125, 239, 255, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.VojicaduBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    background: radial-gradient(circle at 50% 50%, #1f2937 0%, #111827 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.VjcdContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.VjcdImgResponsive {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* HEADER STYLES */
.HdrVojicaduV1 {
    position: relative;
    background: transparent;
    padding-top: 20px;
    z-index: 1000;
}

.HdrFlexBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.VjcdLogoTxt {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.VjcdNavMenu {
    display: block;
}

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

.VjcdNavLink {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.VjcdNavLink:hover {
    color: var(--accent-cold);
    text-shadow: 0 0 8px rgba(125, 239, 255, 0.6);
}

.VjcdHeaderWave {
    width: 100%;
    line-height: 0;
    margin-top: 10px;
}

.VjcdHeaderWave svg {
    width: 100%;
    height: 60px;
}

/* BURGER MENU (CSS ONLY) */
.VjcdMenuCheck {
    display: none;
}

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

.VjcdBurgerBtn span {
    width: 30px;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
}

/* HERO SECTION */
.HeroSectVojicadu {
    padding: 80px 0;
}

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

.HeroImgCol, .HeroTxtCol {
    flex: 1;
}

.VjcdMainTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.VjcdSubTitle {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.VjcdPara {
    margin-bottom: 20px;
    color: var(--text-dim);
}

.HeroBtnGroup {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

/* BUTTONS */
.VjcdBtnPrimary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--accent-cold);
    color: var(--bg-darker);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--glow-shadow);
    border: 2px solid var(--accent-cold);
}

.VjcdBtnPrimary:hover {
    background-color: transparent;
    color: var(--accent-cold);
    box-shadow: 0 0 25px rgba(125, 239, 255, 0.6);
}

.VjcdBtnSecondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 2px solid var(--text-white);
    transition: var(--transition);
    text-align: center;
}

.VjcdBtnSecondary:hover {
    border-color: var(--accent-cold);
    color: var(--accent-cold);
}

/* INFO SECTIONS */
.VjcdInfoSection {
    padding: 100px 0;
}

.VjcdAltBg {
    background-color: rgba(0, 0, 0, 0.2);
}

.VjcdSectTitle {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.VjcdSectTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-orange);
}

.VjcdInfoGrid {
    max-width: 900px;
    margin: 0 auto;
}

.VjcdSmallH {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    color: var(--accent-cold);
}

.VjcdListCheck {
    list-style: none;
    margin-top: 20px;
}

.VjcdListCheck li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.VjcdListCheck li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* PRACTITIONER */
.PractitionerSect {
    padding: 100px 0;
    background: linear-gradient(to right, #111827, #1f2937);
}

.PractitionerCard {
    display: flex;
    background: #111827;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    align-items: stretch;
    border: 1px solid rgba(255,255,255,0.05);
}

.PractitionerImg {
    flex: 0 0 40%;
}

.PractitionerImg img {
    height: 100%;
    object-fit: cover;
}

.PractitionerQuote {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.VjcdQuoteText {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: var(--text-white);
    position: relative;
}

.VjcdQuoteText::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 5rem;
    color: var(--accent-pink);
    opacity: 0.3;
}

.PrName {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-cold);
}

.PrDesc {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* FAQ */
.FaqSectionVoj {
    padding: 100px 0;
}

.FaqGridContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.FaqCardItem {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.FaqCardItem:hover {
    background: rgba(255, 255, 255, 0.1);
}

.FaqDetails summary {
    padding: 20px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    outline: none;
    list-style: none;
    position: relative;
}

.FaqDetails summary::-webkit-details-marker {
    display: none;
}

.FaqDetails summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-cold);
}

.FaqDetails[open] summary::after {
    content: '-';
}

.FaqContent {
    padding: 0 30px 20px;
    color: var(--text-dim);
}

/* WHO FOR */
.WhoForSection {
    padding: 100px 0;
}

.WhoForHeader {
    text-align: center;
    margin-bottom: 60px;
}

.WhoForGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.WhoForCard {
    background: #1f2937;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.WhoForCard:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cold);
}

.WhoForIcon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.WhoForTitle {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-yellow);
}

/* PRICE SECTION */
.PriceSectionVoj {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.PriceGridVoj {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.PriceCardVoj {
    background: #1f2937;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.PriceCardFeatured {
    transform: scale(1.05);
    border: 2px solid var(--accent-cold);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: #232d3d;
}

.PriceCardHeader {
    text-align: center;
    margin-bottom: 30px;
}

.PriceName {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.PriceValue {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-cold);
}

.PriceValue span {
    font-size: 1rem;
    color: var(--text-dim);
}

.PriceFeatures {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.PriceFeatures li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-dim);
    text-align: center;
}

.VjcdFullWidth {
    width: 100%;
}

/* REGULAR SECTION */
.RegularSectVoj {
    padding: 100px 0;
}

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

.RegularTxtCol, .RegularImgCol {
    flex: 1;
}

.VjcdCheckLarge li {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* FORM SECTION */
.FormSectionVoj {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, #111827);
}

.FormBoxWrapper {
    display: flex;
    gap: 60px;
    background: #111827;
    padding: 60px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.FormTextInfo {
    flex: 1;
}

.VjcdContactForm {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.VjcdFormGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.VjcdFormLabel {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.VjcdFormInput, .VjcdFormTextarea {
    padding: 15px 20px;
    background: #1f2937;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.VjcdFormInput:focus, .VjcdFormTextarea:focus {
    border-color: var(--accent-cold);
    box-shadow: 0 0 10px rgba(125, 239, 255, 0.2);
}

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

.VjcdFormCheck {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.VjcdFormCheck a {
    color: var(--accent-cold);
    text-decoration: none;
}

.VjcdBtnSubmit {
    cursor: pointer;
    border: none;
}

/* FOOTER */
.VjcdFooterMain {
    padding: 80px 0 40px;
    background: #0b0f1a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.FooterBrand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cold);
}

.FooterContactInfo p {
    color: var(--text-dim);
}

.FooterLine {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}

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

.CopyText {
    color: var(--text-dim);
    font-size: 0.9rem;
}

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

.FooterLegalNav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.FooterLegalNav a:hover {
    color: var(--accent-cold);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .HeroFlex, .RegularFlex, .FormBoxWrapper {
        flex-direction: column;
        gap: 40px;
    }
    .PractitionerCard {
        flex-direction: column;
    }
    .PractitionerImg {
        width: 100%;
        height: 350px;
    }
    .VjcdMainTitle {
        font-size: 2.8rem;
    }
}

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

    .VjcdNavMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #111827;
        padding: 100px 40px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .VjcdNavList {
        flex-direction: column;
        gap: 25px;
    }

    .VjcdMenuCheck:checked ~ .VjcdNavMenu {
        right: 0;
    }

    .VjcdMenuCheck:checked ~ .VjcdBurgerBtn span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .VjcdMenuCheck:checked ~ .VjcdBurgerBtn span:nth-child(2) {
        opacity: 0;
    }
    .VjcdMenuCheck:checked ~ .VjcdBurgerBtn span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .PriceCardFeatured {
        transform: scale(1);
    }
    .VjcdMainTitle {
        font-size: 2.2rem;
    }
    .FormBoxWrapper {
        padding: 30px;
    }
    .FooterTop, .FooterBottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* END OF CSS */