/*==================================================
SMARTBOTS CSS V2
Part 1
Reset + Variables + Global + Layout + Button
==================================================*/

/*==============================
RESET
==============================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:"Geist",sans-serif;
    background:#f7f9ff;
    color:#1f2937;
    overflow-x:hidden;
    line-height:1.6;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}

button,
input,
textarea,
select{
    font:inherit;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

/*==============================
ROOT
==============================*/

:root{

    /* COLORS */

    --primary:#0d5cff;
    --primary-dark:#003fc7;

    --secondary:#FFD54F;

    --text:#1f2937;

    --text-light:#64748b;

    --white:#ffffff;

    --bg:#f7f9ff;

    --surface:#ffffff;

    --border:#e5e7eb;

    --success:#5abf52;

    --orange:#ff8b1f;

    /* SHADOW */

    --shadow-sm:
    0 8px 20px rgba(0,0,0,.04);

    --shadow:

    0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:

    0 30px 70px rgba(0,0,0,.12);

    /* RADIUS */

    --radius-sm:14px;

    --radius:22px;

    --radius-lg:30px;

    /* CONTAINER */

    --container:1280px;

    /* TRANSITION */

    --transition:.35s ease;

}

/*==============================
GLOBAL
==============================*/

body{

    min-height:100vh;

    background:var(--bg);

    color:var(--text);

}

section{

    position:relative;

}

.container{

    width:min(var(--container),calc(100% - 48px));

    margin-inline:auto;

}

@media (max-width:768px){

.container{

width:min(var(--container),calc(100% - 32px));

}

}

/*==============================
TYPOGRAPHY
==============================*/

h1{

    font-size:clamp(2.5rem,6vw,4.4rem);

    line-height:1.08;

    font-weight:800;

    letter-spacing:-2px;

}

h2{

    font-size:clamp(2rem,5vw,3rem);

    line-height:1.15;

    font-weight:800;

}

h3{

    font-size:clamp(1.4rem,3vw,2rem);

    line-height:1.25;

    font-weight:700;

}

p{

    color:var(--text-light);

    font-size:clamp(.98rem,1.4vw,1.1rem);

}

/*==============================
BUTTON
==============================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 30px;

    background:var(--primary);

    color:white;

    border:none;

    border-radius:16px;

    font-weight:700;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

    cursor:pointer;

}

.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

    0 18px 45px rgba(13,92,255,.28);

}

.btn-primary::after{

    content:"";

    position:absolute;

    left:50%;

    top:50%;

    width:0;

    height:0;

    background:rgba(255,255,255,.18);

    border-radius:50%;

    transform:translate(-50%,-50%);

    transition:.5s;

}

.btn-primary:hover::after{

    width:340px;

    height:340px;

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:56px;

    padding:0 30px;

    border-radius:16px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:700;

    transition:var(--transition);

}

.btn-outline:hover{

    background:var(--primary);

    color:white;

}

/*==============================
BADGE
==============================*/

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:#e9f1ff;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    margin-bottom:24px;

}

/*==============================
SECTION HEADER
==============================*/

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.section-header h2{

    margin-bottom:18px;

    color:#17233d;

}

.section-header h2 span{

    position:relative;

    display:inline-block;

    z-index:1;

}

.section-header h2 span::after{

    content:"";

    position:absolute;

    left:-4px;

    right:-4px;

    bottom:.14em;

    height:.28em;

    background:#c8f4d7;

    z-index:-1;

    border-radius:3px;

}

.section-header p{

    max-width:760px;

    margin:auto;

}

/*==============================
COMMON CARD
==============================*/

.card{

    background:white;

    border-radius:28px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}
/*==================================================
PART 2
ANNOUNCEMENT
HEADER
NAVBAR
==================================================*/

/*==============================
ANNOUNCEMENT
==============================*/

.announcement{

    position:relative;

    display:flex;

    align-items:center;

    height:48px;

    overflow:hidden;

    background:#C8F4D7;

    border-bottom:1px solid rgba(0,0,0,.05);

    white-space:nowrap;

}

