/*==========================================================
LightPath Healing Centre
Version 4
style.css
==========================================================*/

/*==========================================================
RESET
==========================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#1f2937;
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

video{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    font:inherit;
    cursor:pointer;
    border:none;
    background:none;
}

input,
textarea{
    font:inherit;
    outline:none;
}

ul{
    list-style:none;
}

/*==========================================================
VARIABLES
==========================================================*/

:root{

    --primary:#1E355C;
    --primary-dark:#162947;

    --gold:#D6A33A;

    --success:#16A34A;

    --background:#FFFFFF;

    --surface:#F8FAFC;

    --text:#1F2937;

    --text-light:#64748B;

    --border:#E5E7EB;

    --shadow-sm:0 4px 12px rgba(0,0,0,.06);

    --shadow-md:0 12px 30px rgba(0,0,0,.08);

    --shadow-lg:0 24px 60px rgba(0,0,0,.12);

    --radius-sm:12px;

    --radius:20px;

    --radius-lg:30px;

    --transition:.35s ease;

    --container:1200px;

}

/*==========================================================
TYPOGRAPHY
==========================================================*/

h1,
h2,
h3,
h4{
    color:var(--primary);
    font-weight:700;
    line-height:1.2;
}

h1{

    font-size:clamp(2.3rem,5vw,4.2rem);

}

h2{

    font-size:clamp(1.9rem,4vw,3rem);

}

h3{

    font-size:1.3rem;

}

p{

    color:var(--text-light);

    margin-top:16px;

}

.section-title span{

    color:var(--gold);

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:999px;

    background:#FFF7E6;

    color:#8A6100;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

}

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-description{

    max-width:700px;

    margin:20px auto 0;

}

/*==========================================================
COMMON SECTION
==========================================================*/

section{

    padding:100px 0;

}

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/*==========================================================
LAYOUT
==========================================================*/

.hero-grid,
.story-grid,
.why-grid,
.coach-grid,
.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:70px;
    align-items:center;

}

.problem-grid,
.workshop-grid,
.join-grid,
.journey-grid,
.benefits-grid,
.feedback-gallery,
.proof-grid{

    display:grid;
    gap:30px;

}

.problem-grid{

    grid-template-columns:repeat(4,1fr);

}

.workshop-grid{

    grid-template-columns:repeat(3,1fr);

}

.join-grid{

    grid-template-columns:repeat(4,1fr);

}

.journey-grid{

    grid-template-columns:repeat(3,1fr);

}

.benefits-grid{

    grid-template-columns:repeat(3,1fr);

}

.feedback-gallery{

    grid-template-columns:repeat(3,1fr);

}

.proof-grid{

    grid-template-columns:repeat(4,1fr);

}

/*==========================================================
VIDEO TESTIMONIALS
==========================================================*/

.video-grid{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:30px;

    flex-wrap:wrap;

    margin-top:60px;

}

.video-card{

    width:320px;

    max-width:100%;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow-md);

    transition:.35s ease;

}

.video-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.video-card video{

    width:100%;

    display:block;

    aspect-ratio:9/16;

    object-fit:cover;

    border-radius:24px;

}

/*==========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 30px;

    border-radius:999px;

    font-weight:600;

    transition:all .35s ease;

    cursor:pointer;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-primary:active{

    transform:translateY(0);

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

    box-shadow:var(--shadow-md);

}

.btn-whatsapp:hover{

    background:#1EBE5D;

}

.btn-large{

    min-height:64px;

    padding:0 42px;

    font-size:1.1rem;

}

.btn-full{

    width:100%;

}

/*==========================================================
CARDS
==========================================================*/

.problem-card,
.workshop-card,
.join-card,
.day-card,
.why-card,
.benefit-card,
.proof-card,
.contact-card,
.video-card,
.feedback-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:32px;

    box-shadow:var(--shadow-sm);

    transition:all .35s ease;

}

.problem-card:hover,
.workshop-card:hover,
.join-card:hover,
.day-card:hover,
.why-card:hover,
.benefit-card:hover,
.proof-card:hover,
.video-card:hover,
.feedback-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.day-card.featured{

    border:2px solid var(--gold);

}

