*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#F7F4EE;
    --text:#1F241F;
    --gold:#C38F39;
    --gold-light:#E8D7BA;
    --border:#E8E0D4;
    --muted:#636A64;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    position:relative;
}

.container{
    width:1440px;
    max-width:calc(100% - 120px);
    margin:auto;
}

.small-container{
    width:1320px;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
}



/* =========================
HEADER
========================= */

.site-header{
    padding:10px 0;
    position:relative;
    z-index:50;
}

.header-inner{

    align-items:center;

}

.header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
     height:78px;
    width:auto;
    display:block;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:58px;
}

.main-nav a{
    font-size:14px;
    color:var(--text);
    position:relative;
}

.main-nav a.active{
    color:var(--gold);
}

.main-nav a.active:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:var(--gold);
}

.header-btn{
    height:56px;
    padding:0 32px;
    border-radius:100px;
    background:var(--gold);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.header-btn:hover{
    transform:translateY(-2px);
}



/* =========================
GLOBAL BG EFFECT
========================= */

.hero-section,
.elements-section,
.assessment-section,
.insights-section,
.cta-section{
    background-image:
    radial-gradient(circle at top left, rgba(255,255,255,.7), transparent 40%);
}



/* =========================
HERO
========================= */

.hero-section{
    padding:60px 0 80px;
}

.hero-grid{
    display:grid;
    grid-template-columns:640px 1fr;
    gap:40px;
    align-items:center;
}

.mini-label{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
    margin-bottom:28px;
}

.hero-content h1{
    font-size:108px;
    line-height:.9;
    letter-spacing:-4px;
    margin-bottom:32px;
}

.hero-content h1 span{
    color:var(--gold);
}

.hero-content p{
    font-size:22px;
    line-height:1.9;
    color:var(--muted);
    max-width:540px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:34px;
    margin-top:44px;
}

.primary-btn{
    height:66px;
    padding:0 36px;
    border-radius:100px;
    background:var(--gold);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:15px;
    font-weight:500;
    transition:.3s;
    cursor: pointer;
}

.primary-btn:hover{
    transform:translateY(-2px);
}

.primary-btn svg{
    width:18px;
    height:18px;
}

.learn-btn{
    display:flex;
    align-items:center;
    gap:16px;
    color:var(--text);
    font-weight:500;
}

.learn-btn span{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid #D8CAB3;
    display:flex;
    align-items:center;
    justify-content:center;
}

.learn-btn svg{
    width:14px;
    height:14px;
}

.hero-image{
    position:relative;
    right:-120px;
    transform:scale(1.18);
    transform-origin:right center;
}

.hero-image img{
    width:100%;
}

.feature-row{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.feature-box{
    min-height:140px;
    padding:30px;
    background:#FBF8F2;
    border:1px solid var(--border);
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.feature-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#F3E9DA;
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon svg{
    width:20px;
    height:20px;
}

.feature-box h4{
    font-size:32px;
    margin-bottom:10px;
}

.feature-box p{
    color:#676E68;
    line-height:1.7;
    font-size:14px;
}



/* =========================
SECTION TITLE
========================= */

.section-heading{
    max-width:850px;
    margin:auto;
    text-align:center;
}

.section-mini-title{
    color:var(--gold);
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:72px;
    line-height:1;
    margin-bottom:18px;
}

.section-heading p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}



/* =========================
ELEMENTS
========================= */

.elements-section{
    padding:90px 0;
}

.elements-grid{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:34px;
}

.element-box{
    text-align:center;
    padding:0 12px;
}

.element-icon{
    width:126px;
    height:126px;
    border-radius:50%;
    margin:auto auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.element-icon svg{
    width:36px;
    height:36px;
}

.element-icon i{font-size: 36px;}

.earth{
    background:#DFE7D5;
    color:#6D845B;
}

.water{
    background:#DCEAF3;
    color:#6C97B2;
}

.fire{
    background:#F5DED2;
    color:#D78457;
}

.air{
    background:#DFECE7;
    color:#7C9088;
}

.ether{
    background:#ECE3F0;
    color:#9982A8;
}

.element-box h3{
    font-size:38px;
    margin-bottom:10px;
}

.element-box h5{
    color:var(--gold);
    margin-bottom:16px;
    font-size:16px;
}

.element-box p{
    font-size:14px;
    line-height:1.8;
    color:#616963;
}

.center-button{
    text-align:center;
    margin-top:60px;
}

.outline-btn{
    height:58px;
    padding:0 34px;
    border-radius:100px;
    border:1px solid #D9CAB4;
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--text);
}



/* =========================
ASSESSMENT
========================= */

.assessment-section{
    padding:90px 0;
    overflow:hidden;
}

.assessment-bg{
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    width:700px;
}

.assessment-grid{
    display:grid;
    grid-template-columns:560px 620px;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.left-align{
    text-align:left;
}

.assessment-content h2{
    font-size:70px;
    line-height:1;
    margin-bottom:26px;
}

.assessment-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}

.assessment-list{
    list-style:none;
    margin:42px 0;
}

.assessment-list li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:22px;
    font-size:17px;
}

.assessment-list span{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid #D9CBB5;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
}

.assessment-list svg{
    width:16px;
    height:16px;
}

.assessment-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:36px;
    box-shadow:0 20px 50px rgba(0,0,0,.03);
}

.assessment-top{
    display:flex;
    justify-content:space-between;
    font-size:14px;
    margin-bottom:16px;
}

.progress-bar{
    width:100%;
    height:6px;
    background:#EFE7D8;
    border-radius:100px;
    overflow:hidden;
    margin-bottom:34px;
}

.progress-fill{
    width:27%;
    height:100%;
    background:var(--gold);
}

.assessment-card h3{
    font-size:42px;
    line-height:1.15;
    margin-bottom:28px;
}

.option-box{
    height:70px;
    border:1px solid #ECE4D8;
    border-radius:16px;
    padding:0 22px;
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    font-size:16px;
    color:#444A45;
}

.option-box svg{
    width:18px;
    height:18px;
    color:var(--gold);
}

.assessment-bottom{
    margin-top:24px;
    display:flex;
    justify-content:space-between;
}

.assessment-bottom a{
    color:var(--gold);
    display:flex;
    align-items:center;
    gap:10px;
}



/* =========================
INSIGHTS
========================= */

.insights-section{
    padding:70px 0 90px;
}

.insight-grid{
    display:grid;
    grid-template-columns:560px 1fr;
    gap:70px;
    align-items:center;
}

.chart-card{
    background:#FBF8F2;
    border:1px solid var(--border);
    border-radius:24px;
    padding:34px;
}

