/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#FFF8EE;
    color:#2F5233;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ==========================
CONTAINER
========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
COLOR
========================== */

:root{

--green:#5AA832;
--dark:#2F7D32;
--cream:#FFF8EE;
--orange:#F7A541;
--white:#ffffff;

}

/* ==========================
NAVBAR
========================== */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

background:rgba(255,255,255,.95);

backdrop-filter:blur(10px);

z-index:999;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.navbar .container{

display:flex;

justify-content:space-between;

align-items:center;

padding:15px 0;

}

.logo img{

height:70px;

}

.menu{

display:flex;

gap:30px;

}

.menu a{

color:var(--dark);

font-weight:600;

transition:.3s;

}

.menu a:hover{

color:var(--orange);

}

.btn-daftar{

background:var(--green);

padding:13px 25px;

border-radius:50px;

color:white;

font-weight:600;

transition:.4s;

}

.btn-daftar:hover{

background:var(--orange);

transform:translateY(-3px);

}

.menu-toggle{

display:none;

font-size:30px;

cursor:pointer;

}

/* ==========================
HERO
========================== */

.hero{

padding-top:150px;

padding-bottom:90px;

background:linear-gradient(#FFF8EE,#F8F7EF);

overflow:hidden;

}

.hero-content{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero-text h1{

font-family:'Fredoka',sans-serif;

font-size:60px;

line-height:1.2;

color:var(--dark);

margin-bottom:20px;

}

.hero-text p{

font-size:20px;

margin-bottom:35px;

color:#666;

}

.hero-btn{

display:inline-block;

padding:18px 40px;

background:var(--green);

color:white;

border-radius:50px;

font-weight:bold;

transition:.4s;

}

.hero-btn:hover{

background:var(--orange);

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.hero-image{

animation:float 4s ease-in-out infinite;

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/* ==========================
SECTION
========================== */

section{

padding:90px 0;

}

.section-title{

text-align:center;

font-family:'Fredoka';

font-size:42px;

color:var(--dark);

margin-bottom:50px;

}


.section-title{

font-size:46px;

font-family:'Fredoka';

color:#2F7D32;

margin-bottom:20px;

text-align:center;

}

.section-subtitle{

text-align:center;

color:#666;

margin-bottom:60px;

font-size:18px;

}

/* ==========================
CARD
========================== */

.card{

background:white;

border-radius:30px;

padding:35px;

box-shadow:

0 20px 40px rgba(0,0,0,.05),

0 5px 10px rgba(0,0,0,.03);

transition:.4s;

border:1px solid rgba(0,0,0,.05);

}

.card:hover{

transform:translateY(-12px);

box-shadow:

0 30px 60px rgba(0,0,0,.12);

}

/* ==========================
FOOTER
========================== */

footer{

background:var(--green);

color:white;

padding:50px 0;

text-align:center;

}

footer h3{

font-family:'Fredoka';

margin-bottom:10px;

font-size:30px;

}

footer p{

margin-top:10px;

}

/* ==========================
BUTTON
========================== */

button{

border:none;

cursor:pointer;

font-family:'Poppins';

}

/* ==========================
SCROLLBAR
========================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-thumb{

background:var(--green);

border-radius:20px;

}







/* ===========================
   HERO DECORATION
=========================== */

.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:url('../img/bg-hero.png') center center/cover no-repeat;
    opacity:.08;
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-text h1{

    font-size:65px;
    color:#2F7D32;
    font-family:'Fredoka',sans-serif;
    margin-bottom:20px;
}

.hero-text span{

    color:#F7A541;

}

.hero-text p{

    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;

}

.hero-btn{

    display:inline-flex;
    align-items:center;
    gap:10px;
}




/* =======================
WHY SECTION
======================= */

.why{

background:#FFF8EE;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

gap:30px;

}

.why .card{

text-align:center;

padding:40px 25px;

border-radius:25px;

}

.why .card h3{

margin-bottom:20px;

font-size:24px;

color:#2F7D32;

font-family:'Fredoka';

}

.why .card p{

line-height:1.8;

}





.wave{

margin-top:-5px;

display:block;

}








/*=====================
PROGRAM
======================*/

.program{

background:#ffffff;

}

.program-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.program-card{

background:#FFF8EE;

padding:35px;

border-radius:30px;

text-align:center;

transition:.4s;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.program-card:hover{

transform:translateY(-12px);

}

.program-card .icon{

width:90px;

height:90px;

background:#5AA832;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:white;

margin-bottom:25px;

}

.program-card h3{

font-family:'Fredoka';

margin-bottom:15px;

color:#2F7D32;

font-size:24px;

}

.program-card p{

line-height:1.8;

}



















#topBtn{

position:fixed;

bottom:100px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#F7A541;

color:white;

font-size:22px;

display:none;

cursor:pointer;

z-index:999;

}


.menu.active{

display:flex;

}









/*=========================
SCHEDULE
=========================*/

.schedule{

background:#FFF8EE;

}

.timeline{

max-width:900px;

margin:auto;

position:relative;

}

.timeline::before{

content:'';

position:absolute;

left:50%;

width:4px;

height:100%;

background:#5AA832;

transform:translateX(-50%);

}

.timeline-item{

display:flex;

align-items:center;

margin:50px 0;

}

.time{

width:120px;

height:120px;

background:#5AA832;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:24px;

font-weight:bold;

margin-right:40px;

flex-shrink:0;

}

.content{

background:white;

padding:30px;

border-radius:25px;

box-shadow:0 15px 30px rgba(0,0,0,.08);

flex:1;

}

.content h3{

font-family:'Fredoka';

margin-bottom:10px;

color:#2F7D32;

}





.gallery{

background:white;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:20px;

}

.gallery-grid img{

width:100%;

height:260px;

object-fit:cover;

border-radius:25px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

}   





.testimonial{

background:#FFF8EE;

}

.testi-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.testimonial .card{

text-align:center;

}





.cta{

background:#5AA832;

color:white;

text-align:center;

padding:100px 20px;

}

.cta h2{

font-size:42px;

font-family:'Fredoka';

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:0 auto 40px;

font-size:18px;

line-height:1.8;

}








.page-header{

padding:170px 0 70px;

background:#5AA832;

color:white;

text-align:center;

}

.registration{

background:#FFF8EE;

padding:80px 0;

}

#waForm{

background:white;

padding:50px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.form-group{

display:flex;

flex-direction:column;

}

.form-group label{

font-weight:600;

margin-bottom:10px;

}

.form-group input,

.form-group textarea,

.form-group select{

padding:15px;

border:2px solid #ddd;

border-radius:15px;

font-size:16px;

outline:none;

transition:.3s;

}

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus{

border-color:#5AA832;

}

.form-group textarea{

height:120px;

resize:none;

}

.full{

grid-column:1/3;

}

.submit-btn{

margin-top:30px;

background:#25D366;

padding:18px 35px;

color:white;

border:none;

border-radius:50px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.submit-btn:hover{

background:#1FA851;

}



.about{

padding:100px 0;

background:white;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

border-radius:30px;

box-shadow:0 20px 40px rgba(0,0,0,.1);

}

.about-text h2{

font-family:'Fredoka';

font-size:40px;

color:#2F7D32;

margin-bottom:20px;

}

.about-text h3{

margin-top:30px;

margin-bottom:15px;

color:#5AA832;

}

.about-text p{

line-height:1.9;

margin-bottom:15px;

}

.about-text ul{

padding-left:20px;

list-style:disc;

}

.about-text li{

margin-bottom:10px;

}






.hero-slider{

position:relative;

overflow:hidden;

}

.slide{

display:none;

animation:fade .8s;

}

.slide.active{

display:block;

}

@keyframes fade{

from{

opacity:.2;

}

to{

opacity:1;

}

}




.lightbox{

position:fixed;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(0,0,0,.8);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}

.lightbox img{

max-width:90%;

max-height:90%;

border-radius:20px;

cursor:pointer;

}


.testi{

display:none;

text-align:center;

background:white;

padding:50px;

border-radius:30px;

}

.testi.active{

display:block;

}



body{

    background:#FFF9EF;
    overflow-x:hidden;
}

.hero{

    position:relative;
    overflow:hidden;

}

.hero::before{

content:'';

position:absolute;

top:-120px;

left:-100px;

width:300px;

height:300px;

background:#DDF5D0;

border-radius:50%;

opacity:.7;

}

.hero::after{

content:'';

position:absolute;

right:-120px;

bottom:-120px;

width:350px;

height:350px;

background:#FFE4B8;

border-radius:50%;

opacity:.6;

}









.home-about{

padding:120px 0;

background:white;

}

.about-home-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.subtitle{

color:#F7A541;

font-weight:600;

font-size:18px;

}

.about-right h2{

font-size:48px;

font-family:'Fredoka';

margin:20px 0;

color:#2F7D32;

}

.about-right p{

line-height:2;

margin-bottom:30px;

}

.about-list{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:15px;

margin-bottom:30px;

font-weight:600;

}





.counter{

background:#5AA832;

padding:80px 0;

color:white;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

text-align:center;

}

.counter h2{

font-size:60px;

font-family:'Fredoka';

}

.counter p{

font-size:18px;

}









/* =====================================================
   MENU TOGGLE
===================================================== */

.menu-toggle {

    display: none;

    border: none;

    cursor: pointer;

    font-family: inherit;

}




/* =====================================================
   SCHEDULE PAGE
===================================================== */

.schedule-header{

    background:
        linear-gradient(
            135deg,
            #5AA832,
            #3f8c32
        );

    position:relative;

    overflow:hidden;

}


.page-label{

    display:inline-block;

    margin-bottom:15px;

    padding:8px 18px;

    background:rgba(255,255,255,.18);

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}


.schedule-header h1{

    color:white;

    font-family:'Fredoka',sans-serif;

    font-size:55px;

    margin-bottom:15px;

}


.schedule-header p{

    max-width:650px;

    margin:auto;

    line-height:1.8;

    opacity:.95;

}


/* =========================
   SECTION HEADING
========================= */

.section-heading{

    max-width:750px;

    margin:0 auto 60px;

    text-align:center;

}


.section-heading .subtitle{

    color:#F7A541;

    font-weight:600;

}


.section-heading h2{

    margin:12px 0 18px;

    color:#2F7D32;

    font-family:'Fredoka',sans-serif;

    font-size:44px;

}


.section-heading p{

    color:#666;

    line-height:1.8;

}


/* =========================
   SCHEDULE LIST
========================= */

.schedule-page{

    background:#FFF8EE;

    padding:110px 0;

}


.schedule-list{

    max-width:950px;

    margin:auto;

    position:relative;

}


.schedule-list::before{

    content:'';

    position:absolute;

    top:30px;

    bottom:30px;

    left:145px;

    width:3px;

    background:#D8EBCF;

}


/* =========================
   ITEM
========================= */

.schedule-item{

    position:relative;

    display:grid;

    grid-template-columns:110px 70px 1fr;

    gap:25px;

    align-items:center;

    margin-bottom:30px;

}


.schedule-time{

    text-align:right;

    color:#2F7D32;

}


.schedule-time span{

    display:block;

    font-family:'Fredoka',sans-serif;

    font-size:24px;

    font-weight:600;

}


.schedule-time small{

    color:#999;

    font-size:12px;

}


.schedule-icon{

    position:relative;

    z-index:2;

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#5AA832;

    color:white;

    font-size:26px;

    box-shadow:

        0 10px 25px rgba(90,168,50,.25);

}


.schedule-info{

    position:relative;

    background:white;

    padding:30px;

    border-radius:25px;

    box-shadow:

        0 15px 35px rgba(0,0,0,.06);

    transition:.35s ease;

}


.schedule-info:hover{

    transform:translateX(8px);

}


.schedule-number{

    position:absolute;

    right:25px;

    top:20px;

    font-family:'Fredoka',sans-serif;

    color:#E7EFD9;

    font-size:35px;

}


.schedule-info h3{

    margin-bottom:10px;

    color:#2F7D32;

    font-family:'Fredoka',sans-serif;

    font-size:24px;

}


.schedule-info p{

    color:#666;

    line-height:1.8;

}


/* =========================
   CTA
========================= */

.schedule-cta{

    padding:80px 0;

    background:white;

}


.schedule-cta-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    padding:50px;

    background:#5AA832;

    border-radius:35px;

    color:white;

}


.schedule-cta-box span{

    opacity:.9;

}


.schedule-cta-box h2{

    margin-top:8px;

    font-family:'Fredoka',sans-serif;

    font-size:35px;

}


.schedule-cta-box .hero-btn{

    background:#F7A541;

    flex-shrink:0;

}


.schedule-cta-box .hero-btn:hover{

    background:white;

    color:#2F7D32;

}








/* =====================================================
   GALLERY PAGE
===================================================== */

.gallery-header{

    background:
        linear-gradient(
            135deg,
            #F7A541,
            #E9912D
        );

}


.gallery-page{

    background:#FFF8EE;

    padding:110px 0;

}


/* =========================
   FILTER
========================= */

.gallery-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:50px;

}


.filter-btn{

    padding:12px 25px;

    border:none;

    border-radius:50px;

    background:white;

    color:#2F7D32;

    font-family:'Poppins';

    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:
        0 5px 15px rgba(0,0,0,.05);

}


.filter-btn:hover{

    background:#DCEFCF;

}


.filter-btn.active{

    background:#5AA832;

    color:white;

}


/* =========================
   GRID
========================= */

.premium-gallery{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:25px;

}


.gallery-item{

    position:relative;

    height:300px;

    overflow:hidden;

    border-radius:30px;

    cursor:pointer;

    background:#ddd;

}


.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}


.gallery-item:hover img{

    transform:scale(1.08);

}


.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:
        rgba(47,125,50,.75);

    color:white;

    opacity:0;

    transition:.4s;

}


.gallery-item:hover
.gallery-overlay{

    opacity:1;

}


.gallery-overlay i{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:white;

    color:#5AA832;

    border-radius:50%;

    font-size:22px;

}


.gallery-overlay span{

    font-weight:600;

}


/* =========================
   LIGHTBOX
========================= */

.gallery-lightbox{

    position:fixed;

    inset:0;

    background:
        rgba(20,35,20,.92);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:10000;

    padding:30px;

}


.gallery-lightbox.show{

    display:flex;

}


.gallery-lightbox img{

    max-width:90%;

    max-height:85vh;

    object-fit:contain;

    border-radius:20px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.5);

}