.problem-icon,
.workshop-icon,
.join-icon,
.benefit-icon,
.why-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    background:var(--surface);

    border-radius:50%;

    margin-bottom:20px;

}

.day-number{

    display:inline-block;

    margin-bottom:18px;

    padding:8px 18px;

    border-radius:999px;

    background:var(--gold);

    color:#fff;

    font-size:.9rem;

    font-weight:600;

}

/*==========================================================
SECTION ACTION
==========================================================*/

.section-action{

    margin-top:60px;

    text-align:center;

}

/*==========================================================
VIDEO
==========================================================*/

.video-card{

    overflow:hidden;

    padding:0;

}

.video-card video{

    border-radius:var(--radius);

}

/*==========================================================
FEEDBACK
==========================================================*/

.feedback-card{

    overflow:hidden;

    padding:0;

    cursor:pointer;

}

.feedback-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .35s ease;

}

.feedback-card:hover img{

    transform:scale(1.05);

}

/*==========================================================
TRUST STRIP
==========================================================*/

.hero-trust{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    margin-top:30px;

    color:var(--text-light);

    font-size:.95rem;

}

.hero-trust span{

    display:flex;

    align-items:center;

    gap:8px;

}

/*==========================================================
UTILITY
==========================================================*/

.text-center{

    text-align:center;

}

.mb-30{

    margin-bottom:30px;

}

.mt-40{

    margin-top:40px;

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow-md);

}

/*==========================================================
HEADER
==========================================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:18px 0;

    transition:all .35s ease;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.25);

}

.site-header.scrolled{

    padding:12px 0;

    box-shadow:var(--shadow-sm);

    background:rgba(255,255,255,.92);

}

.site-header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    width:100%;

}

.site-header .btn{

    margin-left:auto;

}

.site-logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.site-logo img{

    width:220px;

    height:auto;

    transition:transform .35s ease;

}

.site-logo:hover img{

    transform:scale(1.03);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;

}

/*==========================================================
HERO
==========================================================*/

.hero{

    position:relative;

    overflow:hidden;

    padding:170px 0 110px;

    background:
    radial-gradient(circle at top right,#FFF6DD 0%,transparent 35%),
    radial-gradient(circle at bottom left,#EEF5FF 0%,transparent 40%),
    #FFFFFF;

}

.hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    right:-180px;

    top:-180px;

    background:rgba(214,163,58,.08);

    border-radius:50%;

    filter:blur(40px);

}

.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    bottom:-180px;

    background:rgba(30,53,92,.06);

    border-radius:50%;

    filter:blur(50px);

}

.hero-grid{

    position:relative;

    z-index:2;

}

/*==========================================================
HERO CONTENT
==========================================================*/

.hero-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.hero-content h1{

    margin:24px 0;

    max-width:700px;

    font-family:"Noto Sans Devanagari",sans-serif;

}

.hero-content p{

    max-width:620px;

    font-size:1.08rem;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#FFF8E7;

    color:#9B6A00;

    padding:12px 22px;

    border-radius:999px;

    font-weight:600;

    box-shadow:var(--shadow-sm);

}

.hero-benefits{

    margin:35px 0;

    display:grid;

    gap:16px;

}

.hero-benefits li{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

    color:var(--text);

}

.hero-content .btn{

    margin-top:10px;

}

/*==========================================================
HERO IMAGE
==========================================================*/

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image::before{

    content:"";

    position:absolute;

    width:460px;

    height:460px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        rgba(214,163,58,.20),
        rgba(30,53,92,.10)
    );

    z-index:0;

}

.hero-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:480px;

    border-radius:32px;

    box-shadow:0 40px 80px rgba(0,0,0,.18);

}

/*==========================================================
FLOATING CARDS
==========================================================*/

.hero-image .floating-card{

    position:absolute;

    background:#fff;

    border-radius:20px;

    padding:18px 22px;

    box-shadow:var(--shadow-md);

    z-index:3;

}

.hero-image .card-top{

    top:40px;

    left:-20px;

}

.hero-image .card-bottom{

    bottom:40px;

    right:-20px;

}

/*==========================================================
TRUST STRIP
==========================================================*/

.hero-trust{

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid var(--border);

}