.chart-title{
    font-size:17px;
    font-weight:600;
    margin-bottom:24px;
}

.fake-chart{
    height:360px;
    background:url('images/prakriti-radar-chart.webp') center center no-repeat;
    background-size:contain;
}

.insight-content h2{
    font-size:62px;
    line-height:1;
    margin-bottom:24px;
}

.insight-content p{
    font-size:18px;
    line-height:1.9;
    color:var(--muted);
}

.insight-icons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:26px;
    margin-top:36px;
}

.insight-icons div{
    display:flex;
    align-items:center;
    gap:12px;
    color:#474D48;
}

.insight-icons svg{
    width:22px;
    height:22px;
    color:var(--gold);
}

.sample-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    margin-top:34px;
    color:var(--gold);
    font-weight:500;
}



/* =========================
TESTIMONIAL
========================= */

.testimonial-section{
    padding:0 0 90px;
}

.testimonial-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
}

.testimonial-left{
    background:#F7F3EB;
    padding:60px;
}

.quote-icon{
    font-size:74px;
    color:var(--gold);
    line-height:1;
    margin-bottom:20px;
}

.testimonial-left p{
    font-size:36px;
    line-height:1.55;
    margin-bottom:36px;
    font-family:'Cormorant Garamond',serif;
}

.testimonial-left h5{
    font-size:22px;
    margin-bottom:8px;
}

.testimonial-left span{
    color:#6A726C;
}

.testimonial-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* =========================
TESTIMONIAL MOBILE
========================= */

@media(max-width:991px){

    .testimonial-section{
        padding:0 0 60px;
    }

    .testimonial-wrap{
        grid-template-columns:1fr;
    }

    .testimonial-left{
        padding:40px 30px;
        order:2;
    }

    .testimonial-right{
        order:1;
    }

    .testimonial-right img{
        height:400px;
    }

    .quote-icon{
        font-size:60px;
        margin-bottom:15px;
    }

    .testimonial-left p{
        font-size:28px;
        line-height:1.5;
        margin-bottom:25px;
    }

}

@media(max-width:767px){

    .testimonial-left{
        padding:30px 25px;
    }

    .testimonial-right img{
        height:300px;
    }

    .quote-icon{
        font-size:48px;
    }

    .testimonial-left p{
        font-size:22px;
        line-height:1.6;
    }

    .testimonial-left h5{
        font-size:18px;
    }

    .testimonial-left span{
        font-size:14px;
    }

}

@media(max-width:480px){

    .testimonial-section{
        padding:0 0 50px;
    }

    .testimonial-left{
        padding:25px 20px;
    }

    .testimonial-right img{
        height:240px;
    }

    .quote-icon{
        font-size:40px;
        margin-bottom:12px;
    }

    .testimonial-left p{
        font-size:20px;
        line-height:1.7;
        margin-bottom:20px;
    }

    .testimonial-left h5{
        font-size:17px;
        margin-bottom:5px;
    }

    .testimonial-left span{
        font-size:13px;
    }

}



/* =========================
CTA
========================= */

.cta-section{
    padding:100px 0 40px;
    text-align:center;
}

.cta-section h2{
    font-size:62px;
    line-height:1;
    margin-bottom:18px;
}

.cta-section p{
    font-size:18px;
    color:#666D67;
    margin-bottom:36px;
}



/* =========================
FOOTER
========================= */

.footer{
    position:relative;
    padding:90px 0 30px;
    border-top:1px solid #E7DED1;
    overflow:hidden;
    background:#F7F4EE;
}

.footer .container{
    position:relative;
    z-index:5;
}

.footer-grid{
    display:grid;
    grid-template-columns:320px 220px 220px 260px;
    justify-content:center;
    gap:120px;
    align-items:flex-start;
}

.footer:before{
    content:'';
    position:absolute;
    left:-20px;
    bottom:0;
    width:230px;
    height:320px;
    background:url('images/stacked-stone-zen.webp') no-repeat left bottom;
    background-size:contain;
    z-index:1;
}

.footer:after{
    content:'';
    position:absolute;
    right:40px;
    bottom:0;
    width:180px;
    height:260px;
    background:url('images/ceramic-vase-leaf.webp') no-repeat right bottom;
    background-size:contain;
    z-index:1;
}

.footer-logo{
    padding-top:18px;
}

/* .footer-logo img{
    width:290px;
} */

.footer-links h4{
    font-size:30px;
    line-height:1;
    margin-bottom:34px;
    color:#1E241F;
}

.footer-links a{
    display:block;
    margin-bottom:18px;
    color:#5E655F;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

.social-icons{
    display:flex;
    gap:14px;
    margin-bottom:36px;
}

.social-icons a{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#EEE5D8;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#C38F39;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-2px);
}

.social-icons svg{
    width:18px;
    height:18px;
}

.footer-links p{
    color:#5F665F;
    font-size:16px;
    line-height:1.9;
}

.copyright{
    text-align:center;
    margin-top:80px;
    color:#8A8A8A;
    font-size:14px;
    position:relative;
    z-index:5;
}



/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .container{
        max-width:calc(100% - 40px);
    }

    .main-nav{
        display:none;
    }

    .hero-grid,
    .assessment-grid,
    .insight-grid,
    .testimonial-wrap,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .feature-row{
        grid-template-columns:1fr;
    }

    .elements-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-content h1,
    .section-heading h2,
    .assessment-content h2,
    .insight-content h2,
    .cta-section h2{
        font-size:54px;
    }

    .hero-image{
        right:0;
        transform:none;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer:before,
    .footer:after{
        display:none;
    }

    .footer-grid{
        gap:50px;
    }

}

/* =========================================
ASSESSMENT PAGE
========================================= */

.assessment-page{
    padding:60px 0 120px;
    background:#F7F4EE;
}



/* =========================================
LAYOUT
========================================= */

.assessment-layout{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:start;
}



/* =========================================
HEADER
========================================= */

.assessment-header{
    margin-bottom:34px;
}

.assessment-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:100px;
    background:#EFE4D2;
    color:#B27B2B;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:24px;
}

.assessment-header h1{
    font-size:84px;
    line-height:.95;
    margin-bottom:24px;
    color:#1D241F;
}

.assessment-header h1 span{
    color:#C38F39;
}

.assessment-header p{
    max-width:760px;
    font-size:20px;
    line-height:1.9;
    color:#626A64;
}



/* =========================================
FORM CARD
========================================= */

.assessment-form-card{
    background:#FFFFFF;
    border:1px solid #ECE3D8;
    border-radius:34px;
    padding:40px;
    box-shadow:0 15px 60px rgba(0,0,0,.04);
}



