*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{background:#f5f7fb;color:#333;}

/* NAVBAR */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px;
    width:100%;
    margin:0 auto;
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.logo img{height:48px;}

/* ================= IMAGE SOCIAL ICONS ================= */

.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-icons a{
    display:inline-block;
    transition:transform 0.3s ease;
}

.header-icons img{
    width:32px;
    height:32px;
    object-fit:cover;
    border-radius:50%;
    box-shadow:0 5px 12px rgba(0,0,0,0.25);
}

/* Hover Effect */
.header-icons a:hover{
    transform:translateY(-4px) scale(1.1);
}

nav{display:flex;gap:14px;}
nav a{
text-decoration:none;padding:10px 22px;border-radius:30px;
font-size:14px;color:#fff;transition:0.3s;
}
nav a:hover{background:rgba(255,255,255,0.25);}
nav a.active{background:#fff;color:#0f4c81;font-weight:600;}
nav a.contact{
    background:#28a745;     /* Green */
    color:#ffffff;          /* White text */
    font-weight:600;
    transition:0.3s ease;
}

/* NAV MENU */
nav{
    display:flex;
    align-items:center;
    gap:14px;
}

nav a{
    text-decoration:none;
    padding:10px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:500;
    color:#1c1f26;
    transition:all 0.3s ease;
}

nav a:hover{
    background:#f2f5f9;
    transform:translateY(-2px);
}

nav a.active{
    background:#0f4c81;
    color:#ffffff;
}

nav a.contact{
    background:#28a745;     /* Green */
    color:#ffffff;          /* White text */
    font-weight:600;
    transition:0.3s ease;
}

nav a.contact:hover{
    background:#ffffff;     /* White background */
    color:#28a745;          /* Green text */
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
/* ================= HAMBURGER ================= */
.hamburger{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.hamburger span{
    height:3px;
    width:26px;
    background:#1c1f26;   /* Dark charcoal */
    margin:4px 0;
    border-radius:2px;
}


.page-hero{
background: linear-gradient(135deg, #faf9f6, #f1ece6);
color: #222222;
padding:70px 10%;text-align:center;
}
.page-hero h1{font-size:38px;}

section{padding:60px 10%;}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.contact-card{
background:#fff;padding:30px;border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}
.contact-card a {
    word-break: break-word;
    overflow-wrap: break-word;
}
.contact-card h2{color:#0f4c81;margin-bottom:15px;}
.contact-card p{line-height:1.7;margin-bottom:8px;}

.highlight{font-weight:600;color:#0f4c81;}

form input, form textarea{
width:100%;padding:12px;margin-bottom:15px;
border-radius:8px;border:1px solid #ccc;
}

form button{
background:#0f4c81;color:#fff;
padding:12px 20px;border:none;
border-radius:30px;cursor:pointer;
}
form button:hover{background:#1e90ff;}

.success{color:green;margin-bottom:10px;}
.error{color:red;margin-bottom:10px;}

/* WhatsApp Floating Button */
.whatsapp-float{
position:fixed;bottom:20px;right:20px;
background:#25D366;color:#fff;
padding:15px 18px;border-radius:50%;
font-size:20px;text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
footer{
    background:#ffffff;
    color:#222222;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .hamburger{ display:flex; }

    nav{
        position:absolute;
        top:70px;
        right:10%;
        background:#ffffff;
        box-shadow:0 15px 30px rgba(0,0,0,0.1);
        flex-direction:column;
        width:220px;
        padding:20px;
        border-radius:14px;
        display:none;
        /*box-shadow:0 15px 30px rgba(0,0,0,0.3);*/
    }

    nav.show{ display:flex; }

    nav a{
        width:100%;
        color:#1c1f26;
        text-align:center;
    }