.hero-trust span{

    font-weight:500;

}

.hero-trust strong{

    color:var(--gold);

}

/*==========================================================
HERO ANIMATION
==========================================================*/

.hero-content>*{

    animation:fadeUp .8s ease both;

}

.hero-content>*:nth-child(2){

    animation-delay:.15s;

}

.hero-content>*:nth-child(3){

    animation-delay:.30s;

}

.hero-content>*:nth-child(4){

    animation-delay:.45s;

}

.hero-content>*:nth-child(5){

    animation-delay:.60s;

}

.hero-image{

    animation:fadeLeft 1s ease both;

}

/*==========================================================
SCROLL INDICATOR
==========================================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    animation:bounce 2s infinite;

    color:var(--primary);

    font-size:1.5rem;

}

/*==========================================================
STORY SECTION
==========================================================*/

.story{

    background:#ffffff;

    position:relative;

}

.story::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:
    radial-gradient(circle at 90% 10%,
    rgba(214,163,58,.06),
    transparent 30%);

    pointer-events:none;

}

.story-grid{

    position:relative;

    z-index:2;

}

.story-content h2{

    margin-bottom:25px;

}

.story-content p{

    margin-bottom:20px;

    font-size:1.05rem;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

/*==========================================================
DAILY PROBLEMS
==========================================================*/

.daily-problems{

    background:var(--surface);

}

.problem-card{

    text-align:center;

}

.problem-card h3{

    margin-bottom:15px;

}

.problem-card p{

    margin:0;

}

.problem-card:hover{

    border-color:var(--gold);

}

.problem-icon{

    margin:0 auto 25px;

    transition:.35s;

}

.problem-card:hover .problem-icon{

    transform:scale(1.12);

    background:var(--gold);

    color:#fff;

}

/*==========================================================
WHY REIKI
==========================================================*/

.why-reiki{

    background:#ffffff;

}

.why-content h2{

    margin-bottom:25px;

}

.why-content p{

    margin-bottom:25px;

}

.why-list{

    display:grid;

    gap:18px;

    margin:35px 0;

}

.why-list li{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

    color:var(--text);

}

.why-card{

    position:relative;

    overflow:hidden;

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:6px;

    height:100%;

    background:var(--gold);

}

.why-card h3{

    margin-bottom:20px;

}

.why-card ul{

    display:grid;

    gap:16px;

    margin-top:25px;

}

.why-card li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    color:var(--text);

}

/*==========================================================
SECTION BACKGROUND
==========================================================*/

.story,
.why-reiki{

    overflow:hidden;

}

.story::after,
.why-reiki::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(30,53,92,.04);

    filter:blur(80px);

    z-index:0;

}

.story::after{

    right:-150px;

    bottom:-150px;

}

.why-reiki::after{

    left:-150px;

    top:-150px;

}

/*==========================================================
SECTION HEADER
==========================================================*/

.story .section-title,
.daily-problems .section-title,
.why-reiki .section-title{

    margin-bottom:20px;

}

.story .section-description,
.daily-problems .section-description,
.why-reiki .section-description{

    font-size:1.05rem;

}

/*==========================================================
HOVER EFFECTS
==========================================================*/

.problem-card,
.why-card{

    transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;

}

.problem-card:hover,
.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*==========================================================
FEATURE BOX
==========================================================*/

.feature-box{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:24px;

    background:#fff;

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    margin-top:20px;

}

.feature-box-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--surface);

    color:var(--gold);

    font-size:1.6rem;

    flex-shrink:0;

}

.feature-box h4{

    margin-bottom:10px;

}

.feature-box p{

    margin:0;

}

/*==========================================================
CTA STRIP
==========================================================*/

.story-cta{

    margin-top:60px;

    text-align:center;

}

.story-cta .btn{

    min-width:260px;

}

/*==========================================================
FREE WORKSHOP
==========================================================*/

.workshop{

    background:var(--surface);

    position:relative;

    overflow:hidden;

}

.workshop::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(214,163,58,.08);

    filter:blur(80px);

}

.workshop-grid{

    margin-top:60px;

}

.workshop-card{

    text-align:center;

    position:relative;

}

.workshop-card h3{

    margin:20px 0 15px;

}