/* =========================================
PROGRESS
========================================= */

.assessment-progress-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
    font-size:14px;
    color:#626A64;
}

.assessment-progress-bar{
    width:100%;
    height:8px;
    background:#EFE7DA;
    border-radius:100px;
    overflow:hidden;
    margin-bottom:40px;
}

.assessment-progress-fill{
    width:20%;
    height:100%;
    background:linear-gradient(90deg,#D6A453,#C38F39);
    border-radius:100px;
}



/* =========================================
STEPS
========================================= */

.assessment-steps{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:16px;
    margin-bottom:40px;
}

.assessment-step{
    text-align:center;
}

.step-circle{
    width:62px;
    height:62px;
    border-radius:50%;
    margin:auto auto 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    border:1px solid #E6DED3;
    background:#FAF7F2;
    color:#8A8F89;
}

.assessment-step span{
    font-size:13px;
    color:#636A64;
}

.assessment-step.active .step-circle{
    background:#C38F39;
    color:#fff;
    border-color:#C38F39;
}

.step-circle.ether{
    background:#EEE8F6;
    color:#9B84B8;
}

.step-circle.air{
    background:#E2F0EC;
    color:#6C9689;
}

.step-circle.fire{
    background:#F7E2D7;
    color:#D47B4A;
}

.step-circle.water{
    background:#DDEAF3;
    color:#6A98B7;
}

.step-circle.earth{
    background:#E2E9D8;
    color:#7A9268;
}



/* =========================================
INNER
========================================= */

.assessment-inner{
    background:#FBF8F4;
    border:1px solid #ECE4D8;
    border-radius:28px;
    padding:40px;
}

.assessment-inner-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:34px;
}

.assessment-inner-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#EFE5D8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#C38F39;
}

.assessment-inner-header h3{
    font-size:42px;
    margin-bottom:6px;
}

.assessment-inner-header p{
    color:#6A716B;
    font-size:16px;
}

.assessment-step.active .step-circle{

    transform:scale(1.15);

    box-shadow:
    0 0 0 8px rgba(212,165,116,.15);

    transition:.3s;

}

.assessment-inner{

    animation:
    fadeSlide .4s ease;
}

@keyframes fadeSlide{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



/* =========================================
FORM
========================================= */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    margin-bottom:24px;
}

.full-width{
    width:100%;
}

.form-group label{
    display:block;
    margin-bottom:12px;
    font-size:15px;
    color:#2C322D;
    font-weight:500;
}

.form-group label span{
    color:#D36F4C;
}

.form-group input,
.form-group select{
    width:100%;
    height:64px;
    border-radius:18px;
    border:1px solid #E7DED2;
    padding:0 22px;
    background:#fff;
    font-size:15px;
    color:#2C322D;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#C38F39;
    box-shadow:0 0 0 4px rgba(195,143,57,.08);
}



/* =========================================
QUESTIONS
========================================= */

.question-block{
    margin-bottom:38px;
}

.question-block h4{
    font-size:26px;
    line-height:1.5;
    margin-bottom:22px;
    color:#1F241F;
}

.question-options{
    display:grid;
    grid-template-columns:1fr;
    gap:14px;
}

.option-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:14px;
    min-height:68px;
    padding:18px 24px;
    border-radius:18px;
    border:1px solid #E9E0D5;
    background:#fff;
    cursor:pointer;
    transition:.3s;
}

.option-card:hover{
    border-color:#C38F39;
    transform:translateY(-2px);
}

.option-card input{
    accent-color:#C38F39;
    width:18px;
    height:18px;
}

.option-card span{
    font-size:15px;
    color:#333834;
}



/* =========================================
BUTTONS
========================================= */

.assessment-btn-wrap,
.assessment-navigation{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:34px;
}

.secondary-btn{
    height:58px;
    padding:0 34px;
    border:none;
    border-radius:100px;
    background:#ECE5DB;
    color:#2A302B;
    font-size:15px;
    font-weight:500;
    cursor:pointer;
    transition:.3s;
}

.secondary-btn:hover{
    background:#E2D8CB;
}



/* =========================================
ERROR
========================================= */

.error-field{
    border-color:#D9734D !important;
}



/* =========================================
SIDEBAR
========================================= */

.assessment-sidebar{
    position:sticky;
    top:30px;
}

.activation-card,
.score-card{
    background:#fff;
    border:1px solid #ECE4D8;
    border-radius:30px;
    padding:34px;
    margin-bottom:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.03);
}

.activation-card h3,
.score-card h3{
    font-size:34px;
    margin-bottom:28px;
}



/* =========================================
BODY
========================================= */

.activation-body-wrap{
    position:relative;
    min-height:560px;
}

.activation-body{
    width:100%;
}

.leaf-accent{
    position:absolute;
    width:120px;
    opacity:.6;
}

.leaf-accent.left{
    left:-30px;
    bottom:20px;
}

.leaf-accent.right{
    right:-20px;
    top:20px;
    transform:rotate(180deg);
}



/* =========================================
SCORES
========================================= */

.score-item{
    display:grid;
    grid-template-columns:120px 1fr 30px;
    align-items:center;
    gap:14px;
    margin-bottom:24px;
}

.score-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.score-info span{
    font-size:14px;
    font-weight:600;
    color:#3A403B;
}

.score-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.score-line{
    height:10px;
    background:#EEE5DA;
    border-radius:100px;
    overflow:hidden;
}

.score-fill{
    width:0%;
    height:100%;
    border-radius:100px;
}

.ether-fill{
    background:#9D87BB;
}

.air-fill{
    background:#6D988A;
}

.fire-fill{
    background:#D97A49;
}

.water-fill{
    background:#6D99B8;
}

.earth-fill{
    background:#7B9369;
}

.score-number{
    font-size:14px;
    font-weight:600;
}



/* =========================================
FEATURES
========================================= */

.assessment-feature-row{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.assessment-feature-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:30px;
    border-radius:26px;
    border:1px solid #ECE3D8;
    background:#fff;
}