.lightbox-close,
.lightbox-prev,
.lightbox-next{

    position:absolute;

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:white;

    color:#2F7D32;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:18px;

    z-index:2;

}


.lightbox-close{

    top:25px;

    right:25px;

}


.lightbox-prev{

    left:25px;

}


.lightbox-next{

    right:25px;

}


/* =========================
   CTA
========================= */

.gallery-cta{

    text-align:center;

    padding:100px 20px;

    background:#5AA832;

    color:white;

}


.gallery-cta h2{

    max-width:700px;

    margin:auto;

    font-family:'Fredoka',sans-serif;

    font-size:42px;

}


.gallery-cta p{

    max-width:650px;

    margin:20px auto 35px;

    line-height:1.8;

}


.gallery-cta .hero-btn{

    background:#F7A541;

}


.gallery-cta .hero-btn:hover{

    background:white;

    color:#2F7D32;

}

















/* =====================================================
   PREMIUM FOOTER
===================================================== */


/* =====================================================
   FOOTER CTA
===================================================== */

.footer-cta {

    position: relative;

    overflow: hidden;

    padding: 100px 20px;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(255,255,255,.12),
            transparent 25%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(247,165,65,.25),
            transparent 30%
        ),

        #5AA832;

    color: white;

    text-align: center;

}