.announcement-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:marquee 28s linear infinite;

}

.announcement:hover .announcement-track{

    animation-play-state:paused;

}

.announce-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding-inline:28px;

    color:#0f172a;

    font-size:.92rem;

    flex-shrink:0;

}

.announce-item p{

    font-weight:700;

    color:#0f172a;

}

.announce-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:8px 16px;

    border-radius:999px;

    border:2px solid #111827;

    background:transparent;

    font-size:.82rem;

    font-weight:700;

    transition:.35s;

}

.announce-btn:hover{

    background:#111827;

    color:#fff;

}

.announce-btn span{

    transition:.35s;

}

.announce-btn:hover span{

    transform:translateX(4px);

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==============================
HEADER
==============================*/

header{

    position:sticky;

    top:0;

    left:0;

    z-index:999;

    width:100%;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.45);

    transition:.35s;

}

header.scrolled{

    box-shadow:

    0 10px 35px rgba(0,0,0,.08);

}

/*==============================
NAVBAR
==============================*/

.navbar{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:86px;

    gap:24px;

}

/*==============================
LOGO
==============================*/

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.logo img{

    width:auto;

    height:80px;

}

/*==============================
DESKTOP NAV
==============================*/

nav{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:34px;

    flex:1;

}

nav a{

    position:relative;

    color:#334155;

    font-size:.96rem;

    font-weight:600;

    transition:.35s;

}

nav a:hover{

    color:var(--primary);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

nav a.active{

    color:var(--primary);

}

nav a.active::after{

    width:100%;

}

/*==============================
HEADER BUTTON
==============================*/

.navbar>.btn-primary{

    flex-shrink:0;

}

/*==============================
HAMBURGER
==============================*/

.menu-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    border-radius:12px;

    background:#EDF4FF;

    cursor:pointer;

    transition:.3s;

}

.menu-toggle:hover{

    background:#DCEBFF;

}

.menu-toggle span{

    display:block;

    width:22px;

    height:2px;

    margin:5px auto;

    background:#0d5cff;

    transition:.35s;

}

/*==============================
TABLET
==============================*/

@media (max-width:1024px){

    nav{

        gap:22px;

    }

    nav a{

        font-size:.90rem;

    }

    .navbar>.btn-primary{

        padding-inline:20px;

    }

}

/*==============================
MOBILE
==============================*/

@media (max-width:900px){

    .navbar{

        min-height:74px;

    }

    .logo img{

        height:64px;

    }

    .menu-toggle{

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

    }

    nav{

        position:fixed;

        top:74px;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        gap:0;

        padding:20px;

        box-shadow:

        0 18px 40px rgba(0,0,0,.08);

        transform:translateY(-140%);

        opacity:0;

        visibility:hidden;

        transition:.35s;

    }

    nav.show{

        transform:none;

        opacity:1;

        visibility:visible;

    }

    nav a{

        width:100%;

        padding:18px 0;

        border-bottom:1px solid #ECECEC;

    }

    .navbar>.btn-primary{

        display:none;

    }

}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width:480px){

    .announcement{

        height:42px;

    }

    .announce-item{

        gap:8px;

        padding-inline:18px;

        font-size:.80rem;

    }

    .announce-btn{

        display:none;

    }

    .navbar{

        min-height:70px;

    }

    .logo img{

        height:56px;

    }

}
/*==================================================
PART 3
HERO
==================================================*/

.hero{

    position:relative;

    padding:48px 0 110px;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,#dcecff 0%,transparent 42%),
        radial-gradient(circle at bottom right,#edf4ff 0%,transparent 36%),
        #f7f9ff;

}

/* Decorative Grid */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

        linear-gradient(rgba(255,255,255,.35) 1px,transparent 1px),

        linear-gradient(
            90deg,
            rgba(255,255,255,.35) 1px,
            transparent 1px
        );

    background-size:48px 48px;

    opacity:.25;

    pointer-events:none;

}

