    /* ── VARIABLES ── */
    :root {
        --lw-green:       #25d366;
        --lw-green-dark:  #128c7e;
        --lw-green-pale:  #e8f5e9;
        --lw-orange:      #e65100;
        --lw-orange-pale: #fff3e0;
        --lw-yellow:      #f9a825;
        --lw-cream:       #fffdf6;
        --lw-dark:        #1a1a1a;
        --lw-text:        #333;
        --lw-muted:       #777;
        --lw-radius:      18px;
        --lw-shadow:      0 8px 32px rgba(37,211,102,0.10);
        --lw-shadow-lg:   0 20px 60px rgba(37,211,102,0.15);
           --green: #25d366;
    --green-dark: #128c7e;
    --green-light: #43a047;
    --green-pale: #e8f5e9;
    --orange: #e65100;
    --orange-light: #ef6c00;
    --orange-pale: #fff3e0;
    --yellow: #f9a825;
    --cream: #fffdf6;
    --dark: #1a1a1a;
    --text: #333;
    --muted: #777;
    --white: #ffffff;
    --radius: 18px;
    --shadow: 0 8px 32px rgba(37,211,102,0.10);
    --shadow-lg: 0 20px 60px rgba(37,211,102,0.15);
    }

    /* ── SCROLLBAR (global) ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--lw-green-pale); }
    ::-webkit-scrollbar-thumb { background: var(--lw-green); border-radius: 10px; }

    /* ════════════════════════════════════════════
       GUEST PAGES ONLY — login, register, forgot,
       reset, contact — scoped to .lw-guest-page
    ════════════════════════════════════════════ */
    body.lw-guest-page {
        font-family: 'Nunito', sans-serif !important;
        background: linear-gradient(135deg, #e8f5e9 0%, #fffdf6 50%, #fff3e0 100%) !important;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Decorative background orbs */
    body.lw-guest-page::before {
        content: '';
        position: fixed; top: -120px; right: -150px;
        width: 550px; height: 550px; border-radius: 50%;
        background: radial-gradient(circle, rgba(37,211,102,0.09) 0%, transparent 70%);
        pointer-events: none; z-index: 0;
    }
    body.lw-guest-page::after {
        content: '';
        position: fixed; bottom: -100px; left: -120px;
        width: 450px; height: 450px; border-radius: 50%;
        background: radial-gradient(circle, rgba(230,81,0,0.06) 0%, transparent 70%);
        pointer-events: none; z-index: 0;
    }
    body.lw-guest-page .main-content { position: relative; z-index: 1; }

    /* ── GUEST NAVBAR ── */
    body.lw-guest-page .navbar-top {
        background: rgba(255,253,246,0.97) !important;
        backdrop-filter: blur(12px);
        border-bottom: 2px solid var(--lw-green-pale) !important;
        box-shadow: 0 2px 20px rgba(37,211,102,0.08) !important;
        padding: 10px 5%;
        font-family: 'Nunito', sans-serif;
        transition: box-shadow .3s;
    }
    body.lw-guest-page .navbar-brand-img { height: 38px; width: auto; }

    /* Nav links */
    body.lw-guest-page .navbar-top .nav-link {
        font-family: 'Nunito', sans-serif !important;
        font-weight: 600 !important; font-size: 0.9rem !important;
        color: var(--lw-text) !important;
        position: relative; transition: color .2s;
        padding: 6px 2px !important; margin: 0 10px;
    }
    body.lw-guest-page .navbar-top .nav-link::after {
        content: ''; position: absolute; bottom: -2px; left: 0;
        width: 0; height: 2px; background: var(--lw-green);
        transition: width .25s; border-radius: 2px;
    }
    body.lw-guest-page .navbar-top .nav-link:hover::after { width: 100%; }
    body.lw-guest-page .navbar-top .nav-link:hover { color: var(--lw-green-dark) !important; }

    /* Register link — orange bold */
    body.lw-guest-page .navbar-top .nav-link .text-danger,
    body.lw-guest-page .navbar-top .nav-link.text-danger { color: var(--lw-orange) !important; font-weight: 800 !important; }

    /* ── GUEST PAGE CONTAINER ── */
    body.lw-guest-page .lw-guest-page-container-block { position: relative; z-index: 1; padding-bottom: 5rem !important;}

    /* ── GUEST FOOTER ── */
    body.lw-guest-page footer {
        background: var(--lw-dark) !important;
        color: rgba(255,255,255,0.55) !important;
        border-top: none !important;
        font-family: 'Nunito', sans-serif;
        font-size: 0.82rem;  
          z-index: 1; padding: 0px;
    }
    body.lw-guest-page footer a {
        color: rgba(255,255,255,0.45) !important;
        text-decoration: none; transition: color .2s;
    }
    body.lw-guest-page footer a:hover { color: var(--lw-green) !important; }

    /* ── FORM CARD BOX (guest) ── */
    body.lw-guest-page .lw-form-card-box,
    body.lw-guest-page .card.shadow.border-0,
    body.lw-guest-page .card.o-hidden.border-0 {
        border-radius: 20px !important;
        border: 2px solid var(--lw-green-pale) !important;
        box-shadow: 0 24px 64px rgba(37,211,102,0.13), 0 4px 20px rgba(0,0,0,0.06) !important;
        overflow: hidden; font-family: 'Nunito', sans-serif;
    }

    /* Card header — green gradient */
    body.lw-guest-page .card-header {
        background: linear-gradient(135deg, var(--lw-green), #128c7e) !important;
        border-bottom: none !important; color: #fff !important;
        font-family: 'Baloo 2', cursive; font-weight: 800;
        padding: 22px 28px !important;
    }
    body.lw-guest-page .card-header h1,
    body.lw-guest-page .card-header h2 {
        color: #fff !important; font-family: 'Baloo 2', cursive;
        font-size: 1.5rem; font-weight: 800; margin: 0;
    }
    body.lw-guest-page .card-header p { color: rgba(255,255,255,0.85) !important; font-family: 'Nunito', sans-serif; font-size: 0.9rem; }
    body.lw-guest-page .card-header i { color: #ffd54f !important; }
    body.lw-guest-page .card-header hr { border-color: rgba(255,255,255,0.25) !important; }
    body.lw-guest-page .card-header .text-dark { color: #fff !important; }
    body.lw-guest-page .card-header .text-primary { color: #ffd54f !important; }

    /* Card body */
    body.lw-guest-page .card-body { background: #fff; padding: 32px 36px !important; }

    /* Card footer */
    body.lw-guest-page .card-footer {
        background: var(--lw-cream) !important;
        border-top: 2px solid var(--lw-green-pale) !important;
        padding: 22px 28px !important;
    }

    /* ── FORM INPUTS (guest) ── */
    body.lw-guest-page .input-group-alternative {
        border: 2px solid var(--lw-green-pale) !important;
        border-radius: 12px !important; box-shadow: none !important;
        overflow: hidden; transition: border-color .2s, box-shadow .2s;
        background: var(--lw-cream) !important;
    }
    body.lw-guest-page .input-group-alternative:focus-within {
        border-color: var(--lw-green) !important; background: #fff !important;
        box-shadow: 0 0 0 4px rgba(37,211,102,0.08) !important;
    }
    body.lw-guest-page .input-group-alternative .input-group-text {
        background: var(--lw-green-pale) !important;
        border: none !important; color: var(--lw-green-dark) !important;
        width: 46px; justify-content: center;
        border-right: 2px solid var(--lw-green-pale) !important;
        transition: background .2s;
    }
    body.lw-guest-page .input-group-alternative:focus-within .input-group-text {
        background: var(--lw-green) !important;
        color: #fff !important; border-right-color: var(--lw-green) !important;
    }
    body.lw-guest-page .input-group-alternative .form-control {
        border: none !important; box-shadow: none !important;
        background: transparent !important;
        font-family: 'Nunito', sans-serif !important;
        font-size: 0.92rem !important; color: var(--lw-dark) !important;
        padding: 13px 14px !important; height: auto !important;
    }
    body.lw-guest-page .input-group-alternative .form-control:focus {
        background: transparent !important; box-shadow: none !important;
    }
    body.lw-guest-page .form-group label {
        font-size: 0.82rem !important; font-weight: 700 !important;
        color: var(--lw-dark) !important; margin-bottom: 6px !important;
        font-family: 'Nunito', sans-serif !important;
    }

    /* ── TEXTAREA (contact form) ── */
    body.lw-guest-page .form-control[name="message"],
    body.lw-guest-page textarea.form-control {
        border: 2px solid var(--lw-green-pale) !important;
        border-radius: 12px !important; box-shadow: none !important;
        background: var(--lw-cream) !important;
        font-family: 'Nunito', sans-serif !important;
        font-size: 0.9rem !important; color: var(--lw-dark) !important;
        padding: 13px 14px !important; resize: vertical;
        transition: border-color .2s, box-shadow .2s;
    }
    body.lw-guest-page textarea.form-control:focus,
    body.lw-guest-page .form-control[name="message"]:focus {
        border-color: var(--lw-green) !important; background: #fff !important;
        box-shadow: 0 0 0 4px rgba(37,211,102,0.08) !important; outline: none;
    }

    /* ── CHECKBOX ── */
    body.lw-guest-page .custom-control-label::before {
        border: 2px solid var(--lw-green-pale) !important; background: var(--lw-cream) !important;
    }
    body.lw-guest-page .custom-control-input:checked ~ .custom-control-label::before {
        background: var(--lw-green) !important; border-color: var(--lw-green) !important;
    }
    body.lw-guest-page .custom-control-label {
        font-size: 0.85rem !important; color: var(--lw-muted) !important;
        font-family: 'Nunito', sans-serif;
    }

    /* ── SMALL TEXT HINTS ── */
    body.lw-guest-page .text-light { color: var(--lw-muted) !important; font-size: 0.75rem !important; }

    /* Forgot password link */
    body.lw-guest-page .float-right.text-light,
    body.lw-guest-page a.text-light {
        color: var(--lw-green-dark) !important; font-weight: 700 !important;
        font-size: 0.83rem !important; text-decoration: none; transition: color .2s;
    }
    body.lw-guest-page a.text-light:hover { color: var(--lw-orange) !important; }

    /* ── BUTTONS (guest) ── */
    /* Login / Submit — btn-success */
    body.lw-guest-page .btn-success.btn-block,
    body.lw-guest-page .btn-success.btn-lg {
        background: var(--lw-green) !important; border: none !important;
        border-radius: 50px !important; font-family: 'Nunito', sans-serif !important;
        font-weight: 800 !important; font-size: 0.98rem !important;
        padding: 13px 28px !important;
        box-shadow: 0 6px 20px rgba(37,211,102,0.30) !important;
        transition: all .25s !important; letter-spacing: .3px;
    }
    body.lw-guest-page .btn-success.btn-block:hover,
    body.lw-guest-page .btn-success.btn-lg:hover {
        background: #1ebe5d !important; transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(37,211,102,0.40) !important;
    }

    /* Contact submit — btn-primary */
    body.lw-guest-page .btn-primary.btn-block,
    body.lw-guest-page .btn-primary.btn-lg {
        background: var(--lw-green) !important; border: none !important;
        border-radius: 50px !important; font-family: 'Nunito', sans-serif !important;
        font-weight: 800 !important; font-size: 0.98rem !important;
        padding: 13px 28px !important;
        box-shadow: 0 6px 20px rgba(37,211,102,0.30) !important;
        transition: all .25s !important;
    }
    body.lw-guest-page .btn-primary.btn-block:hover,
    body.lw-guest-page .btn-primary.btn-lg:hover {
        background: #1ebe5d !important; transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(37,211,102,0.40) !important;
    }

    /* Google login */
    body.lw-guest-page .btn-google.btn-block {
        background: #fff !important; color: var(--lw-dark) !important;
        border: 2px solid #e0e0e0 !important; border-radius: 50px !important;
        font-family: 'Nunito', sans-serif !important; font-weight: 700 !important;
        font-size: 0.9rem !important; padding: 11px 20px !important;
        transition: all .25s !important; margin-bottom: 10px;
    }
    body.lw-guest-page .btn-google.btn-block:hover {
        border-color: #db4437 !important; color: #db4437 !important;
        background: #fff8f8 !important; transform: translateY(-2px);
    }
    body.lw-guest-page .btn-google .fa-google { color: #db4437; }

    /* Facebook login */
    body.lw-guest-page .btn-facebook.btn-block {
        background: #fff !important; color: var(--lw-dark) !important;
        border: 2px solid #e0e0e0 !important; border-radius: 50px !important;
        font-family: 'Nunito', sans-serif !important; font-weight: 700 !important;
        font-size: 0.9rem !important; padding: 11px 20px !important;
        transition: all .25s !important; margin-bottom: 10px;
    }
    body.lw-guest-page .btn-facebook.btn-block:hover {
        border-color: #1877f2 !important; color: #1877f2 !important;
        background: #f0f4ff !important; transform: translateY(-2px);
    }
    body.lw-guest-page .btn-facebook .fa-facebook-f { color: #1877f2; }

    /* Warning / Register / More Info button */
    body.lw-guest-page .btn-warning {
        background: var(--lw-orange-pale) !important;
        color: var(--lw-orange) !important;
        border: 2px solid var(--lw-orange) !important;
        border-radius: 50px !important; font-family: 'Nunito', sans-serif !important;
        font-weight: 800 !important; padding: 10px 26px !important;
        transition: all .25s !important; box-shadow: none !important;
    }
    body.lw-guest-page .btn-warning:hover {
        background: var(--lw-orange) !important; color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230,81,0,0.25) !important;
    }

    /* Danger buttons (demo) */
    body.lw-guest-page .btn-danger { border-radius: 50px !important; font-family: 'Nunito', sans-serif !important; font-weight: 700 !important; }

    /* ── ALERTS (guest) ── */
    body.lw-guest-page .alert { border-radius: 12px !important; font-family: 'Nunito', sans-serif !important; font-size: 0.85rem !important; }

    /* ── DEMO ALERT BAR ── */
    body.lw-guest-page .lw-alert-dismissible-container .alert-danger {
        border-radius: 0 !important; font-family: 'Nunito', sans-serif !important;
    }

    /* ── LICENSE WARNING CARD ── */
    body.lw-guest-page .card.my-5 {
        border-radius: var(--lw-radius) !important;
        border: 2px solid #fbbf24 !important;
        font-family: 'Nunito', sans-serif;
    }

    /* ── WA FLOAT BUTTON (guest) ── */
    .lw-wa-float {
        position: fixed; bottom: 28px; right: 28px; z-index: 1050;
        width: 56px; height: 56px; border-radius: 50%; background: #25d366;
        color: #fff; display: flex; align-items: center; justify-content: center;
        font-size: 1.55rem; box-shadow: 0 8px 28px rgba(37,211,102,0.5);
        text-decoration: none; animation: lwWaPulse 2.5s ease-in-out infinite;
        transition: transform .2s;
    }
    .lw-wa-float:hover { transform: scale(1.12); color: #fff; }
    @keyframes lwWaPulse {
        0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
        50%      { box-shadow: 0 8px 44px rgba(37,211,102,0.85); }
    }

    /* ── SCROLL REVEAL ── */
    .lw-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
    .lw-reveal.lw-visible { opacity: 1; transform: translateY(0); }

    /* ════════════════════════════════════
       DARK THEME COMPATIBILITY
       Don't override dark theme on guest
    ════════════════════════════════════ */
    body.lw-guest-page[lw-theme-mode="dark"],
    body.lw-guest-page.lw-app-theme-dark {
        /* Keep cream bg even on dark theme for guest pages — design choice */
        background: linear-gradient(135deg, #0f1f12 0%, #0b1215 50%, #1c0f06 100%) !important;
    }
    body.lw-guest-page[lw-theme-mode="dark"]::before {
        background: radial-gradient(circle, rgba(37,211,102,0.06) 0%, transparent 70%);
    }
    body.lw-guest-page[lw-theme-mode="dark"] .lw-form-card-box,
    body.lw-guest-page.lw-app-theme-dark .lw-form-card-box {
        border-color: rgba(37,211,102,0.2) !important;
    }
    body.lw-guest-page[lw-theme-mode="dark"] .navbar-top,
    body.lw-guest-page.lw-app-theme-dark .navbar-top {
        background: rgba(11,18,21,0.97) !important;
        border-bottom-color: rgba(37,211,102,0.15) !important;
    }
    
    /* ── for default header hide ── */
    .main-content .navbar-top {
     
    display: none;
    }
    
    
/* ── HEADER ── */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,253,246,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--green-pale);
    padding: 10px 5%;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 20px rgba(37,211,102,0.08);
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-family: 'Baloo 2', cursive; font-size: 1.6rem; font-weight: 800; line-height: 1;
    text-decoration: none; display: flex; align-items: center; gap: 2px;
}
.logo-text .w { color: var(--green); }
.logo-text .c { color: var(--orange); }
.logo-text .rest { color: var(--dark); }
.logo-sub { font-size: 0.62rem; color: var(--green-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

nav { display: flex; gap: 26px; align-items: center; }
nav a {
    text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem;
    transition: color .2s; position: relative;
}
nav a::after {
    content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px;
    background: var(--green); transition: width .25s; border-radius: 2px;
}
nav a:hover::after { width: 100%; }
nav a:hover { color: var(--green-dark); }

.header-actions { display: flex; gap: 10px; align-items: center; }
.btn-call, .btn-wa {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
    text-decoration: none; transition: all .2s; border: none; cursor: pointer;
}
.btn-call { background: var(--green-dark); color: #fff; }
.btn-call:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2.5px; background: var(--green); border-radius: 2px; transition: .3s; }

.mobile-nav {
    display: none; flex-direction: column; gap: 8px;
    background: #fff; position: fixed; top: 65px; left: 0; right: 0;
    z-index: 999; padding: 16px 5%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--green-pale);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--dark); text-decoration: none; font-weight: 700; padding: 8px 0; border-bottom: 1px solid var(--green-pale); }
.mobile-nav a:last-child { border: none; }
 

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.8); padding: 60px 5% 30px; width: 100%; overflow-x: hidden; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.footer-brand .logo-text .w { color: #6fcf7c; }
.footer-brand .logo-text .c { color: #f4a261; }
.footer-brand .logo-text .rest { color: rgba(255,255,255,.9); }
.footer-brand p { font-size: .85rem; margin-top: 12px; line-height: 1.7; opacity: .7; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; font-size: .9rem; }
.social-links a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-family: 'Baloo 2',cursive; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0px;}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: #6fcf7c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; max-width: 1100px; margin-left: auto; margin-right: auto; }
.footer-bottom p { font-size: .82rem; opacity: .5; }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .78rem; transition: color .2s; }
.footer-bottom-links a:hover { color: #6fcf7c; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-desc { margin: 16px auto 0; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .floating-badge { display: none; }
}
@media(max-width:580px) {
    .footer-grid { grid-template-columns: 1fr; }
    section { padding: 60px 5%; }
    .phone-mockup { width: 220px; height: 440px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
}    
    