.feature-icon-box{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.feature-icon-box.gold{
    background:#F5E8D1;
    color:#C38F39;
}

.feature-icon-box.green{
    background:#E3ECE2;
    color:#6C8F67;
}

.feature-icon-box.orange{
    background:#F7E2D8;
    color:#D57A4B;
}

.feature-icon-box.blue{
    background:#E0ECF5;
    color:#6B96B2;
}

.assessment-feature-box h4{
    font-size:24px;
    margin-bottom:10px;
}

.assessment-feature-box p{
    font-size:14px;
    line-height:1.8;
    color:#656C66;
}



/* =========================================
LOADER
========================================= */

.results-loading{
    text-align:center;
    padding:80px 20px;
}

.loader-circle{
    width:70px;
    height:70px;
    border-radius:50%;
    border:6px solid #EFE4D7;
    border-top-color:#C38F39;
    margin:0 auto 24px;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

.results-loading h3{
    font-size:42px;
    margin-bottom:14px;
}

.results-loading p{
    color:#68706A;
    font-size:16px;
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .assessment-layout{
        grid-template-columns:1fr;
    }

    .assessment-sidebar{
        position:relative;
        top:0;
    }

    .assessment-header h1{
        font-size:58px;
    }

    .assessment-steps{
        grid-template-columns:repeat(3,1fr);
    }

    .assessment-feature-row{
        grid-template-columns:1fr;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}


/* =========================================
GLOBAL AUTH + DASHBOARD STYLES
========================================= */

.page-section{
    padding:80px 0 120px;
}

.page-card{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:32px;
    padding:50px;
    box-shadow:0 15px 50px rgba(0,0,0,.04);
}

.page-heading{
    margin-bottom:40px;
    text-align:center;
}

.page-heading h1{
    font-size:72px;
    line-height:1;
    margin-bottom:16px;
}

.page-heading p{
    max-width:720px;
    margin:auto;
    color:#66706A;
    line-height:1.9;
    font-size:18px;
}



/* =========================================
AUTH PAGES
========================================= */

.auth-section{
    min-height:100vh;
    padding:80px 0;
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-wrap{
    width:100%;
    max-width:560px;
    margin:auto;
}

.auth-card{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:34px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.04);
}

.auth-logo{
    text-align:center;
    margin-bottom:30px;
}

.auth-logo img{
    width:220px;
    margin:auto;
}

.auth-title{
    text-align:center;
    margin-bottom:40px;
}

.auth-title h1{
    font-size:62px;
    line-height:1;
    margin-bottom:14px;
}

.auth-title p{
    color:#66706A;
    line-height:1.8;
}

.auth-card .primary-btn{
    width:100%;
    border:none;
    cursor:pointer;
    margin-top:10px;
}

.auth-bottom-text{
    text-align:center;
    margin-top:28px;
    font-size:15px;
    color:#66706A;
}

.auth-bottom-text a{
    color:var(--gold);
    font-weight:600;
}



/* =========================================
DASHBOARD
========================================= */

.dashboard-section{
    padding:60px 0 100px;
}

.dashboard-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:34px;
    align-items:start;
}



/* SIDEBAR */

.dashboard-sidebar{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:30px;
    padding:34px;
    position:sticky;
    top:30px;
}

.dashboard-user{
    text-align:center;
    margin-bottom:34px;
}

.dashboard-user-image{
    width:100px;
    height:100px;
    border-radius:50%;
    overflow:hidden;
    margin:auto auto 20px;
    background:#EFE5D8;
}

.dashboard-user-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.dashboard-user h3{
    font-size:34px;
    margin-bottom:6px;
}

.dashboard-user p{
    color:#6B736D;
    font-size:14px;
}

.dashboard-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.dashboard-menu a{
    min-height:58px;
    padding:0 22px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:14px;
    color:#2C322D;
    transition:.3s;
    font-size:15px;
}

.dashboard-menu a.active,
.dashboard-menu a:hover{
    background:#F3E8D9;
    color:var(--gold);
}

.dashboard-menu i{
    width:18px;
}



/* CONTENT */

.dashboard-content{
    display:flex;
    flex-direction:column;
    gap:28px;
}



/* STATS */

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dashboard-stat-card{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:28px;
    padding:34px;
}

.dashboard-stat-card h4{
    font-size:18px;
    margin-bottom:18px;
    color:#66706A;
}

.dashboard-stat-card h2{
    font-size:68px;
    line-height:1;
}



/* TABLE */

.dashboard-table{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:28px;
    padding:34px;
}

.dashboard-table h3{
    font-size:42px;
    margin-bottom:26px;
}

.dashboard-table table{
    width:100%;
    border-collapse:collapse;
}

.dashboard-table th{
    text-align:left;
    padding:18px 0;
    border-bottom:1px solid #ECE3D8;
    font-size:14px;
    color:#66706A;
}

.dashboard-table td{
    padding:20px 0;
    border-bottom:1px solid #F0E8DD;
    font-size:15px;
}



/* BADGES */

.status-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:38px;
    padding:0 16px;
    border-radius:100px;
    font-size:13px;
    font-weight:600;
}

.status-paid{
    background:#E2EFE3;
    color:#5D8660;
}

.status-pending{
    background:#F7E9D8;
    color:#C38F39;
}

.status-uploaded{
    background:#DCEAF5;
    color:#5F89A6;
}



/* =========================================
PAYMENT PAGE
========================================= */

.payment-layout{
    display:grid;
    grid-template-columns:1fr 460px;
    gap:40px;
    align-items:start;
}

.payment-card{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:30px;
    padding:40px;
}

.payment-card h3{
    font-size:42px;
    margin-bottom:24px;
}

.payment-amount{
    font-size:74px;
    line-height:1;
    color:var(--gold);
    margin-bottom:28px;
}

.qr-box{
    text-align:center;
}

.qr-box img{
    width:280px;
    margin:auto;
}

.upi-id{
    margin-top:18px;
    font-size:18px;
    color:#4B514C;
}


.membership-options{

    margin:25px 0;

}

.membership-option{

    display:flex;

    align-items:center;

    gap:15px;

    padding:20px;

    border:1px solid #ddd;

    border-radius:15px;

    margin-bottom:15px;

    cursor:pointer;

    transition:.3s;

}

.membership-option.active{

    border-color:#B8864B;

    background:#fff8ef;

}

.membership-option input{

    width:20px;

    height:20px;

}

.membership-option strong{

    display:block;

    font-size:18px;

    margin-bottom:5px;

}

.membership-option span{

    color:#666;

}

.payment-amount{

    font-size:42px;

    font-weight:700;

    color:#B8864B;

    margin:25px 0;

}

/* =========================================
PAYMENT FEATURES
========================================= */

.payment-features{

    margin:30px 0;

}

.payment-feature-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

}

.payment-feature-item i{

    color:#B8864B;

    font-size:16px;

    margin-top:4px;

    flex-shrink:0;

}

.payment-feature-item span{

    color:#444;

    line-height:1.8;

    font-size:15px;

}



/* =========================================
PAYMENT NOTE
========================================= */

.payment-note{

    margin-top:25px;

    padding-top:25px;

    border-top:1px solid #e5e5e5;

    color:#666;

    font-size:15px;

    line-height:1.8;

    font-style:italic;

}