.workshop-card:hover{

    border-color:var(--gold);

}

.workshop-icon{

    margin:0 auto;

    transition:all .35s ease;

}

.workshop-card:hover .workshop-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-8deg) scale(1.08);

}

/*==========================================================
WHO CAN JOIN
==========================================================*/

.who-can-join{

    background:#fff;

}

.join-grid{

    margin-top:60px;

}

.join-card{

    text-align:center;

}

.join-card h3{

    margin:20px 0 15px;

}

.join-card:hover{

    border-color:var(--primary);

}

.join-icon{

    margin:0 auto;

    transition:.35s;

}

.join-card:hover .join-icon{

    background:var(--gold);

    color:#fff;

    transform:translateY(-6px);

}

/*==========================================================
6 DAYS JOURNEY
==========================================================*/

.journey{

    background:var(--surface);

    position:relative;

}

.journey-grid{

    margin-top:60px;

}

.day-card{

    position:relative;

    overflow:hidden;

}

.day-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:var(--gold);

}

.day-card h3{

    margin:15px 0;

}

.day-card.featured{

    background:linear-gradient(

        135deg,

        #fff,

        #FFF9EA

    );

    transform:scale(1.03);

}

.day-card.featured::before{

    background:var(--primary);

}

/*==========================================================
COACH
==========================================================*/

.coach{

    background:#fff;

}

.coach-image{

    position:relative;

}

.coach-image::before{

    content:"";

    position:absolute;

    inset:-25px;

    border-radius:40px;

    background:linear-gradient(

        135deg,

        rgba(214,163,58,.15),

        rgba(30,53,92,.08)

    );

    z-index:0;

}

.coach-image img{

    position:relative;

    z-index:2;

    width:100%;

    border-radius:32px;

    box-shadow:var(--shadow-lg);

}

.coach-content h3{

    margin:10px 0 25px;

    color:var(--gold);

    font-size:1.1rem;

    font-weight:600;

}

.coach-content p{

    margin-bottom:20px;

}

/*==========================================================
COACH HIGHLIGHTS
==========================================================*/

.coach-highlights{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin:40px 0;

}

.highlight-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.highlight-card strong{

    display:block;

    font-size:2rem;

    color:var(--primary);

    margin-bottom:10px;

}

.highlight-card span{

    font-size:.95rem;

    color:var(--text-light);

}

/*==========================================================
WHY LIGHTPATH
==========================================================*/

.why-lightpath{

    background:var(--surface);

}

.why-lightpath .why-grid{

    margin-top:60px;

}

.why-lightpath .why-card{

    text-align:center;

}

.why-lightpath .why-icon{

    margin:0 auto 20px;

    transition:.35s;

}

.why-lightpath .why-card:hover .why-icon{

    background:var(--primary);

    color:#fff;

    transform:scale(1.08);

}

/*==========================================================
BENEFITS
==========================================================*/

.benefits{

    background:#fff;

}

.benefits-grid{

    margin-top:60px;

}

.benefit-card{

    text-align:center;

}

.benefit-icon{

    margin:0 auto 20px;

    transition:.35s;

}

.benefit-card:hover{

    border-color:var(--gold);

}

.benefit-card:hover .benefit-icon{

    background:var(--gold);

    color:#fff;

    transform:rotate(10deg);

}

/*==========================================================
SECTION CTA
==========================================================*/

.benefits .section-action{

    margin-top:70px;

}

.benefits .btn{

    min-width:320px;

}

/*==========================================================
VIDEO TESTIMONIALS
==========================================================*/

.testimonials{

    background:var(--surface);

    position:relative;

    overflow:hidden;

}

.testimonials::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    top:-200px;

    right:-180px;

    border-radius:50%;

    background:rgba(214,163,58,.08);

    filter:blur(90px);

}

.video-card{

    overflow:hidden;

    padding:0;

    border-radius:var(--radius-lg);

    background:#fff;

}

.video-card video{

    display:block;

    width:100%;

    aspect-ratio:9/16;

    object-fit:cover;

    border-radius:var(--radius-lg);

}

.video-card:hover{

    transform:translateY(-10px);

}

