*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#fff;
    color:#333;
    line-height:1.6;
}

/* NAV */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#111;
    color:white;
}

.navbar a{
    color:white;
    margin:0 10px;
    text-decoration:none;
}

.logo{
    font-weight:bold;
}

/* HERO */
.hero{
    height:90vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url("images/pic1.jpeg");
    background-size:cover;
    background-position:center;
    color:white;
}

.hero h1{
    font-size:42px;
}

.btn-primary{
    display:inline-block;
    margin-top:20px;
    padding:12px 24px;
    background:#ff9800;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

/* SECTIONS */
.section{
    padding:60px 20px;
    max-width:1100px;
    margin:auto;
}

h2{
    text-align:center;
    margin-bottom:20px;
}

.center{
    text-align:center;
    max-width:800px;
    margin:auto;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#f4f4f4;
    padding:20px;
    border-radius:10px;
    text-align:center;
}

/* GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:15px;
    margin-bottom:30px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

/* FORM */
.form{
    max-width:500px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

input, textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
}

/* BUTTONS */
.btn{
    padding:12px;
    border:none;
    border-radius:6px;
    color:white;
    cursor:pointer;
}

.whatsapp{ background:#25D366; }
.call{ background:#007bff; }
.email{ background:#ff9800; }
.sms{ background:#444; }

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#111;
    color:white;
}