.footer-cta::before {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    top: -120px;

    left: -80px;

}


.footer-cta::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);

    bottom: -150px;

    right: -100px;

}


.footer-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

}


.footer-cta-label {

    display: inline-block;

    padding: 9px 20px;

    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(255,255,255,.15);

    font-size: 14px;

    font-weight: 600;

}


.footer-cta h2 {

    margin: 0 0 20px;

    font-family: 'Fredoka', sans-serif;

    font-size: 46px;

    line-height: 1.25;

}


.footer-cta p {

    max-width: 700px;

    margin: 0 auto 35px;

    line-height: 1.9;

    font-size: 17px;

    opacity: .95;

}


.footer-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 17px 32px;

    border-radius: 50px;

    background: #F7A541;

    color: white;

    font-weight: 700;

    box-shadow:

        0 15px 30px rgba(0,0,0,.15);

    transition: .35s ease;

}


.footer-cta-btn:hover {

    transform: translateY(-5px);

    background: white;

    color: #2F7D32;

}


/* =====================================================
   MAIN FOOTER
===================================================== */

.main-footer {

    position: relative;

    background: #234F27;

    color: white;

    padding: 80px 0 25px;

}


.main-footer::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background:

        linear-gradient(
            90deg,
            #F7A541,
            #FFD66B,
            #5AA832
        );

}


