:root {
    --blue: #4fc3f7;
    --dark-bg: #0a0f1f;
    --dark-card: #141a35;
    --light-bg: #f4f9ff;
    --light-card: #ffffff;
}

body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    transition: background 0.3s, color 0.3s;
}

body.dark {
    background: linear-gradient(160deg, #0a0f1f, #121a3d);
    color: #fff;
}

body.light {
    background: linear-gradient(160deg, #f4f9ff, #e6f2ff);
    color: #111;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;
    backdrop-filter: blur(10px);

    background: rgba(10, 15, 31, 0.85);
body.light .topbar {
    background: rgba(244, 249, 255, 0.9);
}

}

.nav a {
    margin: 0 8px;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

.controls button {
    margin-left: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.container {
    max-width: 520px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

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

.hero-tag {
    opacity: 0.85;
    margin-bottom: 30px;
}

.logo-container img {
    width: 140px;
    margin: 20px auto;
}

.card {
    background: var(--dark-card);
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 22px;
}

body.light .card {
    background: var(--light-card);
}

.highlight {
    border: 1px solid var(--blue);
}

.card h2 {
    color: var(--blue);
}

.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.service {
    background: rgba(255,255,255,0.06);
    padding: 12px;
    border-radius: 12px;
}

.trust {
    list-style: none;
    padding: 0;
}

.trust li {
    margin-bottom: 6px;
}

.buttons {
    display: flex;
    gap: 12px;
    margin: 14px 0;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
}

.call {
    background: var(--blue);
}

.whatsapp {
    background: #25D366;
}

.directions {
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
}

.map {
    position: relative;
}

.map iframe {
    width: 100%;
    height: 230px;
    border-radius: 18px;
    border: none;
}

/* Transparent clickable layer */
.map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
}
.simple-topbar {
    justify-content: space-between;
}

.simple-topbar .brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