/*==========================================================
WHATSAPP FEEDBACK
==========================================================*/

.feedback{

    background:#ffffff;

}

.feedback-gallery{

    margin-top:60px;

}

.feedback-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    cursor:pointer;

}

.feedback-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .45s ease;

}

.feedback-card::after{

    content:"🔍";

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(30,53,92,.45);

    color:#fff;

    font-size:2rem;

    opacity:0;

    transition:.35s;

}

.feedback-card:hover img{

    transform:scale(1.08);

}

.feedback-card:hover::after{

    opacity:1;

}

/*==========================================================
SOCIAL PROOF
==========================================================*/

.social-proof{

    background:var(--primary);

    color:#fff;

    padding:80px 0;

}

.social-proof .proof-grid{

    gap:30px;

}

.proof-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

}

.proof-card h3{

    color:#fff;

    font-size:2.5rem;

    margin-bottom:12px;

}

.proof-card p{

    color:rgba(255,255,255,.85);

    margin:0;

}

/*==========================================================
FINAL CTA
==========================================================*/

.cta-section{

    background:
    linear-gradient(135deg,
    var(--primary),
    #294A7A);

    color:#fff;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-220px;

    left:-180px;

}

.cta-box{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

}

.cta-box .section-badge{

    background:rgba(255,255,255,.15);

    color:#fff;

}

.cta-box h2{

    color:#fff;

    margin:25px 0;

    font-size:clamp(2rem,4vw,3.5rem);

}

.cta-box p{

    color:rgba(255,255,255,.90);

    max-width:650px;

    margin:0 auto 40px;

    font-size:1.1rem;

}

.cta-box .btn{

    min-width:340px;

    min-height:64px;

    font-size:1.1rem;

    background:var(--gold);

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.cta-box .btn:hover{

    background:#C99220;

    transform:translateY(-4px);

}

/*==========================================================
SECTION DIVIDER
==========================================================*/

.section-divider{

    width:90px;

    height:5px;

    margin:25px auto;

    border-radius:999px;

    background:var(--gold);

}

/*==========================================================
PREMIUM HOVER EFFECT
==========================================================*/

.video-card,
.feedback-card,
.proof-card{

    transition:

    transform .35s ease,

    box-shadow .35s ease;

}

.video-card:hover,
.feedback-card:hover,
.proof-card:hover{

    box-shadow:var(--shadow-lg);

}

/*==========================================================
CTA BUTTON PULSE
==========================================================*/

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:100%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:.7s;

}

.btn-primary:hover::before{

    left:120%;

}

/*==========================================================
FAQ
==========================================================*/

.faq{

    background:#ffffff;

    position:relative;

}

.faq-list{

    max-width:900px;

    margin:60px auto 0;

    display:grid;

    gap:20px;

}

.faq-item{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    box-shadow:var(--shadow-sm);

    overflow:hidden;

    transition:.35s ease;

}

.faq-item:hover{

    box-shadow:var(--shadow-md);

    border-color:var(--gold);

}

.faq-item summary{

    list-style:none;

    cursor:pointer;

    padding:24px 70px 24px 30px;

    font-size:1.05rem;

    font-weight:600;

    color:var(--primary);

    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-item summary::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--surface);

    color:var(--primary);

    font-size:1.4rem;

    transition:.35s;

}

.faq-item[open] summary::after{

    content:"−";

    background:var(--gold);

    color:#fff;

}

.faq-item p{

    padding:0 30px 25px;

    margin:0;

    color:var(--text-light);

}

/*==========================================================
CONTACT
==========================================================*/

.contact{

    background:var(--surface);

}

.contact-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    padding:60px;

}

.contact-card h2{

    margin-bottom:15px;

}

.contact-info{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:20px;

    margin:35px 0;

}

