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

body{
background:#f5f7fa;
color:#222;
transition:0.3s;
}

/* DARK MODE */
body.dark{
background:#0f172a;
color:white;
}

/* NAV */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:white;
position:sticky;
top:0;
z-index:999;
}
/* DARK MODE */
body.dark {
    background: #0f172a;
    color: white;
}

body.dark .section.alt {
    background: #1e293b;
}

.controls button {
    margin-left: 8px;
    cursor: pointer;
}

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

.gallery img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

body.dark .navbar{background:#1e293b}

.nav-links a{
margin:0 10px;
text-decoration:none;
color:#0a3d62;
font-weight:bold;
}

/* HERO */
.hero{
text-align:center;
padding:100px 20px;
background:linear-gradient(120deg,#0a3d62,#1e90ff);
color:white;
}

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

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

.card{
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:center;
}

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

.gallery img{
width:100%;
border-radius:10px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}

/* BUTTON */
.btn{
background:#25D366;
color:white;
padding:12px 20px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:15px;
}

/* ANIMATIONS */
.fade-in{opacity:0;animation:fade 1s forwards}
.delay{animation-delay:.5s}
.delay2{animation-delay:1s}

@keyframes fade{
to{opacity:1}
}

/* REVEAL SCROLL */
.reveal{opacity:0;transform:translateY(40px);transition:1s}
.reveal.active{opacity:1;transform:none}

footer{
background:#0a3d62;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
/* LOGO */
.logo-box{
display:flex;
align-items:center;
gap:10px;
}

.logo{
height:40px;
}

.hero-logo{
width:90px;
margin-bottom:15px;
}

/* HERO BUTTONS */
.hero-buttons{
margin-top:20px;
display:flex;
gap:10px;
justify-content:center;
}

.btn.outline{
background:transparent;
border:2px solid white;
}

/* GALLERY REAL WORK */
.gallery img{
width:100%;
border-radius:10px;
object-fit:cover;
height:200px;
}

/* PRICING */
.pricing{
text-align:center;
}

.pricing-buttons{
margin-top:20px;
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}
/* CONTACT PRO */
.contact-box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.contact-btn {
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp { background: #25D366; }
.mail { background: #2563eb; }
.phone { background: #f59e0b; }

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

/* GOOGLE MAP */
.map iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
}

.location {
    margin-top: 10px;
    font-weight: bold;
}