/*==============================
CARD
==============================*/

.hero-card{

    position:relative;

    min-height:620px;

    border-radius:34px;

    overflow:hidden;

    background-image:url("assets/hero-1.png");

    background-size:cover;

    background-position:right center;

    background-repeat:no-repeat;

    box-shadow:

        0 30px 70px rgba(0,0,0,.12);
    
    max-width:90%;    

    margin:0 auto;

}

/*==============================
OVERLAY
==============================*/

.hero-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        90deg,

        rgba(0,0,0,.95) 0%,

        rgba(0,0,0,.88) 25%,

        rgba(0,0,0,.65) 48%,

        rgba(0,0,0,.35) 68%,

        transparent 100%

    );

}

.hero-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(

        circle at center,

        transparent 55%,

        rgba(0,0,0,.12) 100%

    );

}

/*==============================
CONTENT
==============================*/

.hero-content{

    position:relative;

    z-index:2;

    max-width:560px;

    padding:

        90px

        72px;

    color:#fff;

}

/*==============================
BADGE
==============================*/

.hero .badge{

    margin-bottom:28px;

}

/*==============================
TITLE
==============================*/

.hero h1{

    color:#fff;

    margin-bottom:28px;

}

.hero h1 span{

    background:

    linear-gradient(

        90deg,

        #6eb6ff,

        #0d5cff

    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==============================
DESCRIPTION
==============================*/

.hero p{

    color:

    rgba(255,255,255,.82);

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:36px;

}

/*==============================
BUTTON GROUP
==============================*/

.hero-buttons{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.hero-buttons .btn-outline{

    border-color:#fff;

    color:#fff;

}

.hero-buttons .btn-outline:hover{

    background:#fff;

    color:#0d5cff;

}

/*==============================
FLOAT EFFECT
==============================*/

.hero-card{

    transition:.45s;

}

.hero-card:hover{

    transform:

    translateY(-4px);

}

/*==============================
TABLET
==============================*/

@media (max-width:1024px){

.hero{

padding:36px 0 90px;

}

.hero-card{

min-height:560px;

}

.hero-content{

padding:

70px

54px;

max-width:520px;

}

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px){

.hero{

padding:24px 0 70px;

}

.hero-card{

min-height:auto;

padding-top:360px;

background-position:

center top;

background-size:cover;

}

.hero-card::before{

background:

linear-gradient(

180deg,

rgba(0,0,0,.45) 0%,

rgba(0,0,0,.75) 38%,

rgba(0,0,0,.95) 100%

);

}

.hero-content{

max-width:100%;

padding:

34px

26px

40px;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-outline{

width:100%;

}

}

/*==============================
360px
==============================*/

@media (max-width:390px){

.hero-card{

padding-top:300px;

border-radius:24px;

}

.hero-content{

padding:

26px

20px

30px;

}

.hero .badge{

font-size:.72rem;

padding:

8px

14px;

}

.hero-buttons{

gap:14px;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-outline{

min-height:52px;

font-size:.92rem;

}

}
/*==================================================
PART 4
WHY SMARTBOTS
PROGRAM
==================================================*/

/*==============================
WHY SMARTBOTS
==============================*/

.why-smartbots{

    padding:110px 0;

    background:#fff;

}

.section-header{

    text-align:center;

    margin-bottom:70px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:32px;

}

/*==============================
CARD
==============================*/

.why-card{

    position:relative;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:30px;

    background:#fff;

    border:1px solid #ECECEC;

    transition:.35s;

    box-shadow:

        0 12px 35px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 30px 70px rgba(0,0,0,.12);

}

.icon-wrapper{

    position:relative;

    padding:34px 34px 20px;

}

.icon-wrapper img{

    width:44px;

    position:relative;

    z-index:2;

}

.icon-glow{

    position:absolute;

    left:-80px;

    top:-60px;

    width:180px;

    height:180px;

    border-radius:50%;

    filter:blur(55px);

    opacity:.45;

}

.icon-glow.orange{

    background:#FFD8B5;

}

.icon-glow.blue{

    background:#BDD4FF;

}

.icon-glow.brown{

    background:#EFD7C5;

}

.why-card h3{

    padding:0 34px;

    color:#1F2937;

    font-size:clamp(1.5rem,2vw,2.2rem);

    line-height:1.2;

    font-weight:800;

}

.why-card p{

    padding:18px 34px 30px;

    color:#64748B;

    line-height:1.8;

    flex:1;

}

.card-image{

    margin-top:auto;

    aspect-ratio:16/10;

    overflow:hidden;

}

.card-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.why-card:hover .card-image img{

    transform:scale(1.04);

}

/*==============================
PROGRAM
==============================*/

.program{

    padding:110px 0;

    background:#F7F9FF;

}

.program-title{

    margin-bottom:40px;

    text-align:left;

}

.program-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:30px;

}

.program-card{

    display:flex;

    flex-direction:column;

    padding:30px;

    background:#fff;

    border-radius:28px;

    transition:.35s;

    overflow:hidden;

    box-shadow:

        0 12px 35px rgba(0,0,0,.05);

}

.program-card:hover{

    transform:translateY(-8px);

    box-shadow:

        0 28px 60px rgba(0,0,0,.12);

}

.program-card.green{

    border:2px solid #5ABF52;

}

.program-card.blue{

    border:2px solid #0D5CFF;

}

.program-card.orange{

    border:2px solid #FF8B1F;

}

.age{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border-radius:999px;

    color:#fff;

    font-size:.82rem;

    font-weight:700;

}

.program-card.green .age{

    background:#5ABF52;

}

.program-card.blue .age{

    background:#0D5CFF;

}

.program-card.orange .age{

    background:#FF8B1F;

}

.program-card h3{

    margin:18px 0 12px;

    color:#1F2937;

}

.program-card p{

    margin-bottom:20px;

    color:#64748B;

}

.program-card ul{

    margin-bottom:26px;

}

.program-card li{

    display:flex;

    align-items:center;

    gap:8px;

    margin-bottom:10px;

    font-weight:600;

    color:#334155;

}

.card-program{

    margin-top:auto;

    aspect-ratio:4/3;

    overflow:hidden;

}

.card-program img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

}

.program-card:hover .card-program img{

    transform:scale(1.03);

}

/*==============================
TABLET
==============================*/

@media (max-width:1024px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .program-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px){

    .why-smartbots{

        padding:80px 0;

    }

    .program{

        padding:80px 0;

    }

    .why-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .program-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .why-card h3{

        font-size:1.7rem;

    }

    .icon-wrapper{

        padding:28px 28px 18px;

    }

    .why-card h3{

        padding:0 28px;

    }

    .why-card p{

        padding:16px 28px 28px;

    }

    .program-card{

        padding:26px;

    }

}

/*==============================
360px
==============================*/

@media (max-width:390px){

    .section-header{

        margin-bottom:42px;

    }

    .why-card{

        border-radius:24px;

    }

    .program-card{

        border-radius:24px;

    }

    .why-card h3{

        font-size:1.45rem;

    }

    .program-card{

        padding:22px;

    }

    .card-program{

        aspect-ratio:1/1;

    }

}
/*==================================================
PART 5
SERVICE AREA
FAQ
CTA
==================================================*/

/*==============================
SERVICE AREA
==============================*/

.service-area{

    position:relative;

    padding:110px 0;

    overflow:hidden;

    background:
        linear-gradient(
            90deg,
            rgba(6,18,48,.96) 0%,
            rgba(6,18,48,.88) 35%,
            rgba(6,18,48,.35) 68%,
            rgba(6,18,48,.15) 100%
        ),
        url("assets/bg_rumah.png") center/cover no-repeat;

}

.area-wrapper{

    display:grid;

    grid-template-columns:520px 1fr;

    align-items:center;

    gap:70px;

}

.area-content{

    color:#fff;

    width:100%;

    z-index:2;

}

.section-tag{

    display:inline-block;

    margin-bottom:18px;

    color:#FFD54F;

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.85rem;

    font-weight:700;

}

.area-content h2{

    color:#fff;

    margin-bottom:22px;

}

.area-content h2 span{

    color:#FFD54F;

}

.area-desc{

    color:#CFD8EF;

    line-height:1.9;

    margin-bottom:38px;

}

.area-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-bottom:28px;

}

.area-item{

    display:flex;

    align-items:center;

    gap:10px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(14px);

    transition:.35s;

    color:#fff;

    font-weight:600;

}

.area-item:hover{

    background:#0D5CFF;

    transform:translateY(-4px);

}

.area-content small{

    display:block;

    color:#B5BFD7;

    line-height:1.8;

}

.area-image{

    min-height:620px;

}

/*==============================
FAQ
==============================*/

.faq{

    padding:110px 0;

    background:#F8FBFF;

}

.faq-list{

    max-width:900px;

    margin:60px auto 0;

}

.faq-item{

    overflow:hidden;

    margin-bottom:18px;

    border-radius:20px;

    background:#fff;

    box-shadow:

        0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-2px);

}

.faq-question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:24px 30px;

    background:none;

    border:none;

    cursor:pointer;

    text-align:left;

    color:#1F2937;

    font-size:1.05rem;

    font-weight:700;

}

