/*==================================================
    LinguaCode Center
    Landing Page v2.0
==================================================*/

/*==================================================
    1. ROOT VARIABLES
==================================================*/

:root{

    --primary:#102A43;
    --primary-light:#1D4E89;

    --secondary:#F97316;

    --success:#14B8A6;

    --light:#F8FAFC;

    --dark:#0F172A;

    --gray:#64748B;

    --border:#E5E7EB;

    --white:#FFFFFF;

    --shadow-sm:0 10px 25px rgba(0,0,0,.05);

    --shadow:0 20px 45px rgba(0,0,0,.08);

    --shadow-lg:0 30px 70px rgba(0,0,0,.12);

    --radius:18px;

    --radius-lg:28px;

    --transition:.35s ease;

}


/*==================================================
    2. RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}


/*==================================================
    3. TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5{

    color:var(--primary);

    font-weight:700;

    margin-bottom:15px;

}

p{

    color:var(--gray);

}

.section-header{

    margin-bottom:70px;

}

.section-badge{

    display:inline-block;

    background:rgba(249,115,22,.10);

    color:var(--secondary);

    padding:10px 20px;

    border-radius:50px;

    font-size:.85rem;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.section-title{

    font-size:46px;

    font-weight:800;

}

.section-description{

    max-width:720px;

    margin:auto;

}


/*==================================================
    4. UTILITIES
==================================================*/

section{

    padding:100px 0;

}

.bg-blue{

    background:var(--primary);

}

.bg-orange{

    background:var(--secondary);

}

.bg-green{

    background:var(--success);

}

.text-center{

    text-align:center;

}


/*==================================================
    5. BUTTON
==================================================*/

.btn{

    border-radius:50px;

    padding:14px 32px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary-custom{

    background:var(--secondary);

    color:#fff;

    border:none;

}

.btn-primary-custom:hover{

    background:#ff8a3d;

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(249,115,22,.35);

}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline-custom:hover{

    background:#fff;

    color:var(--primary);

}


/*==================================================
    6. PRELOADER
==================================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    width:60px;

    height:60px;

    border:6px solid #eee;

    border-top:6px solid var(--secondary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}


/*==================================================
    7. NAVBAR
==================================================*/

.navbar-custom{

    padding:18px 0;

    transition:.4s;

    background:transparent;

}

.navbar-custom.scrolled{

    background:rgba(16,42,67,.96);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo{

    width:64px;

}

.brand-text{

    display:flex;

    flex-direction:column;

}

.brand-title{

    color:#fff;

    font-size:18px;

    font-weight:700;

}

.brand-subtitle{

    color:#d7dde6;

    font-size:13px;

}

.nav-link{

    color:#fff;

    margin-left:18px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    color:#fff;

    font-size:30px;

}

.navbar-toggler:focus{

    box-shadow:none;

}


/*==================================================
    8. HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    linear-gradient(135deg,

    #102A43,

    #173C62,

    #204E73);

}

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

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

    top:-280px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(249,115,22,.12);

    bottom:-180px;

    left:-180px;

}

.hero .container{

    position:relative;

    z-index:10;

}

.hero-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:40px;

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

    color:#fff;

    backdrop-filter:blur(20px);

    margin-bottom:25px;

}

.hero-title{

    color:#fff;

    font-size:72px;

    line-height:1.1;

    font-weight:800;

}

.hero-title span{

    color:var(--secondary);

}

.hero-description{

    color:#dbe3ec;

    font-size:19px;

    max-width:560px;

    margin:30px 0;

}

.hero-button{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:60px;

}

.hero-counter{

    display:flex;

    gap:50px;

}

.counter-item h2{

    color:#fff;

    font-size:42px;

    margin-bottom:5px;

}

.counter-item p{

    color:#dbe3ec;

}

.hero-image{

    position:relative;

    text-align:center;

}

.hero-logo{

    width:420px;

    margin:auto;

    animation:floating 5s ease-in-out infinite;

    filter:drop-shadow(0 25px 45px rgba(0,0,0,.25));

}

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

.hero-wave{

    position:absolute;

    bottom:-2px;

    width:100%;

    line-height:0;

}

.hero-wave svg{

    width:100%;

    height:auto;

}
/*==================================================
    9. FLOATING CARD
==================================================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:10px;

    padding:14px 22px;

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

    font-weight:600;

    color:var(--primary);

    animation:floatingCard 6s ease-in-out infinite;

}

.floating-card i{

    color:var(--secondary);

    font-size:20px;

}

.card-one{

    top:12%;

    left:-20px;

}

.card-two{

    right:-20px;

    top:45%;

}

.card-three{

    left:20px;

    bottom:8%;

}

@keyframes floatingCard{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
    10. ACADEMY
==================================================*/

.academy{

    background:var(--light);

}

.academy-card{

    background:#fff;

    border-radius:var(--radius-lg);

    padding:40px;

    height:100%;

    transition:var(--transition);

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

    border:1px solid var(--border);

}

.academy-card:hover{

    transform:translateY(-10px);

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

}

.academy-icon{

    width:80px;

    height:80px;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    margin-bottom:30px;

}

.academy-card h3{

    margin-bottom:18px;

}

.academy-card p{

    margin-bottom:25px;

}

.academy-list li{

    padding:10px 0;

    border-bottom:1px dashed var(--border);

    color:var(--gray);

}

.academy-list li:last-child{

    border-bottom:none;

}

/*==================================================
    11. PROGRAM
==================================================*/

.program{

    background:#fff;

}

.program-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

    border:1px solid var(--border);

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

    height:100%;

}

.program-card:hover{

    background:var(--primary);

    transform:translateY(-10px);

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

}

.program-card:hover h4,

.program-card:hover p{

    color:#fff;

}

.program-card:hover .display-icon{

    color:var(--secondary);

    transform:scale(1.1);

}

.display-icon{

    font-size:52px;

    color:var(--primary);

    margin-bottom:25px;

    transition:var(--transition);

}

/*==================================================
    12. ABOUT
==================================================*/

.about{

    background:var(--light);

}

.about-image{

    width:100%;

    max-width:480px;

    margin:auto;

    border-radius:28px;

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

}

.feature-list{

    margin-top:35px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 0;

    font-weight:500;

    color:var(--dark);

}

.feature-item i{

    color:var(--success);

    font-size:22px;

}

/*==================================================
    13. STATISTICS
==================================================*/

.statistics{

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

}

.stat-card{

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

    backdrop-filter:blur(12px);

    border-radius:22px;

    text-align:center;

    padding:40px 20px;

    color:#fff;

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

    transition:var(--transition);

}

.stat-card:hover{

    transform:translateY(-8px);

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

}

.stat-card h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-bottom:10px;

}