.contact-info a{

    display:flex;

    align-items:center;

    gap:10px;

    padding:15px 24px;

    background:#fff;

    border:1px solid var(--border);

    border-radius:999px;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.contact-info a:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/*==========================================================
FOOTER
==========================================================*/

.site-footer{

    background:#10223E;

    color:#fff;

    text-align:center;

    padding:70px 0 35px;

}

.footer-logo{

    width:220px;

    margin:0 auto 25px;

}

.site-footer p{

    color:rgba(255,255,255,.80);

}

.footer-social{

    display:flex;

    justify-content:center;

    gap:18px;

    margin:35px 0;

}

.footer-social a{

    width:50px;

    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    transform:translateY(-4px);

}

.copyright{

    margin-top:25px;

    font-size:.95rem;

    color:rgba(255,255,255,.60);

}

/*==========================================================
FOOTER LINKS
==========================================================*/

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

    margin:25px 0;

}

.footer-links a{

    color:rgba(255,255,255,.85);

    transition:.35s;

}

.footer-links a:hover{

    color:var(--gold);

}

/*==========================================================
BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--primary);

    color:#fff;

    box-shadow:var(--shadow-lg);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    background:var(--gold);

    transform:translateY(-5px);

}

/*==========================================================
SECTION SPACING
==========================================================*/

.faq,
.contact,
.site-footer{

    position:relative;

    overflow:hidden;

}

.contact::before{

    content:"";

    position:absolute;

    width:400px;

    height:400px;

    border-radius:50%;

    background:rgba(214,163,58,.08);

    right:-150px;

    bottom:-150px;

    filter:blur(80px);

}

/*==========================================================
REGISTRATION POPUP
==========================================================*/

.modal{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:20px;

    background:rgba(15,23,42,.70);

    backdrop-filter:blur(8px);

    -webkit-backdrop-filter:blur(8px);

    opacity:0;

    visibility:hidden;

    transition:all .35s ease;

    z-index:9999;

}

.modal.active{

    opacity:1;

    visibility:visible;

}

.modal-overlay{

    position:absolute;

    inset:0;

}

.modal-card{

    position:relative;

    width:100%;

    max-width:520px;

    background:#fff;

    border-radius:32px;

    padding:45px;

    box-shadow:0 30px 80px rgba(0,0,0,.25);

    z-index:2;

    animation:popupScale .35s ease;

}

.popup-logo{

    width:160px;

    margin:0 auto 25px;

}

.modal-card h2{

    text-align:center;

    margin:20px 0 15px;

}

.modal-card p{

    text-align:center;

    margin-bottom:30px;

}

.modal-close{

    position:absolute;

    top:18px;

    right:18px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:var(--surface);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

    transition:.3s;

}

.modal-close:hover{

    background:var(--primary);

    color:#fff;

    transform:rotate(90deg);

}

/*==========================================================
FORM
==========================================================*/

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:var(--primary);

}

.form-group input{

    width:100%;

    height:58px;

    padding:0 18px;

    border:1px solid var(--border);

    border-radius:16px;

    background:#fff;

    transition:.3s;

}

.form-group input:focus{

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(214,163,58,.15);

}

.form-group small{

    display:block;

    margin-top:8px;

    color:#dc2626;

    font-size:.88rem;

}

/*==========================================================
SUBMIT BUTTON
==========================================================*/

#submitButton{

    width:100%;

    margin-top:12px;

}

#submitButton:disabled{

    opacity:.7;

    cursor:not-allowed;

}

.loading{

    pointer-events:none;

}

.loading .btn{

    opacity:.8;

}

/*==========================================================
SUCCESS POPUP
==========================================================*/

.success-card{

    text-align:center;

}

.success-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:3rem;

    background:#DCFCE7;

    color:var(--success);

    animation:successPulse 1.5s infinite;

}

.success-card h2{

    margin-bottom:15px;

}

.success-card p{

    margin-bottom:30px;

}

.success-card ul{

    margin:25px 0;

    display:grid;

    gap:12px;

}

.success-card li{

    color:var(--text);

}

/*==========================================================
WHATSAPP BUTTON
==========================================================*/

.btn-whatsapp{

    width:100%;

    height:60px;

    border-radius:16px;

    background:#25D366;

    color:#fff;

    font-size:1rem;

    font-weight:600;

    transition:.35s;

}

.btn-whatsapp:hover{

    background:#1EBE5D;

    transform:translateY(-3px);

}

/*==========================================================
FORM SUCCESS MESSAGE
==========================================================*/

.form-success{

    display:none;

    padding:18px;

    border-radius:16px;

    background:#DCFCE7;

    color:#166534;

    margin-bottom:25px;

    text-align:center;

    font-weight:600;

}