.faq-question span{

    font-size:1.8rem;

    color:var(--primary);

    transition:.35s;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 30px 28px;

    color:#64748B;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:320px;

}

.faq-item.active .faq-question span{

    transform:rotate(45deg);

}

/*==============================
CTA
==============================*/

.cta{

    padding:110px 0;

    text-align:center;

    color:#fff;

    background:
        linear-gradient(
            rgba(13,92,255,.72),
            rgba(13,92,255,.72)
        ),
        url("assets/bg_siap_mulai.png")
        center/cover
        no-repeat;

}

.cta h2{

    color:#fff;

    margin-bottom:20px;

}

.cta h2 span{

    color:#FFD54F;

}

.cta p{

    max-width:760px;

    margin:0 auto 36px;

    color:rgba(255,255,255,.92);

    line-height:1.9;

}

.cta .btn-primary{

    background:#fff;

    color:var(--primary);

}

.cta .btn-primary:hover{

    background:#f4f7ff;

}

/*==============================
TABLET
==============================*/

@media(max-width:1024px){

    .area-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .area-image{

        display:none;

    }

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

    .service-area,

    .faq,

    .cta{

        padding:80px 0;

    }

    .area-list{

        grid-template-columns:1fr;

    }

    .faq-question{

        padding:20px 22px;

        font-size:1rem;

    }

    .faq-answer p{

        padding:0 22px 22px;

    }

}