/* =========================================
PAYMENT AMOUNT
========================================= */

.payment-amount{

    font-size:52px;

    font-weight:700;

    color:#B8864B;

    margin:25px 0 35px;

    line-height:1;

}



/* =========================================
PAYMENT CARD TITLE
========================================= */

.payment-card h3{

    font-size:34px;

    margin-bottom:10px;

    color:#222;

}


/* =========================================
REPORT CARD
========================================= */

.report-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.report-card{
    background:#fff;
    border:1px solid #ECE3D8;
    border-radius:30px;
    padding:34px;
}

.report-card h3{
    font-size:38px;
    margin-bottom:18px;
}

.report-card p{
    color:#66706A;
    line-height:1.8;
    margin-bottom:28px;
}



/* =========================================
OPTION CONTENT
========================================= */

.detailed-option{
    align-items:flex-start;
    padding:24px;
}

.option-content{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.option-content strong{
    font-size:15px;
    color:#1F241F;
    font-weight:600;
}

.option-content p{
    font-size:14px;
    line-height:1.8;
    color:#66706A;
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .dashboard-layout,
    .payment-layout,
    .dashboard-stats,
    .report-grid{
        grid-template-columns:1fr;
    }

    .page-heading h1,
    .auth-title h1{
        font-size:52px;
    }

    .page-card,
    .auth-card{
        padding:36px;
    }

}


.premium-membership-section{
    padding:110px 0;
    background:#F8F5F0;
}

.premium-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    margin-top:60px;
}

.premium-column{
    background:#FFFFFF;
    border:1px solid #E8DED1;
    border-radius:32px;
    padding:40px;
}

.premium-column-header{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:34px;
}

.premium-column-header i{
    font-size:28px;
}

.premium-column-header.positive i{
    color:#5B8A67;
}

.premium-column-header.negative i{
    color:#C77A5D;
}

.premium-column-header h3{
    font-size:30px;
    line-height:1.3;
}

.premium-item{
    margin-bottom:34px;
}

.premium-item:last-child{
    margin-bottom:0;
}

.premium-item h4{
    font-size:22px;
    margin-bottom:12px;
    color:#1E2420;
}

.premium-item p{
    font-size:16px;
    line-height:1.9;
    color:#616861;
}

.negative-column{
    background:#FCFAF8;
}

.executive-verdict-box{
    margin-top:60px;
    background:#EFE5D8;
    border-radius:36px;
    padding:50px;
    display:flex;
    gap:34px;
    align-items:flex-start;
}

.executive-icon{
    min-width:90px;
    width:90px;
    height:90px;
    border-radius:50%;
    background:#B8864B;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.executive-content h3{
    font-size:38px;
    margin-bottom:20px;
}

.executive-content p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:18px;
    color:#4F5550;
}

@media(max-width:991px){

    .premium-grid{
        grid-template-columns:1fr;
    }

    .executive-verdict-box{
        flex-direction:column;
        padding:36px;
    }

}

/* =========================================
AUTH PAGES
========================================= */

.auth-section{
    padding:100px 0;
    background:#f8f5ef;
    min-height:80vh;
    display:flex;
    align-items:center;
}

.auth-wrap{
    max-width:550px;
    margin:0 auto;
}

.auth-card{
    background:#fff;
    padding:50px;
    border:1px solid #eadfce;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.auth-title{
    text-align:center;
    margin-bottom:30px;
}

.auth-title h1{
    font-family:'Cormorant Garamond', serif;
    font-size:48px;
    margin:0 0 10px;
    color:#2f2a22;
}

.auth-title p{
    color:#777;
    line-height:1.8;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-weight:600;
    margin-bottom:8px;
    color:#2f2a22;
}

.form-group input,
.form-group select{
    width:100%;
    height:55px;
    border:1px solid #e2d8c8;
    border-radius:12px;
    padding:0 15px;
    font-size:15px;
    transition:0.3s;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus{
    outline:none;
    border-color:#c8963e;
    box-shadow:0 0 0 3px rgba(200,150,62,.15);
}

/* .primary-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #d6a144,
        #b97d1b
    );
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-2px);
} */

.primary-btn.loading{
    opacity:.7;
    pointer-events:none;
}

.auth-bottom-text{
    text-align:center;
    margin-top:20px;
    color:#666;
}

.auth-bottom-text a{
    color:#c8963e;
    font-weight:600;
}

/* =========================================
SUCCESS MESSAGE
========================================= */

.alert-success{
    background:#ecfdf3;
    border:1px solid #86efac;
    color:#166534;
    padding:15px 18px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:500;
}

/* =========================================
ERROR MESSAGE
========================================= */

.alert-error{
    background:#fef2f2;
    border:1px solid #fca5a5;
    color:#991b1b;
    padding:15px 18px;
    border-radius:12px;
    margin-bottom:20px;
    font-weight:500;
}

/* =========================================
JQUERY VALIDATION
========================================= */

label.error{
    display:block;
    color:#dc2626;
    margin-top:6px;
    font-size:13px;
    font-weight:500;
}

input.error{
    border-color:#dc2626 !important;
}

input.valid{
    border-color:#16a34a !important;
}

/* =========================================
AJAX MESSAGE BOX
========================================= */

.ajax-message{
    display:none;
    margin-bottom:20px;
    padding:15px;
    border-radius:12px;
}

.ajax-message.success{
    display:block;
    background:#ecfdf3;
    border:1px solid #86efac;
    color:#166534;
}

.ajax-message.error{
    display:block;
    background:#fef2f2;
    border:1px solid #fca5a5;
    color:#991b1b;
}





/* =========================================
ELEMENTS PAGE
========================================= */

.elements-hero-section{
    padding:60px 0 80px;
    background:#f8f5ef;
}

.elements-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.elements-hero-content h1{
    font-size:72px;
    line-height:1;
    margin:20px 0;
    color:#2d2d2d;
}

.elements-hero-content h1 span{
    display:block;
    color:#B8864B;
    font-style:italic;
}

.elements-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    max-width:650px;
}

.elements-hero-image img{
    width:100%;
    display:block;
}

.element-navigation-section{
    padding:90px 0;
    background:#fff;
}

.element-nav-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    margin-top:50px;
}

.element-nav-card{
    background:#faf8f5;
    border:1px solid #ece5dc;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    text-decoration:none;
}

.element-nav-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.element-nav-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:15px;
}

.element-nav-card h3{
    margin:0 0 5px;
    color:#2d2d2d;
}

.element-nav-card span{
    color:#777;
    font-size:14px;
}

