/*==============================
ADLV - STYLE.CSS
Part 1
==============================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.7;

}

:root{

    --primary:#0f4c81;
    --secondary:#1f7a8c;
    --success:#16a34a;
    --light:#ffffff;
    --dark:#1d1d1d;
    --gray:#6b7280;
    --border:#e5e7eb;
    --background:#f5f7fb;
    --radius:16px;
    --shadow:0 12px 35px rgba(0,0,0,.08);

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

.container{

    width:92%;
    max-width:1200px;
    margin:auto;

}

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

header{

    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,.05);

}

header .container{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;

}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    width:58px;
    height:58px;
    object-fit:contain;

}

.logo h1{

    font-size:22px;
    color:var(--primary);

}

.logo span{

    color:var(--gray);
    font-size:14px;

}

nav{

    display:flex;
    gap:28px;

}

nav a{

    color:#333;
    font-weight:500;
    transition:.3s;

}

nav a:hover{

    color:var(--primary);

}

/*==============================
HERO
==============================*/

.hero{

    background:linear-gradient(135deg,#0f4c81,#1f7a8c);
    color:#fff;
    padding:90px 0;

}

.hero-content{

    max-width:760px;

}

.badge{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:25px;

}

.hero h2{

    font-size:46px;
    line-height:1.25;
    margin-bottom:25px;

}

.hero p{

    font-size:18px;
    opacity:.95;
    margin-bottom:35px;

}

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}

.btn-primary{

    background:#fff;
    color:var(--primary);
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-3px);
    box-shadow:var(--shadow);

}

.btn-secondary{

    border:2px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;
    color:var(--primary);

}
/*==============================
PART 2
Stats - About - Cities - Cards
==============================*/

/*========== Stats ==========*/

.stats{

    padding:70px 0;
    background:#fff;

}

.stats .container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}

.stat-box{

    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:35px 20px;
    box-shadow:var(--shadow);
    transition:.3s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box i{

    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;

}

.stat-box h3{

    font-size:34px;
    color:var(--primary);
    margin-bottom:8px;

}

.stat-box p{

    color:var(--gray);
    font-size:16px;

}

/*========== About ==========*/

.about{

    padding:80px 0;

}

.about h2{

    text-align:center;
    font-size:36px;
    color:var(--primary);
    margin-bottom:25px;

}

.about p{

    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#555;
    line-height:1.8;

}

/*========== Cities ==========*/

.city{

    padding:80px 0;

}

.city h2{

    text-align:center;
    color:var(--primary);
    font-size:36px;
    margin-bottom:45px;

}

.city h2 i{

    margin-right:10px;

}

/*========== Cards ==========*/

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.card{

    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:var(--shadow);
    transition:.35s;
    position:relative;
    overflow:hidden;

}

.card:hover{

    transform:translateY(-10px);

}

.card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));

}

.approved{

    display:inline-flex;
    align-items:center;
    gap:8px;

    background:#e8f8ef;
    color:var(--success);

    padding:8px 15px;

    border-radius:40px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;

}

.card h3{

    font-size:28px;
    color:var(--primary);
    margin-bottom:18px;

}

.card p{

    display:flex;
    align-items:center;
    gap:10px;

    color:#555;

    margin-bottom:14px;

    font-size:17px;

}

.card p i{

    color:var(--primary);
    width:22px;

}

/*========== Buttons ==========*/

.actions{

    display:flex;
    gap:12px;
    margin-top:25px;
    flex-wrap:wrap;

}

.btn-call{

    flex:1;

    text-align:center;

    background:var(--primary);

    color:#fff;

    padding:14px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-call:hover{

    background:#0b3960;

}

.btn-whatsapp{

    flex:1;

    text-align:center;

    background:#25D366;

    color:#fff;

    padding:14px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

}

.btn-whatsapp:hover{

    background:#1da851;

}

.btn-call i,
.btn-whatsapp i{

    margin-right:8px;

}
/*==============================
PART 3
Mediation - Contact - Footer
Responsive
==============================*/

/*========== Mediation ==========*/

.mediation{

    padding:80px 0;
    background:#ffffff;

}

.mediation .container{

    max-width:900px;

}

.mediation h2{

    text-align:center;
    color:var(--primary);
    font-size:36px;
    margin-bottom:30px;

}

.mediation p{

    color:#555;
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
    text-align:center;

}

/*========== Contact ==========*/

.contact{

    padding:80px 0;

}

.contact h2{

    text-align:center;
    color:var(--primary);
    font-size:36px;
    margin-bottom:15px;

}

.contact > .container > p{

    text-align:center;
    color:#666;
    margin-bottom:40px;

}

form{

    max-width:750px;
    margin:auto;

    background:#fff;
    padding:40px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

form input,
form select,
form textarea{

    width:100%;

    padding:16px 18px;

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

    border-radius:12px;

    font-size:16px;

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

    margin-bottom:18px;

    outline:none;

    transition:.3s;

}

form input:focus,
form select:focus,
form textarea:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(15,76,129,.12);

}

form textarea{

    resize:vertical;
    min-height:150px;

}

form button{

    width:100%;
    border:none;
    cursor:pointer;

}

/*========== Footer ==========*/

footer{

    background:#0f4c81;
    color:#fff;
    padding:40px 0;
    margin-top:70px;

}

footer p{

    text-align:center;
    margin-bottom:12px;
    opacity:.95;

}

/*========== Responsive ==========*/

@media(max-width:991px){

    header .container{

        flex-direction:column;
        gap:20px;

    }

    nav{

        flex-wrap:wrap;
        justify-content:center;
        gap:16px;

    }

    .hero{

        text-align:center;

    }

    .hero h2{

        font-size:34px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .stats .container{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .hero{

        padding:70px 0;

    }

    .hero h2{

        font-size:30px;

    }

    .hero p{

        font-size:16px;

    }

    .about h2,
    .city h2,
    .mediation h2,
    .contact h2{

        font-size:28px;

    }

    .card{

        padding:25px;

    }

    .card h3{

        font-size:24px;

    }

    .actions{

        flex-direction:column;

    }

    .btn-call,
    .btn-whatsapp{

        width:100%;

    }

    form{

        padding:25px;

    }

}

@media(max-width:480px){

    .container{

        width:94%;

    }

    .logo h1{

        font-size:20px;

    }

    .logo span{

        font-size:13px;

    }

    nav{

        gap:12px;

    }

    nav a{

        font-size:14px;

    }

    .hero h2{

        font-size:26px;

    }

    .badge{

        font-size:14px;

    }

    .stat-box{

        padding:25px;

    }

    .stat-box h3{

        font-size:28px;

    }

    .card p{

        font-size:15px;

    }

    form{

        padding:20px;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.hero,
.about,
.city,
.mediation,
.contact,
footer{

    animation:fadeUp .7s ease;

}