.form-success.show{

    display:block;

}

/*==========================================================
ERROR MESSAGE
==========================================================*/

.form-error{

    display:none;

    padding:18px;

    border-radius:16px;

    background:#FEE2E2;

    color:#991B1B;

    margin-bottom:25px;

    text-align:center;

}

.form-error.show{

    display:block;

}

/*==========================================================
INPUT STATES
==========================================================*/

input.error{

    border-color:#DC2626;

}

input.success{

    border-color:var(--success);

}

/*==========================================================
LOADING SPINNER
==========================================================*/

.spinner{

    width:20px;

    height:20px;

    border:3px solid rgba(255,255,255,.3);

    border-top-color:#fff;

    border-radius:50%;

    animation:spin .8s linear infinite;

    display:inline-block;

    margin-right:10px;

    vertical-align:middle;

}

/*==========================================================
POPUP ANIMATIONS
==========================================================*/

@keyframes popupScale{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes successPulse{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

/*==========================================================
ACCESSIBILITY
==========================================================*/

input:focus,
button:focus{

    outline:none;

}

button:focus-visible,
input:focus-visible{

    box-shadow:0 0 0 4px rgba(30,53,92,.18);

}

/*==========================================================
LIGHTBOX
==========================================================*/

.lightbox{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.9);

    z-index:99999;

}

.lightbox.active{

    display:flex;

}

.lightbox img{

    max-width:90vw;

    max-height:90vh;

    border-radius:18px;

}

.lightbox-close{

    position:absolute;

    top:20px;

    right:20px;

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#000;

    font-size:30px;

    font-weight:bold;

    cursor:pointer;

    z-index:100000;

}

/*==========================================================
SCROLL REVEAL
==========================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.reveal-left{

    opacity:0;

    transform:translateX(-60px);

    transition:.8s ease;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-right{

    opacity:0;

    transform:translateX(60px);

    transition:.8s ease;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}

.reveal-scale{

    opacity:0;

    transform:scale(.9);

    transition:.7s ease;

}

.reveal-scale.active{

    opacity:1;

    transform:scale(1);

}

/*==========================================================
ANIMATIONS
==========================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(60px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.85);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(-10px);

    }

    60%{

        transform:translateY(-5px);

    }

}

/*==========================================================
HOVER EFFECTS
==========================================================*/

img{

    transition:transform .35s ease;

}

img:hover{

    transform:scale(1.02);

}

.card-hover{

    transition:

    transform .35s ease,

    box-shadow .35s ease;

}

.card-hover:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*==========================================================
UTILITY CLASSES
==========================================================*/

.hidden{

    display:none !important;

}

.flex{

    display:flex;

}

.grid{

    display:grid;

}

.text-center{

    text-align:center;

}

.w-100{

    width:100%;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow-md);

}

/*==========================================================
CUSTOM SCROLLBAR
==========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F3F4F6;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#C9911D;

}

/*==========================================================
TEXT SELECTION
==========================================================*/

::selection{

    background:var(--gold);

    color:#fff;

}

/*==========================================================
LAZY IMAGE
==========================================================*/

img[loading="lazy"]{

    background:#F8FAFC;

}

/*==========================================================
REDUCED MOTION
==========================================================*/

@media (prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}

/*==========================================================
PRINT
==========================================================*/

@media print{

.site-header,

.site-footer,

.btn,

.modal,

.lightbox{

    display:none !important;

}

body{

    background:#fff;

    color:#000;

}

}

/*==========================================================
BACK TO TOP
==========================================================*/

.back-to-top{

    position:fixed;

    right:20px;

    bottom:20px;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#7A1F5C;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-3px);

}

/*==========================================================
RESPONSIVE
==========================================================*/

/*==========================================================
LARGE DESKTOP
==========================================================*/

@media (min-width:1400px){

.container{

    max-width:1320px;

}

.hero-grid{

    gap:90px;

}

.hero-image img{

    max-width:560px;

}

}

/*==========================================================
LAPTOP
==========================================================*/