/*==============================
360px
==============================*/

@media(max-width:390px){

    .area-item{

        padding:16px 18px;

        font-size:.92rem;

    }

    .faq-item{

        border-radius:16px;

    }

    .faq-question{

        font-size:.95rem;

    }

    .cta{

        padding:70px 0;

    }

}

/*==================================================
PART 6
FOOTER
WHATSAPP
GLOBAL
==================================================*/

/*==============================
FOOTER
==============================*/

footer{

    background:#08142F;

    color:#fff;

    padding:80px 0 28px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:48px;

}

.footer-grid h3{

    margin-bottom:16px;

    font-size:1.6rem;

}

.footer-grid h4{

    margin-bottom:20px;

    font-size:1rem;

}

.footer-grid p{

    color:#CBD5E1;

    line-height:1.8;

}

.footer-grid a{

    display:block;

    margin:12px 0;

    text-decoration:none;

    color:#CBD5E1;

    transition:.3s;

}

.footer-grid a:hover{

    color:#fff;

    transform:translateX(4px);

}

.copyright{

    margin-top:60px;

    padding-top:24px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.12);

    color:#94A3B8;

    font-size:.9rem;

}

/*==============================
WHATSAPP
==============================*/

.wa-widget{

    position:fixed;

    right:22px;

    bottom:22px;

    z-index:9999;

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    gap:14px;

}