/* =====================================================
   FOOTER GRID
===================================================== */

.footer-grid {

    display: grid;

    grid-template-columns:

        1.7fr

        1fr

        1.2fr;

    gap: 70px;

    padding-bottom: 60px;

}


/* =====================================================
   BRAND
===================================================== */

.footer-logo {

    display: inline-block;

    margin-bottom: 25px;

}


.footer-logo img {

    width: 150px;

    height: auto;

    object-fit: contain;

}


.footer-brand h3 {

    margin-bottom: 18px;

    color: #FFD66B;

    font-family: 'Fredoka', sans-serif;

    font-size: 24px;

    line-height: 1.4;

}


.footer-brand p {

    max-width: 400px;

    color: rgba(255,255,255,.75);

    line-height: 1.9;

}


/* =====================================================
   FOOTER TITLE
===================================================== */

.footer-links h4,
.footer-social h4 {

    position: relative;

    margin-bottom: 25px;

    padding-bottom: 12px;

    font-family: 'Fredoka', sans-serif;

    font-size: 22px;

    color: white;

}


.footer-links h4::after,
.footer-social h4::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45px;

    height: 3px;

    border-radius: 5px;

    background: #F7A541;

}


/* =====================================================
   LINKS
===================================================== */

.footer-links a {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    color: rgba(255,255,255,.78);

    transition: .3s ease;

}