.ether .element-nav-icon{
    background:#ede3f8;
    color:#8d6ac9;
}

.air .element-nav-icon{
    background:#e5f5f0;
    color:#5f9487;
}

.fire .element-nav-icon{
    background:#fde8dc;
    color:#d77c40;
}

.water .element-nav-icon{
    background:#e3f0fb;
    color:#5f9bc7;
}

.earth .element-nav-icon{
    background:#edf2e3;
    color:#89a45d;
}

.single-element-section{
    padding:120px 0;
    background:#fff;
}

.alt-section{
    background:#faf8f5;
}

.single-element-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.single-element-grid.reverse{
    direction:rtl;
}

.single-element-grid.reverse > *{
    direction:ltr;
}

.single-element-image img{
    width:100%;
    border-radius:30px;
    display:block;
}

.element-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:20px;
}

.element-badge.ether{
    background:#ede3f8;
    color:#8d6ac9;
}

.element-badge.air{
    background:#e5f5f0;
    color:#5f9487;
}

.element-badge.fire{
    background:#fde8dc;
    color:#d77c40;
}

.element-badge.water{
    background:#e3f0fb;
    color:#5f9bc7;
}

.element-badge.earth{
    background:#edf2e3;
    color:#89a45d;
}

.single-element-content h2{
    font-size:56px;
    line-height:1.1;
    margin-bottom:25px;
}

.single-element-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

.element-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:35px 0;
}

.element-info-grid h4{
    margin-bottom:15px;
    color:#B8864B;
}

.element-info-grid ul{
    margin:0;
    padding-left:18px;
}

.element-info-grid li{
    margin-bottom:10px;
}

.element-warning{
    background:#faf8f5;
    border-left:4px solid #B8864B;
    padding:18px;
    border-radius:12px;
    margin-bottom:20px;
    line-height:1.8;
}

.modern-expression{
    background:#fff8ef;
    border:1px solid #ead6b7;
    padding:18px;
    border-radius:12px;
    line-height:1.8;
}

.element-matrix-section{
    padding:120px 0;
    background:#faf8f5;
}

/* =========================================
ELEMENT CARDS
========================================= */

.elements-showcase-section{

    padding:80px 0 100px;

    background:#f8f5ef;

}

.elements-showcase-section .elements-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.elements-showcase-section .element-card{

    background:#fff;

    border:1px solid #ece5dc;

    border-radius:24px;

    padding:40px;

    transition:all .3s ease;

    height:100%;

}

.elements-showcase-section .element-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.elements-showcase-section .element-card h3{

    font-size:30px;

    margin:20px 0 15px;

    color:#2d2d2d;

}

.elements-showcase-section .element-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.elements-showcase-section .element-card ul{

    padding-left:20px;

    margin:0;

}

.elements-showcase-section .element-card li{

    margin-bottom:10px;

    color:#444;

}

.elements-showcase-section .element-large-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:20px;

}

.element-large-icon.ether{
    background:#ede3f8;
    color:#8d6ac9;
}

.element-large-icon.air{
    background:#e5f5f0;
    color:#5f9487;
}

.element-large-icon.fire{
    background:#fde8dc;
    color:#d77c40;
}

.element-large-icon.water{
    background:#e3f0fb;
    color:#5f9bc7;
}

.element-large-icon.earth{
    background:#edf2e3;
    color:#89a45d;
}

.earth-full{

    grid-column:1 / span 2;

    max-width:none;

}

.element-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    font-size:12px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.element-badge.ether{
    background:#ede3f8;
    color:#8d6ac9;
}

.element-badge.air{
    background:#e5f5f0;
    color:#5f9487;
}

.element-badge.fire{
    background:#fde8dc;
    color:#d77c40;
}

.element-badge.water{
    background:#e3f0fb;
    color:#5f9bc7;
}

.element-badge.earth{
    background:#edf2e3;
    color:#89a45d;
}

.matrix-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.matrix-card{
    background:#fff;
    border:1px solid #ece5dc;
    border-radius:25px;
    padding:35px;
}

.matrix-card h3{
    margin-bottom:25px;
}

.matrix-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.matrix-col ul{
    margin-top:10px;
    padding-left:18px;
}

.element-combination-section{
    padding:120px 0 0 0;
}

.combination-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.combo-card{
    background:#fff;
    border:1px solid #ece5dc;
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.combo-card:hover{
    transform:translateY(-5px);
}

.combo-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.combo-card h4{
    color:#B8864B;
    margin-bottom:10px;
}

.why-balance-section{
    padding:120px 0;
    background:#faf8f5;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    margin-top:50px;
}

.why-card{

    background:#fff;

    border:1px solid #ece5dc;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 30px rgba(0,0,0,.06);

}

.why-card i{

    font-size:32px;

    color:#B8864B;

    margin-bottom:15px;

}

.why-card i{
    font-size:28px;
    color:#B8864B;
    margin-bottom:15px;
}

.why-card h4{
    margin:0;
}

.elements-cta-section{
    padding:120px 0;
    background:#fff;
}

.elements-cta-box{
    background:linear-gradient(
        135deg,
        #fffdf8,
        #f8f2e8
    );
    border:1px solid #eadcc8;
    border-radius:35px;
    padding:80px;
    text-align:center;
}

.elements-cta-content{

    max-width:800px;

    margin:auto;

}

.elements-cta-content h2{

    font-size:56px;

}

.elements-cta-content p{
    font-size:18px;
    line-height:1.9;
    color:#666;
    margin-bottom:35px;
}

.elements-showcase-section .elements-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:30px;

    margin-top:60px;

}

.elements-showcase-section .element-card{

    background:#fff;

    border:1px solid #ece5dc;

    border-radius:30px;

    padding:40px;

    transition:.3s;

}

.elements-showcase-section .element-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.elements-showcase-section .element-card h3{

    margin:20px 0 15px;

    font-size:28px;

}

.elements-showcase-section .element-card p{

    color:#666;

    line-height:1.8;

}

.element-card ul{

    margin-top:20px;

    padding-left:20px;

}

.element-card li{

    margin-bottom:10px;

}

.earth-full{

    grid-column:1/3;

    max-width:700px;

    margin:auto;

}

@media(max-width:768px){

    .elements-grid{

        grid-template-columns:1fr;

    }

    .earth-full{

        grid-column:auto;

        max-width:100%;

    }

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .elements-hero-grid,
    .single-element-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .element-nav-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .matrix-grid{
        grid-template-columns:1fr;
    }

    .combination-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .elements-hero-content h1{
        font-size:52px;
    }

    .single-element-content h2{
        font-size:42px;
    }

    .elements-cta-content h2{
        font-size:42px;
    }

}

