/* ============================= */
/* RESET */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ============================= */
/* TOP BAR */
/* ============================= */
.top-bar {
    background: #111827;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #1f2937;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left,
.top-right {
    color: #25D366;
}

/* ============================= */
/* MAIN HEADER */
/* ============================= */
.main-header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1f2937;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* ============================= */
/* LOGO */
/* ============================= */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.logo span {
    color: #25D366;
}

/* ============================= */
/* MENU */
/* ============================= */
.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.menu a:hover {
    color: #25D366;
}

/* Underline Animation */
.menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #25D366;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.menu a:hover::after {
    width: 100%;
}

/* ============================= */
/* AUTH BUTTONS */
/* ============================= */
.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-outline {
    padding: 8px 18px;
    border-radius: 5px;
    border: 1px solid #25D366;
    color: #25D366;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #25D366;
    color: #000;
}

.btn-solid {
    padding: 8px 18px;
    border-radius: 5px;
    background: #25D366;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-solid:hover {
    background: #1ebe5d;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
    .menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }
}


/* INDEX */

body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:#fff;
}

/* HERO */
.hero{
    position:relative;
    padding:120px 20px;
    text-align:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    width:200%;
    height:200%;
    background:linear-gradient(-45deg,#25D366,#128C7E,#0f172a,#1f2937);
    background-size:400% 400%;
    animation:gradientMove 10s ease infinite;
    top:-50%;
    left:-50%;
    z-index:-1;
}

.hero h1{
    font-size:45px;
    margin-bottom:20px;
}

.hero p{
    color:#cbd5e1;
    margin-bottom:30px;
}

/* BUTTONS */
.btn-main{
    background:#25D366;
    color:#000;
    padding:12px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.btn-main:hover{
    box-shadow:0 0 20px #25D366;
    transform:translateY(-3px);
}

.btn-light{
    border:1px solid #fff;
    padding:12px 30px;
    border-radius:30px;
    color:#fff;
    text-decoration:none;
}

/* SECTIONS */
.section-dark{
    padding:100px 20px;
    background:#111827;
}

.section-gradient{
    padding:100px 20px;
    background:linear-gradient(135deg,#0f172a,#1f2937);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
    font-size:32px;
}

/* CARD GRID */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

/* GLASS CARD */
.glass-card{
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(15px);
    transition:0.4s;
}

.glass-card:hover{
    transform:translateY(-15px);
    box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* FEATURE CARD */
.feature-card{
    padding:40px;
    border-radius:20px;
    background:#1f2937;
    transition:0.4s;
}

.feature-card:hover{
    transform:scale(1.05);
    background:#25D366;
    color:#000;
}

/* PRICING */
.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.pricing-card{
    padding:50px;
    border-radius:25px;
    background:#1f2937;
    text-align:center;
    transition:0.4s;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.pricing-card li{
    margin:12px 0;
}

.pricing-card:hover{
    transform:translateY(-15px);
    box-shadow:0 0 30px rgba(37,211,102,0.4);
}

.pricing-card.featured{
    border:2px solid #25D366;
    transform:scale(1.05);
}

/* ANIMATIONS */
@keyframes gradientMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1{
        font-size:32px;
    }
}

/* FOOTER */



/* ============================= */
/* PREMIUM FOOTER */
/* ============================= */

.footer {
    background: #0b1220;
    position: relative;
    padding-top: 60px;
    margin-top: 80px;
    color: #cbd5e1;
}

/* Animated Top Line */
.footer-top-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg,#25D366,#128C7E,#25D366);
    background-size: 200% 200%;
    animation: moveLine 3s linear infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 40px;
    padding: 60px 20px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #25D366;
    padding-left: 5px;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #25D366;
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #1f2937;
    font-size: 14px;
}

/* Animation */
@keyframes moveLine {
    0% {background-position:0% 50%;}
    100% {background-position:100% 50%;}
}

/* Responsive */
@media(max-width:768px){
    .footer-grid {
        text-align: center;
    }
}



/* ================= WHATSAPP WIDGET ================= */

/* ================= ULTRA PREMIUM WHATSAPP WIDGET ================= */

.wa-widget{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:9999;
    font-family:'Poppins',sans-serif;
}

/* Floating Button */

.wa-button{
    width:70px;
    height:70px;
    border-radius:50%;
    background:linear-gradient(135deg,#00ff87,#60efff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    cursor:pointer;
    color:#000;
    font-weight:bold;
    box-shadow:0 15px 35px rgba(0,255,135,0.4);
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.wa-button::before{
    content:"";
    position:absolute;
    width:120%;
    height:120%;
    background:linear-gradient(45deg,transparent,rgba(255,255,255,0.4),transparent);
    transform:rotate(45deg);
    top:-150%;
    left:-150%;
    transition:0.6s;
}

.wa-button:hover::before{
    top:150%;
    left:150%;
}

.wa-button:hover{
    transform:scale(1.1) rotate(5deg);
    box-shadow:0 20px 45px rgba(0,255,135,0.6);
}

/* Chat Box */

.wa-box{
    width:350px;
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.1);
    border-radius:25px;
    position:absolute;
    bottom:95px;
    right:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(30px) scale(0.9);
    transition:0.4s cubic-bezier(.68,-0.55,.27,1.55);
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.2);
}

.wa-box.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

/* Header */

.wa-header{
    padding:18px;
    background:linear-gradient(135deg,#00ff87,#60efff);
    color:#000;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wa-agent{
    display:flex;
    align-items:center;
    gap:12px;
}

.wa-avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:linear-gradient(135deg,#fff,#ddd);
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.wa-header h4{
    margin:0;
    font-size:16px;
}

.wa-header span{
    font-size:12px;
    color:#065f46;
    font-weight:600;
}

.wa-header button{
    background:none;
    border:none;
    font-size:18px;
    cursor:pointer;
    color:#000;
}

/* Body */

.wa-body{
    padding:20px;
    color:#fff;
    font-size:14px;
    line-height:1.6;
}

.wa-body p{
    background:rgba(255,255,255,0.15);
    padding:12px 15px;
    border-radius:15px;
    margin-bottom:10px;
    width:fit-content;
    animation:fadeInUp 0.5s ease forwards;
}

/* Footer */

.wa-footer{
    padding:18px;
    text-align:center;
}

.wa-footer a{
    display:inline-block;
    padding:12px 25px;
    border-radius:40px;
    text-decoration:none;
    background:linear-gradient(135deg,#00ff87,#60efff);
    color:#000;
    font-weight:600;
    transition:0.4s;
}

.wa-footer a:hover{
    transform:scale(1.05);
    box-shadow:0 10px 25px rgba(0,255,135,0.5);
}

/* Animations */

@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media(max-width:768px){
    .wa-box{
        width:300px;
    }
}



/* ===== HERO BALANCED DARK ===== */

.hero-balanced{
    padding:140px 20px 100px;
    background:#0f172a; /* same premium dark background */
    color:#ffffff;
}

.hero-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
    flex-wrap:wrap;
}

/* LEFT */

.hero-left{
    flex:1;
    min-width:300px;
}

.hero-badge{
    display:inline-block;
    padding:6px 14px;
    background:#1e293b;
    border-radius:20px;
    font-size:13px;
    margin-bottom:20px;
    color:#22c55e; /* subtle green only here */
}

.hero-left h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-left h1 span{
    display:block;
    color:#22c55e; /* highlight only */
}

.hero-left p{
    color:#cbd5e1;
    margin-bottom:35px;
    font-size:16px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

.btn-primary{
    padding:14px 30px;
    background:#22c55e;
    color:#000;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:0.3s;
}

.btn-primary:hover{
    background:#16a34a;
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(34,197,94,0.3);
}

.btn-outline{
    padding:14px 30px;
    border:1px solid #334155;
    border-radius:40px;
    color:#fff;
    text-decoration:none;
    transition:0.3s;
}

.btn-outline:hover{
    background:#1e293b;
}

/* STATS */

.hero-stats{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.hero-stats h3{
    margin:0;
    color:#22c55e;
}

.hero-stats span{
    font-size:14px;
    color:#94a3b8;
}

/* RIGHT CARD */

.hero-right{
    flex:1;
    min-width:300px;
    display:flex;
    justify-content:center;
}

.hero-card{
    width:100%;
    max-width:380px;
    background:#1e293b;
    padding:35px;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,0.4);
    transition:0.3s;
}

.hero-card:hover{
    transform:translateY(-5px);
}

.progress-track{
    height:8px;
    background:#334155;
    border-radius:20px;
    overflow:hidden;
    margin:15px 0;
}

.progress-bar{
    width:98%;
    height:100%;
    background:#22c55e;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-buttons{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.hero-left h1{
    font-size:36px;
}

}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0f172a;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:#111827;
    color:#cbd5e1;
    font-size:14px;
    padding:8px 0;
}

.top-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ================= HEADER ================= */
.main-header{
    background:#0f172a;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */
.logo{
    font-size:22px;
    font-weight:700;
    color:white;
}

.logo span{
    color:#22c55e;
}

/* MENU */
.menu{
    display:flex;
    gap:30px;
}

.menu a{
    text-decoration:none;
    color:#cbd5e1;
    font-weight:500;
    transition:0.3s;
}

.menu a:hover{
    color:#22c55e;
}

/* BUTTONS */
.auth-buttons{
    display:flex;
    gap:15px;
}

.btn-outline{
    padding:8px 18px;
    border:1px solid #22c55e;
    color:#22c55e;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.btn-outline:hover{
    background:#22c55e;
    color:white;
}

.btn-solid{
    padding:8px 18px;
    background:#22c55e;
    color:white;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.btn-solid:hover{
    background:#16a34a;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
    transition:0.3s;
}

.menu-toggle:hover{
    color:#22c55e;
}

/* ================= MOBILE ================= */
@media(max-width:992px){

    .menu{
        position:absolute;
        top:80px;
        right:-100%;
        background:#111827;
        flex-direction:column;
        width:220px;
        padding:25px;
        gap:20px;
        transition:0.4s;
        border-radius:10px;
    }

    .menu.active{
        right:20px;
    }

    .auth-buttons{
        display:none;
    }

    .menu-toggle{
        display:block;
    }

    .top-bar{
        display:none;
    }
}


.wa-box{
    width:320px;
    background:#111827;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
    font-family:'Poppins',sans-serif;
}

/* HEADER */
.wa-header{
    background:#22c55e;
    color:white;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.wa-agent{
    display:flex;
    align-items:center;
    gap:12px;
}

.wa-avatar{
    width:40px;
    height:40px;
    background:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#22c55e;
    font-size:20px;
}

.online-dot{
    font-size:13px;
    opacity:0.9;
}

/* CLOSE BUTTON */
.wa-close{
    background:none;
    border:none;
    color:white;
    font-size:18px;
    cursor:pointer;
}

/* BODY */
.wa-body{
    padding:20px;
    color:#cbd5e1;
    font-size:14px;
    line-height:1.6;
}

/* FOOTER */
.wa-footer{
    padding:15px;
    background:#0f172a;
}

.wa-footer a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:#22c55e;
    color:white;
    padding:10px;
    border-radius:8px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.wa-footer a:hover{
    background:#16a34a;
}