.footer-links a i {

    font-size: 10px;

    color: #F7A541;

    transition: .3s ease;

}


.footer-links a:hover {

    color: #FFD66B;

    transform: translateX(7px);

}


.footer-links a:hover i {

    transform: translateX(3px);

}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social p {

    margin-bottom: 25px;

    color: rgba(255,255,255,.75);

    line-height: 1.7;

}


/* =====================================================
   SOCIAL BUTTONS
===================================================== */

.social-buttons {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.social {

    display: flex;

    align-items: center;

    gap: 15px;

    width: fit-content;

    min-width: 180px;

    padding: 12px 18px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 15px;

    color: white;

    background: rgba(255,255,255,.06);

    transition: .35s ease;

}


.social i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    font-size: 20px;

    background: white;

    color: #234F27;

}


.social span {

    font-size: 15px;

    font-weight: 600;

}


.social:hover {

    transform: translateY(-4px);

    background: white;

    color: #234F27;

}


/* Instagram */

.social.instagram:hover i {

    color: #E1306C;

}


/* WhatsApp */

.social.whatsapp:hover i {

    color: #25D366;

}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:

        1px solid rgba(255,255,255,.12);

}


.footer-bottom p {

    margin: 0;

    color: rgba(255,255,255,.65);

    font-size: 14px;

}


.footer-bottom strong {

    color: #FFD66B;

}


.footer-tagline {

    font-style: italic;

    color: #FFD66B !important;

}


/* =====================================================
   BACK TO TOP
===================================================== */

.top-btn {

    position: fixed;

    right: 25px;

    bottom: 90px;

    z-index: 999;

    width: 48px;

    height: 48px;

    display: none;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #F7A541;

    color: white;

    font-size: 18px;

    cursor: pointer;

    box-shadow:

        0 10px 25px rgba(0,0,0,.18);

    transition: .3s ease;

}


.top-btn:hover {

    transform: translateY(-5px);

    background: #5AA832;

}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.floating-whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 998;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border-radius: 50px;

    background: #25D366;

    color: white;

    box-shadow: 

        0 12px 30px rgba(0,0,0,.2);

    transition: .35s ease;

}


.floating-whatsapp i {

    font-size: 25px;

}


.floating-whatsapp span {

    font-size: 14px;

    font-weight: 600;

}


.floating-whatsapp:hover {

    transform: translateY(-5px);

    background: #1DA851;

}







/* =====================================================
   CONTACT MAP
===================================================== */

.contact-map {
    width: 100%;
    overflow: hidden;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(47, 125, 50, 0.12);
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 450px;
    border: 0;
}