@media(max-width:767px){

    .element-nav-grid,
    .combination-grid,
    .why-grid,
    .element-info-grid{
        grid-template-columns:1fr;
    }

    .elements-hero-content h1{
        font-size:42px;
    }

    .single-element-content h2{
        font-size:36px;
    }

    .elements-cta-box{
        padding:40px 25px;
    }

    .elements-cta-content h2{
        font-size:34px;
    }

    .why-card{
        padding:25px;
    }

}

/* =========================================
CONTACT PAGE
========================================= */

.contact-hero{

    padding:80px 0;

    background:#f8f5ef;

    text-align:center;

}

.contact-hero-content{

    max-width:800px;

    margin:auto;

}

.contact-hero h1{

    font-size:64px;

    margin:20px 0;

}

.contact-hero p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

.contact-section{

    padding:80px 0;

}

.contact-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:40px;

}

.contact-info-card,
.contact-form-card{

    background:#fff;

    border:1px solid #ece5dc;

    border-radius:24px;

    padding:40px;

}

.contact-info-item{

    display:flex;

    gap:20px;

    margin-top:30px;

}

.contact-info-item .icon{

    width:55px;

    height:55px;

    background:#f8f5ef;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#B8864B;

}

.contact-info-item h4{

    margin-bottom:5px;

}

.contact-info-item p{

    margin:0;

    color:#666;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.form-group{

    margin-bottom:20px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

}

.form-group input,
.form-group textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid #ddd;

    border-radius:12px;

}

.contact-cta{

    padding:0 0 100px;

}

.cta-box{

    background:#f8f5ef;

    border-radius:30px;

    padding:70px;

    text-align:center;

}

.cta-box h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 30px;

    color:#666;

}

.success-alert{

    margin-top:20px;

    background:#e8f8ee;

    color:#1c7a3d;

    padding:15px;

    border-radius:10px;

}

@media(max-width:991px){

    .contact-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:767px){

    .contact-hero h1{

        font-size:42px;

    }

    .form-row{

        grid-template-columns:1fr;

    }

    .cta-box{

        padding:40px 25px;

    }

}

/* =========================================
VERIFY EMAIL
========================================= */

.verification-icon{

    text-align:center;

    margin-bottom:25px;

}

.verification-icon i{

    font-size:70px;

}

.verification-icon.success i{

    color:#28a745;

}

.verification-icon.error i{

    color:#dc3545;

}

/* =========================
MOBILE MENU
========================= */

.mobile-toggle,
.mobile-close{
    display:none;
}

@media(max-width:991px){

    /* Layout */

    .container{
        max-width:calc(100% - 30px);
    }

    .site-header{
        padding:15px 0;
    }

    .header-wrap{
        display:grid;
        grid-template-columns:auto 1fr auto;
        gap:12px;
        align-items:center;
    }

    /* Logo */

    .logo img{
        height:50px;
    }

    /* Right Section */

    .header-right{
        display:flex;
        align-items:center;
        justify-content:flex-end;
        gap:10px;
    }

    .header-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        height:42px;
        padding:0 18px;
        font-size:13px;
        white-space:nowrap;
    }

    /* Hamburger */

    .mobile-toggle{
        display:flex;
        width:42px;
        height:42px;
        align-items:center;
        justify-content:center;
        cursor:pointer;
        font-size:22px;
        color:#C38F39;
        flex-shrink:0;
    }

    /* Mobile Menu */

    .main-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        max-width:90%;
        height:100vh;
        background:#fff;
        z-index:9999;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:80px 30px 30px;
        transition:.4s;
        box-shadow:-10px 0 40px rgba(0,0,0,.12);
        overflow-y:auto;
    }

    .main-nav.active{
        right:0;
    }

    .mobile-close{
        display:flex;
        position:absolute;
        top:20px;
        right:20px;
        font-size:26px;
        cursor:pointer;
        color:#C38F39;
    }

    .main-nav a{
        width:100%;
        padding:16px 0;
        border-bottom:1px solid #eee;
        font-size:16px;
    }

    /* Typography */

    .hero-content h1{
        font-size:42px;
        letter-spacing:-1px;
        line-height:1.15;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .section-heading h2,
    .assessment-content h2,
    .insight-content h2,
    .cta-section h2,
    .contact-hero h1,
    .about-hero h1,
    .elements-hero h1{
        font-size:36px;
        line-height:1.2;
    }

    .assessment-header h1{
        font-size:42px;
        line-height:1.2;
    }

    /* Grids */

    .hero-grid,
    .assessment-grid,
    .feature-row,
    .elements-grid,
    .dashboard-stats,
    .report-grid,
    .premium-grid,
    .why-grid,
    .combination-grid,
    .contact-grid,
    .form-row{
        grid-template-columns:1fr !important;
    }

    /* Sections */

    .hero-section,
    .assessment-section,
    .elements-section,
    .insights-section,
    .premium-membership-section,
    .contact-section,
    .about-section{
        padding:50px 0;
    }

    /* Cards */

    .assessment-card,
    .premium-card,
    .contact-form-card,
    .contact-info-card,
    .dashboard-card{
        padding:25px;
    }

    /* Tables */

    .table-responsive{
        overflow-x:auto;
    }

    table{
        min-width:700px;
    }

}

/* Small Phones */