@media (max-width:1200px){

.hero-grid,
.story-grid,
.why-grid,
.coach-grid{

    gap:50px;

}

.problem-grid{

    grid-template-columns:repeat(2,1fr);

}

.join-grid{

    grid-template-columns:repeat(2,1fr);

}

.benefits-grid{

    grid-template-columns:repeat(2,1fr);

}

.proof-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*==========================================================
TABLET
==========================================================*/

@media (max-width:992px){

section{

    padding:80px 0;

}

.hero{

    padding:140px 0 80px;

}

.hero-grid,
.story-grid,
.why-grid,
.coach-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content{

    align-items:center;

}

.hero-content p{

    margin-left:auto;

    margin-right:auto;

}

.hero-benefits{

    margin-left:auto;

    margin-right:auto;

}

.hero-image{

    order:-1;

}

.hero-image img{

    max-width:420px;

}

.coach-image{

    max-width:450px;

    margin:auto;

}

.coach-highlights{

    grid-template-columns:repeat(3,1fr);

}

.workshop-grid{

    grid-template-columns:1fr;

}

.video-grid{

        justify-content:center;

        gap:24px;

    }

.feedback-gallery{

    grid-template-columns:repeat(2,1fr);

}

.journey-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-card{

    padding:40px;

}

}

/*==========================================================
MOBILE
==========================================================*/

@media (max-width:768px){

body{

    font-size:15px;

}

section{

    padding:70px 0;

}

.site-header{

    padding:14px 0;

}

.site-logo img{

    width:170px;

    height:46px;

}

.hero{

    padding:120px 0 60px;

}

.hero h1{

    font-size:2rem;

}

.hero p{

    font-size:1rem;

}

.hero-image img{

    max-width:320px;

}

.hero-trust{

    justify-content:center;

}

.problem-grid,
.join-grid,
.journey-grid,
.benefits-grid,
.feedback-gallery,
.proof-grid{

    grid-template-columns:1fr;

}

.coach-highlights{

    grid-template-columns:1fr;

}

.highlight-card{

    padding:20px;

}

.contact-card{

    padding:30px 20px;

}

.contact-info{

    flex-direction:column;

}

.contact-info a{

    width:100%;

    justify-content:center;

}

.video-card{

        width:100%;
        max-width:360px;

    }

.footer-social{

    flex-wrap:wrap;

}

.modal{

    padding:15px;

}

.modal-card{

    padding:30px 20px;

    border-radius:24px;

}

.popup-logo{

    width:130px;

}

.lightbox img{

    max-width:95vw;

}

.btn{

    width:100%;

}

.btn-large{

    min-width:100%;

}

.cta-box .btn{

    min-width:100%;

}

}

.site-header .btn{

    padding:12px 18px;

    font-size:.9rem;

}

/*==========================================================
SMALL MOBILE
==========================================================*/

@media (max-width:480px){

.hero{

    padding-top:110px;

}

.hero-badge{

    font-size:.8rem;

    padding:10px 16px;

}

.hero h1{

    font-size:1.75rem;

}

.section-title{

    font-size:1.8rem;

}

.section-description{

    font-size:.95rem;

}

.problem-card,
.workshop-card,
.join-card,
.day-card,
.why-card,
.benefit-card,
.proof-card{

    padding:24px;

}

.problem-icon,
.workshop-icon,
.join-icon,
.why-icon,
.benefit-icon{

    width:60px;

    height:60px;

    font-size:1.6rem;

}

.video-card{

    border-radius:20px;

}

.feedback-card{

    border-radius:20px;

}

.footer-logo{

    width:170px;

}

.back-to-top{

    width:46px;

    height:46px;

    right:15px;

    bottom:15px;

}

}

/*==========================================================
LANDSCAPE MOBILE
==========================================================*/

@media (max-height:600px) and (orientation:landscape){

.hero{

    padding:100px 0 50px;

}

.modal{

    align-items:flex-start;

    overflow:auto;

    padding:20px;

}

.modal-card{

    margin:20px auto;

}

}

/*==========================================================
HIGH DPI
==========================================================*/

@media (-webkit-min-device-pixel-ratio:2),
(min-resolution:192dpi){

img{

    image-rendering:auto;

}

}

/*==========================================================
END OF FILE
==========================================================*/