*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8f9fa;
color:#222;
}

/* NAV */
.navbar{
position:fixed;
top:0;
width:100%;
background:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 5%;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
z-index:1000;
}

.logo{
font-weight:600;
color:#b8860b;
font-size:14px;
}

.menu-toggle{
font-size:22px;
cursor:pointer;
}

.nav-links{
display:none;
flex-direction:column;
position:absolute;
top:60px;
right:10px;
background:white;
padding:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.nav-links.active{
display:flex;
}

.nav-links li{
list-style:none;
margin:10px 0;
}

.nav-links a{
text-decoration:none;
color:#333;
}

/* HERO */
.hero{
margin-top:70px;
height:45vh;
background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:22px;
margin-bottom:10px;
}

.btn-gold{
background:#b8860b;
color:white;
padding:10px 20px;
border-radius:4px;
text-decoration:none;
display:inline-block;
margin-top:10px;
}

/* SERVICES */
.services{
padding:50px 5%;
}

.section-title{
text-align:center;
margin-bottom:30px;
}

.service-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.service-card{
background:white;
padding:15px;
text-align:center;
border-radius:6px;
box-shadow:0 5px 10px rgba(0,0,0,0.1);
transition:.3s;
color:#222;
}

.service-card:hover{
transform:translateY(-5px);
}

/* DROPDOWN */
.service-card.dropdown{
cursor:pointer;
}

.service-card.dropdown span{
display:block;
font-weight:500;
}

.dropdown-content{
display:none;
margin-top:10px;
text-align:left;
}

.dropdown-content a{
display:block;
padding:6px 0;
font-size:14px;
text-decoration:none;
color:#1a4d8f;
}

.dropdown-content a:hover{
text-decoration:underline;
}

/* ABOUT */
.about{
padding:50px 5%;
background:#f1f3f5;
font-family:'Merriweather',serif;
font-style:italic;
text-align:center;
}

/* APPOINTMENT */
.appointment{
padding:50px 5%;
}

form{
max-width:500px;
margin:auto;
}

form input,
form select,
form textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border-radius:4px;
border:1px solid #ccc;
}

/* LOCATION */
.location{
padding:50px 5%;
text-align:center;
}

.location iframe{
width:100%;
max-width:900px;
height:350px;
border-radius:8px;
}

.map-link{
margin-top:10px;
}

.map-link a{
color:#b8860b;
text-decoration:none;
font-weight:500;
}

/* FOOTER */
footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}

.footer-links a{
color:white;
margin:0 8px;
text-decoration:none;
}

/* FLOAT BUTTONS */
.float-call{
position:fixed;
bottom:90px;
right:15px;
background:#b8860b;
color:white;
padding:14px;
border-radius:50%;
}

.float-whatsapp{
position:fixed;
bottom:30px;
right:15px;
background:#25D366;
padding:14px;
border-radius:50%;
}