@media(max-width:480px){

    .container{
        max-width:calc(100% - 24px);
    }

    .logo img{
        height:42px;
    }

    .header-wrap{
        gap:8px;
    }

    .header-btn{
        height:38px;
        padding:0 12px;
        font-size:12px;
    }

    .mobile-toggle{
        width:38px;
        height:38px;
        font-size:20px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .assessment-header h1{
        font-size:34px;
    }

    .section-heading h2,
    .assessment-content h2,
    .insight-content h2,
    .cta-section h2,
    .contact-hero h1,
    .about-hero h1,
    .elements-hero h1{
        font-size:30px;
    }

    .assessment-card,
    .premium-card,
    .contact-form-card,
    .contact-info-card,
    .dashboard-card{
        padding:20px;
    }

}

@media (max-width: 991px) {
    /* Disable sticky behavior on mobile */
    .dashboard-sidebar {
        position: static !important;
        margin-bottom: 30px;
    }

    /* Adjust dashboard user section */
    .dashboard-user h3 {
        font-size: 28px;
    }

    .dashboard-user p {
        font-size: 14px;
    }

    /* Improve stats cards */
    .dashboard-stat-card {
        padding: 25px;
        text-align: center;
    }

    .dashboard-stat-card h2 {
        font-size: 48px;
    }

    /* Make table scrollable horizontally */
    .dashboard-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-table table {
        min-width: 600px;  /* Ensures table doesn't collapse, user can scroll */
    }

    /* Sidebar menu items better tap targets */
    .dashboard-menu a {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .dashboard-user h3 {
        font-size: 24px;
    }

    .dashboard-stat-card h2 {
        font-size: 36px;
    }

    .dashboard-stat-card h4 {
        font-size: 16px;
    }

    .dashboard-menu a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .dashboard-table {
        padding: 20px;
    }

    .dashboard-table h3 {
        font-size: 28px;
    }
}


/* =========================================
ASSESSMENT SECTION
========================================= */

.assessment-section{

    position:relative;

    padding:90px 0;

    overflow:hidden;

    background:#F8F6F1;

}

.assessment-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.assessment-content{

    position:relative;

    z-index:2;

}

.section-mini-title{

    font-size:13px;

    letter-spacing:4px;

    text-transform:uppercase;

    color:#C99134;

    font-weight:600;

    margin-bottom:24px;

}

.assessment-content h2{

    font-size:86px;

    line-height:0.95;

    font-weight:500;

    margin-bottom:35px;

    color:#1F241F;

    font-family:'Cormorant Garamond', serif;

}

.assessment-content h2 span{

    color:#C99134;

    font-style:italic;

}

.assessment-intro{

    font-size:21px;

    line-height:1.9;

    color:#56636D;

    max-width:620px;

    margin-bottom:45px;

}



/* =========================================
HIGHLIGHTS
========================================= */

.assessment-highlights{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:45px;

}

.highlight-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.highlight-item span{

    width:54px;

    height:54px;

    border-radius:50%;

    border:1px solid rgba(201,145,52,.25);

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    color:#C99134;

    background:#fff;

    font-size:18px;

}

.highlight-item h4{

    margin:0 0 5px;

    font-size:18px;

    font-weight:600;

    color:#1F241F;

}

.highlight-item p{

    margin:0;

    font-size:15px;

    color:#6B737C;

    line-height:1.7;

}



/* =========================================
ASSESSMENT PREVIEW CARD
========================================= */

.assessment-preview-card{

    background:#fff;

    border-radius:34px;

    padding:40px;

    border:1px solid #ECE5DA;

    box-shadow:
    0 20px 60px rgba(0,0,0,.06);

}

.preview-header{

    text-align:center;

    margin-bottom:35px;

}

.preview-icon{

    font-size:24px;

    color:#C99134;

    margin-bottom:12px;

}

.preview-title{

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#C99134;

    font-weight:600;

}



/* =========================================
ELEMENT PROGRESS
========================================= */

.element-score{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:20px;

    align-items:center;

    margin-bottom:22px;

}

.element-label{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:18px;

    font-weight:500;

    color:#1F241F;

}

.element-dot{

    width:12px;

    height:12px;

    border-radius:50%;

}

.ether{
    background:#AA8CC8;
}

.air{
    background:#7CB7B0;
}

.fire{
    background:#EB8862;
}

.water{
    background:#69A7D0;
}

.earth{
    background:#9BB876;
}

.element-progress{

    display:flex;

    align-items:center;

    gap:15px;

}

.progress-track{

    flex:1;

    height:10px;

    background:#F2ECE3;

    border-radius:50px;

    overflow:hidden;

}

.progress-fill{

    height:100%;

    border-radius:50px;

}

.ether-fill{
    width:28%;
    background:#AA8CC8;
}

.air-fill{
    width:22%;
    background:#7CB7B0;
}

.fire-fill{
    width:18%;
    background:#EB8862;
}

.water-fill{
    width:14%;
    background:#69A7D0;
}

.earth-fill{
    width:18%;
    background:#9BB876;
}



/* =========================================
DOMINANT ELEMENT
========================================= */

.dominant-element-card{

    margin-top:35px;

    padding:28px;

    background:#FAF8F5;

    border-radius:24px;

    display:flex;

    align-items:center;

    gap:25px;

}

.dominant-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#F0E7F7;

    color:#7C59A5;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    flex-shrink:0;

}

.dominant-content span{

    font-size:13px;

    letter-spacing:2px;

    color:#C99134;

    font-weight:600;

}

.dominant-content h3{

    margin:8px 0;

    font-size:60px;

    color:#654886;

    font-family:'Cormorant Garamond', serif;

}

.dominant-content p{

    margin:0;

    color:#55626D;

    font-size:16px;

}



/* =========================================
BENEFITS
========================================= */

.report-benefits{

    margin-top:35px;

}

.report-benefits h4{

    text-align:center;

    margin-bottom:24px;

    color:#C99134;

    letter-spacing:2px;

    font-size:14px;

}

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:15px;

}

.benefit-box{

    text-align:center;

    padding:20px 12px;

    border:1px solid #ECE5DA;

    border-radius:18px;

    transition:.3s;

}

.benefit-box:hover{

    transform:translateY(-4px);

    background:#FAF8F5;

}

.benefit-box i{

    display:block;

    font-size:24px;

    color:#C99134;

    margin-bottom:12px;

}

.benefit-box span{

    display:block;

    font-size:13px;

    line-height:1.6;

}



/* =========================================
FOOTER BAR
========================================= */

.preview-footer{

    margin-top:30px;

    padding:18px;

    text-align:center;

    background:#F6F7F0;

    border-radius:16px;

    color:#56636D;

    font-size:15px;

}

.preview-footer i{

    color:#93AE68;

    margin-right:8px;

}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .assessment-content h2{

        font-size:70px;

    }

}

@media(max-width:991px){

    .assessment-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .assessment-content{

        text-align:center;

    }

    .assessment-intro{

        margin-left:auto;

        margin-right:auto;

    }

    .highlight-item{

        text-align:left;

    }

    .assessment-content h2{

        font-size:58px;

    }

    .assessment-preview-card{

        padding:30px;

    }

    .benefit-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .assessment-section{

        padding:80px 0;

    }

    .assessment-content h2{

        font-size:46px;

    }

    .assessment-intro{

        font-size:18px;

    }

    .element-score{

        grid-template-columns:1fr;

        gap:10px;

    }

    .dominant-element-card{

        flex-direction:column;

        text-align:center;

    }

    .dominant-content h3{

        font-size:42px;

    }

}

@media(max-width:480px){

    .assessment-content h2{

        font-size:38px;

    }

    .assessment-preview-card{

        padding:22px;

        border-radius:24px;

    }

    .benefit-grid{

        grid-template-columns:1fr;

    }

    .highlight-item span{

        width:44px;

        height:44px;

        font-size:15px;

    }

    .dominant-content h3{

        font-size:34px;

    }

}