/* Variables for Forest-Organic + Quantum Glow Style */
:root {
    --orbtoasis-dark: #052e16;
    --orbtoasis-primary: #16a34a;
    --orbtoasis-light: #86efac;
    --orbtoasis-bg: #f0fdf4;
    --orbtoasis-glow: #00ffff;
    --orbtoasis-text: #1a1a1a;
    --orbtoasis-white: #ffffff;
    --orbtoasis-shadow: 0 10px 30px rgba(5, 46, 22, 0.1);
    --orbtoasis-trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body.orbtoasisBody {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--orbtoasis-bg);
    color: var(--orbtoasis-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.orbtoasisHead {
    background-color: var(--orbtoasis-dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.orbtoasisLogo {
    font-size: 28px;
    font-weight: 800;
    color: var(--orbtoasis-glow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.orbtoasisLink {
    color: var(--orbtoasis-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--orbtoasis-trans);
    font-size: 15px;
}

.orbtoasisLink:hover {
    color: var(--orbtoasis-glow);
    text-shadow: 0 0 8px var(--orbtoasis-glow);
}

/* Decorative Panel */
.orbtoasisPanel {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, var(--orbtoasis-dark) 0%, rgba(22, 163, 74, 0.1) 100%);
    margin-bottom: 40px;
}

/* Hero Section */
.orbtoasisHero {
    padding: 60px 0;
}

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

.orbtoasisHImg {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.orbtoasisPicH {
    width: 100%;
    border-radius: 40px 10px 40px 10px;
    box-shadow: var(--orbtoasis-shadow);
    border: 2px solid var(--orbtoasis-primary);
}

.orbtoasisBadge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--orbtoasis-glow);
    color: var(--orbtoasis-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 15px var(--orbtoasis-glow);
}

.orbtoasisHTxt {
    flex: 1.2;
    min-width: 300px;
}

.orbtoasisH1Txt {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--orbtoasis-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.orbtoasisSubT {
    font-size: 18px;
    color: var(--orbtoasis-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.orbtoasisDesc {
    margin-bottom: 15px;
    color: #444;
}

/* Buttons */
.orbtoasisBtnQ {
    display: inline-block;
    background-color: var(--orbtoasis-dark);
    color: var(--orbtoasis-glow);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid var(--orbtoasis-glow);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: var(--orbtoasis-trans);
    cursor: pointer;
}

.orbtoasisBtnQ:hover {
    background-color: var(--orbtoasis-glow);
    color: var(--orbtoasis-dark);
    box-shadow: 0 0 25px var(--orbtoasis-glow);
    transform: translateY(-2px);
}

/* Prices Section */
.orbtoasisPrce {
    padding: 80px 0;
    background-color: var(--orbtoasis-white);
}

.orbtoasisH2Tit {
    text-align: center;
    font-size: 36px;
    color: var(--orbtoasis-dark);
    margin-bottom: 50px;
    position: relative;
}

.orbtoasisH2Tit::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--orbtoasis-glow);
    margin: 15px auto 0;
}

.orbtoasisPGrid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.orbtoasisPCard {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 20px;
    text-align: center;
    transition: var(--orbtoasis-trans);
}

.orbtoasisPCard:hover {
    transform: scale(1.03);
    border-color: var(--orbtoasis-primary);
    box-shadow: var(--orbtoasis-shadow);
}

.orbtoasisBest {
    background-color: var(--orbtoasis-dark);
    color: var(--orbtoasis-white);
    border-color: var(--orbtoasis-glow);
}

.orbtoasisBest .orbtoasisH3Tit { color: var(--orbtoasis-glow); }
.orbtoasisBest .orbtoasisPVal { color: var(--orbtoasis-white); }

.orbtoasisPVal {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--orbtoasis-dark);
}

.orbtoasisH3Tit {
    margin-bottom: 25px;
    font-size: 22px;
}

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

.orbtoasisPList li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.orbtoasisBest .orbtoasisPList li {
    border-bottom-color: rgba(255,255,255,0.1);
}

.orbtoasisBtnC {
    display: block;
    padding: 12px;
    background: var(--orbtoasis-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: var(--orbtoasis-trans);
}

.orbtoasisBtnC:hover {
    opacity: 0.9;
}

/* Card Sections (Extra content) */
.orbtoasisCard {
    padding: 60px 0;
}

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

.orbtoasisCItem {
    flex: 1;
    min-width: 300px;
    background: var(--orbtoasis-white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--orbtoasis-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.orbtoasisH4Tit {
    color: var(--orbtoasis-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

/* Quote Section */
.orbtoasisQuote {
    padding: 100px 0;
    background-color: var(--orbtoasis-dark);
    color: var(--orbtoasis-white);
    text-align: center;
}

.orbtoasisBQ {
    font-size: 28px;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.4;
    color: var(--orbtoasis-light);
}

.orbtoasisLine {
    width: 100px;
    height: 1px;
    background: var(--orbtoasis-glow);
    margin: 0 auto 20px;
}

.orbtoasisCite {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--orbtoasis-glow);
}

.orbtoasisPost {
    font-size: 16px;
    opacity: 0.8;
}

/* For Whom Section */
.orbtoasisAudic {
    padding: 80px 0;
}

.orbtoasisCols {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.orbtoasisAList {
    flex: 1;
    min-width: 280px;
    list-style: none;
}

.orbtoasisAList li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
}

.orbtoasisAList li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orbtoasis-glow);
    background: var(--orbtoasis-dark);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Regular Practice (Steps) */
.orbtoasisSteps {
    padding: 80px 0;
    background: var(--orbtoasis-white);
}

.orbtoasisSTxt {
    flex: 1.5;
}

.orbtoasisSImg {
    flex: 1;
}

.orbtoasisPicS {
    width: 100%;
    border-radius: 50%;
    border: 10px solid var(--orbtoasis-bg);
}

.orbtoasisSItem {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* FAQ Section */
.orbtoasisFaq {
    padding: 80px 0;
}

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

.orbtoasisFItem {
    background: var(--orbtoasis-white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.orbtoasisFSum {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--orbtoasis-trans);
    color: var(--orbtoasis-dark);
}

.orbtoasisFSum::after {
    content: '+';
    font-size: 24px;
    color: var(--orbtoasis-primary);
}

details[open] .orbtoasisFSum {
    background: var(--orbtoasis-primary);
    color: white;
}

details[open] .orbtoasisFSum::after {
    content: '−';
    color: white;
}

.orbtoasisFAns {
    padding: 20px;
    border-top: 1px solid #eee;
    color: #555;
}

/* Form Section */
.orbtoasisForm {
    padding: 100px 0;
    background-color: var(--orbtoasis-dark);
    color: var(--orbtoasis-white);
}

.orbtoasisFBody {
    max-width: 700px;
    margin: 40px auto 0;
}

.orbtoasisFRow {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.orbtoasisFInp, .orbtoasisFTxta {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: white;
    outline: none;
    transition: var(--orbtoasis-trans);
}

.orbtoasisFInp:focus, .orbtoasisFTxta:focus {
    border-color: var(--orbtoasis-glow);
    background: rgba(255,255,255,0.1);
}

.orbtoasisFInp { flex: 1; min-width: 250px; }

.orbtoasisFTxta {
    height: 150px;
    margin-bottom: 20px;
    resize: none;
}

.orbtoasisFCheck {
    display: block;
    margin-bottom: 30px;
    font-size: 14px;
    cursor: pointer;
}

.orbtoasisFCheck a {
    color: var(--orbtoasis-glow);
    text-decoration: underline;
}

.orbtoasisDisc {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* Footer */
.orbtoasisFoot {
    padding: 60px 0;
    background: #021209;
    color: var(--orbtoasis-white);
    text-align: center;
}

.orbtoasisFMain {
    font-size: 18px;
    margin-bottom: 15px;
}

.orbtoasisFMail {
    margin-bottom: 30px;
}

.orbtoasisFMail a {
    color: var(--orbtoasis-glow);
    text-decoration: none;
}

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

.orbtoasisFLinks a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 13px;
    transition: var(--orbtoasis-trans);
}

.orbtoasisFLinks a:hover {
    color: var(--orbtoasis-glow);
}

/* Mobile Menu Logic */
.orbtoasisChck { display: none; }
.orbtoasisBtnM { display: none; cursor: pointer; }

@media (max-width: 992px) {
    .orbtoasisBtnM {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
    }
    .orbtoasisBtnM span {
        display: block;
        height: 2px;
        width: 100%;
        background: var(--orbtoasis-glow);
        position: absolute;
        transition: 0.3s;
    }
    .orbtoasisBtnM span:nth-child(2) { top: 9px; }
    .orbtoasisBtnM span:nth-child(3) { top: 18px; }

    .orbtoasisList {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--orbtoasis-dark);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: 0.4s;
    }

    .orbtoasisChck:checked ~ .orbtoasisList {
        left: 0;
    }
}

/* Animations and Quantum Effects */
@keyframes glowPulse {
    0% { box-shadow: 0 0 5px var(--orbtoasis-glow); }
    50% { box-shadow: 0 0 20px var(--orbtoasis-glow); }
    100% { box-shadow: 0 0 5px var(--orbtoasis-glow); }
}

.orbtoasisBtnQ {
    animation: glowPulse 3s infinite;
}

/* Avoid content overflow */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Specific Classes Isolation */
.orbtoasisCard .orbtoasisH2Tit { text-align: left; margin-bottom: 30px; }