/* =====================================
   VETTA INTERNATIONAL - STYLE.CSS
   ===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#222;
    line-height:1.6;
    background:#fff;
}

.container{
    width:94%;
    max-width:1280px;
    margin:0 auto;
}

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

header{
    background:#f0eeee;
    border-bottom:1px solid #e5e7eb;
    /* color:white; */
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 0;
}

.logo img{
    height:110px;
    width:auto;
    display:block;
}

nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    color:black;
    text-decoration:none;
    font-size:.95rem;
    font-weight:500;
    transition:.2s;
}

nav a:hover{
    opacity:.75;
}

#languageBtn{
    background:white;
    color:#0f172a;
    border:none;
    border-radius:4px;
    padding:8px 14px;
    cursor:pointer;
    font-weight:600;
    transition:.2s;
}

#languageBtn:hover{
    opacity:.9;
}

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

.hero{
    background:
    linear-gradient(
        135deg,
        #0f172a 0%,
        #16233d 100%
    );

    color:white;
    text-align:center;

    padding:70px 0;
}

.hero-content{
    max-width:900px;
    margin:0 auto;
}

.hero-tag{
    display:inline-block;
    margin-bottom:12px;

    font-size:.85rem;
    letter-spacing:2px;
    font-weight:600;

    opacity:.85;
}

.hero h1{
    font-size:3.2rem;
    line-height:1.1;
    margin-bottom:15px;
}

.hero p{
    font-size:1.1rem;
    max-width:700px;
    margin:0 auto;
    opacity:.95;
}

.btn{
    display:inline-block;

    margin-top:25px;

    padding:12px 28px;

    background:white;
    color:#0f172a;

    text-decoration:none;
    font-weight:600;

    border-radius:5px;

    transition:.2s;
}

.btn:hover{
    transform:translateY(-2px);
}

/* =====================
   SECTIONS
   ===================== */

section{
    padding:45px 0;
}

section h2{
    font-size:2rem;
    margin-bottom:15px;
    color:#0f172a;
}

section p{
    max-width:1000px;
}

.gray{
    background:#f7f8fa;
}

/* =====================
   CARDS
   ===================== */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:white;

    padding:22px;

    border-radius:10px;

    box-shadow:
    0 4px 15px rgba(0,0,0,.05);

    transition:.2s;
}

.card:hover{
    transform:translateY(-4px);
}

.card h3{
    color:#0f172a;
    margin-bottom:10px;
    font-size:1.1rem;
}

.card p{
    font-size:.95rem;
    color:#555;
}

/* =====================
   STATS
   ===================== */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:20px;
}

.stats div{
    background:white;
    padding:18px;
    border-radius:8px;
    text-align:center;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.stats h3{
    font-size:1.5rem;
    margin-bottom:5px;
    color:#0f172a;
}

/* =====================
   ABOUT / MISSION
   ===================== */

#about p,
.mission p{
    max-width:1100px;
}

/* =====================
   CONTACT
   ===================== */

#contact p{
    margin-bottom:8px;
    font-size:1rem;
}

#contact a{
    color:#0f172a;
    text-decoration:none;
}

#contact a:hover{
    text-decoration:underline;
}

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

.whatsapp{
    position:fixed;

    right:20px;
    bottom:20px;

    background:#25D366;
    color:white;

    text-decoration:none;
    font-weight:600;

    padding:12px 18px;

    border-radius:999px;

    box-shadow:
    0 4px 15px rgba(0,0,0,.2);

    z-index:9999;

    transition:.2s;
}

.whatsapp:hover{
    transform:translateY(-2px);
}

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

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:25px 20px;
}

footer p{
    max-width:none;
    line-height:1.8;
    opacity:.95;
}

/* =====================
   PROCESS SECTION
   ===================== */

#process .card{
    text-align:center;
}

#process .card h3{
    font-size:2rem;
    color:#0f172a;
    margin-bottom:10px;
}

/* =====================
   RESPONSIVE
   ===================== */

@media(max-width:900px){

    .hero h1{
        font-size:2.5rem;
    }

}

@media(max-width:768px){

    header .container{
        flex-direction:column;
        gap:12px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero{
        padding:50px 0;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    section{
        padding:35px 0;
    }

    section h2{
        font-size:1.7rem;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .stats{
        grid-template-columns:1fr 1fr;
    }

    .whatsapp{
        right:15px;
        bottom:15px;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:1.7rem;
    }

    .hero-tag{
        font-size:.75rem;
    }

    .stats{
        grid-template-columns:1fr;
    }
}

#contact p{
    max-width:800px;
    margin-bottom:10px;
}