.stat-card span{

    color:#dbe3ec;

    font-size:15px;

    letter-spacing:.5px;

}

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

.academy-card,
.program-card,
.about-image,
.stat-card{

    transition:all .35s ease;

}
/*==================================================
    14. TESTIMONIAL
==================================================*/

.testimonial{

    background:var(--light);

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

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

    border:1px solid var(--border);

    height:100%;

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-8px);

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

}

.testimonial-stars{

    color:#FFC107;

    font-size:22px;

    margin-bottom:20px;

}

.testimonial-profile{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.testimonial-profile img{

    width:60px;

    height:60px;

    border-radius:50%;

    object-fit:cover;

}

.testimonial-profile h5{

    margin:0;

}

.testimonial-profile span{

    color:var(--gray);

    font-size:14px;

}

/*==================================================
    15. FAQ
==================================================*/

.faq{

    background:#fff;

}

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:18px !important;

    overflow:hidden;

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

}

.accordion-button{

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px;

}

/*==================================================
    16. CTA
==================================================*/

.cta{

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--primary-light)

    );

    color:#fff;

}

.cta h2{

    color:#fff;

    font-size:52px;

    margin:25px 0;

}

.cta p{

    color:#dbe3ec;

    max-width:650px;

    margin:auto auto 35px;

}

/*==================================================
    17. CONTACT
==================================================*/

.contact{

    background:var(--light);

}

.contact-list{

    margin-top:35px;

}

.contact-list li{

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px 0;

    color:var(--dark);

}

.contact-list i{

    color:var(--secondary);

    font-size:24px;

}

.contact-map{

    overflow:hidden;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.contact-map iframe{

    width:100%;

    height:420px;

    border:0;

}

/*==================================================
    18. FOOTER
==================================================*/

.footer{

    background:#081522;

    color:#fff;

    padding:80px 0 30px;

}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

.footer h4,

.footer h5{

    color:#fff;

}

.footer p{

    color:#C7D2DA;

}

.footer-menu li{

    margin-bottom:12px;

}

.footer-menu a{

    color:#C7D2DA;

}

.footer-menu a:hover{

    color:var(--secondary);

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

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

    color:#fff;

    transition:var(--transition);

}

.social-links a:hover{

    background:var(--secondary);

    transform:translateY(-5px);

}

.footer hr{

    margin:50px 0 25px;

    border-color:rgba(255,255,255,.1);

}

.footer-bottom{

    text-align:center;

    color:#B8C3CC;

}

/*==================================================
    19. FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

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

    z-index:999;

    transition:var(--transition);

}

.floating-whatsapp:hover{

    transform:scale(1.1);

    color:#fff;

}

/*==================================================
    20. BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}

/*==================================================
    21. SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#F3F4F6;

}

/*==================================================
    22. SIMPLE FADE
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:.8s;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}
.open-class{

    background:#f8fafc;

}

.open-class-card{

    background:#fff;

    border-radius:24px;

    padding:50px;

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

    position:relative;

}

.status-badge{

    position:absolute;

    top:25px;

    right:25px;

    background:#22c55e;

    color:#fff;

    padding:10px 18px;

    border-radius:50px;

    font-weight:bold;

}

.class-info{

    display:grid;

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

    gap:18px;

    margin-top:30px;

}

.class-material{

    display:grid;

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

    gap:12px;

    margin-top:20px;

}

.class-material li{

    background:#eef2ff;

    padding:10px;

    border-radius:10px;

    text-align:center;

}

.price-box{

    background:linear-gradient(135deg,#102A43,#1D4E89);

    color:#fff;

    padding:40px;

    border-radius:20px;

}

.price-box h2{

    color:#fff;

    font-size:42px;

    margin:20px 0;

}