.wa-chat-box{

    position:relative;

    width:280px;

    background:#fff;

    padding:18px;

    border-radius:20px;

    box-shadow:

        0 20px 45px rgba(0,0,0,.15);

    animation:fadeUp .45s ease;

}

.wa-chat-box::after{

    content:"";

    position:absolute;

    right:26px;

    bottom:-8px;

    width:18px;

    height:18px;

    background:#fff;

    transform:rotate(45deg);

}

.wa-chat-box h4{

    margin-bottom:8px;

}

.wa-chat-box p{

    color:#64748B;

    line-height:1.6;

}

.wa-close{

    position:absolute;

    right:12px;

    top:10px;

    border:none;

    background:none;

    cursor:pointer;

    font-size:20px;

    color:#94A3B8;

}

.wa-button{

    width:68px;

    height:68px;

    transition:.35s;

}

.wa-button img{

    width:100%;

    display:block;

}

.wa-button:hover{

    transform:scale(1.08);

}

/*==============================
ANIMATION
==============================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/*==============================
GLOBAL IMAGE
==============================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

/*==============================
GLOBAL SECTION
==============================*/

section{

    position:relative;

}

h1{

    font-size:clamp(2.3rem,5vw,4.4rem);

}

h2{

    font-size:clamp(2rem,4vw,3.2rem);

}

h3{

    font-size:clamp(1.3rem,2vw,2rem);

}

p{

    line-height:1.8;

}

/*==============================
TABLET
==============================*/

@media(max-width:1024px){

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-grid a:hover{

        transform:none;

    }

    .wa-widget{

        right:16px;

        bottom:16px;

    }

    .wa-chat-box{

        width:240px;

    }

}

/*==============================
360px
==============================*/

@media(max-width:390px){

    .container{

        width:min(100% - 32px,1280px);

    }

    .btn-primary,

    .btn-outline{

        width:100%;

        justify-content:center;

    }

    .wa-chat-box{

        display:none;

    }

    .wa-button{

        width:60px;

        height:60px;

    }

}
/* ===================================
   GLOBAL RESPONSIVE
=================================== */

@media (max-width:1200px){

    .container{

        width:min(100%,calc(100% - 60px));
    }

    .hero{

        padding:40px 40px 80px;
    }

    .hero-card{

        max-width:100%;
    }

}

@media (max-width:992px){

    .navbar nav{

        display:none;
    }

    .btn-primary{

        padding:14px 24px;
    }

    .why-grid,

    .program-grid{

        grid-template-columns:1fr;
    }

    .area-wrapper{

        grid-template-columns:1fr;

        gap:50px;
    }

    .area-list{

        grid-template-columns:1fr 1fr;
    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .container{

        width:calc(100% - 32px);
    }

    .hero{

        padding:20px 16px 60px;
    }

    .hero-card{

        border-radius:24px;
    }

    .hero-content{

        padding:50px 28px;

        width:100%;
    }

    .hero h1{

        font-size:40px;
    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;
    }

    .hero-buttons a{

        width:100%;

        text-align:center;
    }

    .area-content h2{

        font-size:34px;
    }

    .area-list{

        grid-template-columns:1fr;
    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .wa-chat-box{

        display:none;
    }

}

@media (max-width:480px){

    .hero{

        padding:16px 12px 50px;
    }

    .hero-card{

        border-radius:20px;
    }

    .hero-content{

        padding:34px 20px;
    }

    .hero h1{

        font-size:32px;

        line-height:1.15;
    }

    .badge{

        font-size:12px;
    }

    .btn-primary,

    .btn-outline{

        width:100%;
    }

    .section-header h2{

        font-size:28px;
    }

    .program-card,

    .why-card{

        border-radius:22px;
    }

    .cta h2{

        font-size:28px;
    }

    .wa-widget{

        right:16px;

        bottom:16px;
    }

}