/* ==========================================================
   AMCO Mobile FZCO
   Global Stylesheet
   HTML5 + CSS3
========================================================== */

:root{

    --primary:#B51E23;
    --primary-dark:#8F151A;
    --secondary:#111827;
    --text:#374151;
    --light:#f8fafc;
    --border:#e5e7eb;
    --white:#ffffff;

    --container:1200px;

    --radius:18px;

    --shadow:
        0 10px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:
        Inter,
        Segoe UI,
        Helvetica,
        Arial,
        sans-serif;

    color:var(--text);
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;

}

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

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

ul{
    list-style:none;
}

.container{

    width:min(92%,var(--container));
    margin:auto;

}

/* ------------------------- */

.section{

    padding:90px 0;

}

.section-title{

    font-size:2.5rem;
    color:var(--secondary);
    margin-bottom:18px;
    line-height:1.2;

}

.section-subtitle{

    color:#6b7280;
    max-width:700px;
    margin-bottom:60px;

}

/* ------------------------- */

.btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 32px;

    border-radius:999px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

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

}

.btn-primary:hover{

    background:var(--primary-dark);
    transform:translateY(-2px);

}

.btn-outline{

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

}

.btn-outline:hover{

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

}

/* ==========================
   NAVIGATION
========================== */

header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);

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

}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:82px;

}

.logo img{

    height:60px;

}

.nav-links{

    display:flex;
    gap:34px;

}

.nav-links a{

    color:#374151;
    font-weight:600;
    position:relative;

}

.nav-links a::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

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

.hero{

    min-height:88vh;

    display:grid;
    align-items:center;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8fafc
        );

}

.hero-grid{

    display:grid;
    grid-template-columns:
    1.2fr
    .8fr;

    gap:80px;
    align-items:center;

}

.hero h1{

    font-size:4rem;
    line-height:1.1;

    color:var(--secondary);

    margin-bottom:24px;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    max-width:620px;
    margin-bottom:35px;
    color:#6b7280;

}

.hero-image{

    background:#fff;
    border-radius:var(--radius);
    padding:40px;
    box-shadow:var(--shadow);

}

/* ===================== */

.grid-2{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;

}

.grid-3{

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

}

.card{

    background:#fff;

    border-radius:var(--radius);

    padding:35px;

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

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.card h3{

    margin-bottom:15px;
    color:var(--secondary);

}

.card p{

    color:#6b7280;

}

/* ================= */

.highlight{

    background:var(--light);

}

.values{

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

    gap:25px;

}

.value{

    padding:30px;
    border-radius:18px;
    background:#fff;
    border:1px solid var(--border);
}

.value h4{

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

}

/* ================= */

.stats{

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

}

.stat{

    text-align:center;
    padding:40px 25px;
    border-radius:18px;
    background:#fff;
    box-shadow:var(--shadow);

}

.stat h2{

    color:var(--primary);
    font-size:2.6rem;
    margin-bottom:10px;

}

/* ================= */

.contact-card{

    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:var(--shadow);

}

.contact-item{

    margin-bottom:22px;

}

.contact-item strong{

    display:block;
    margin-bottom:8px;
    color:var(--secondary);

}

/* ================= */

iframe{

    width:100%;
    height:450px;
    border:none;
    border-radius:18px;

}

/* ================= */

footer{

    background:#111827;
    color:#d1d5db;

    padding:70px 0 25px;

}

.footer-grid{

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

    gap:50px;

}

.footer-logo{

    height:65px;
    margin-bottom:20px;

}

.footer-links a{

    display:block;
    margin-bottom:12px;
    color:#d1d5db;

}

.footer-bottom{

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

    padding-top:25px;

    text-align:center;
    font-size:.95rem;

}

/* ================= */

.fade-up{

    opacity:0;
    transform:translateY(30px);
    transition:.8s ease;

}

.fade-up.show{

    opacity:1;
    transform:none;

}

/* ================= */

@media(max-width:991px){

.hero-grid,
.grid-2,
.grid-3,
.footer-grid{

grid-template-columns:1fr;

}

.hero{

padding-top:70px;

}

.hero h1{

font-size:2.8rem;

}

.nav-links{

display:none;

}

.section{

padding:70px 0;

}

}

@media(max-width:600px){

.hero h1{

font-size:2.2rem;

}

.section-title{

font-size:2rem;

}

.logo img{

height:52px;

}

.card,
.contact-card{

padding:25px;

}

}
