/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1f6feb;
    --primary-soft: #e7f0ff;
    --accent: #0ea5e9;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --bg: #f3f4f6;
    --white: #ffffff;
    --radius-lg: 16px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Top bar */
.topbar {
    background: #020617;
    color: #e5e7eb;
    font-size: 12px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    gap: 10px;
}
.topbar-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar-links a {
    color: #e5e7eb;
    opacity: 0.85;
}
.topbar-links a:hover { opacity: 1; }

/* Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    gap: 20px;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: contain;
    background: #fff;
    padding: 4px;
    border: 1px solid rgba(148, 163, 184, 0.5);
}
.brand-text {
    font-size: 14px;
}
.brand-text strong {
    display: block;
    font-size: 18px;
    color: var(--dark);
}
.brand-text span {
    font-size: 11px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}
.nav-links a {
    color: var(--muted);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Buttons */
.btn {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.18s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-outline {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.7);
    color: var(--muted);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 32px 0 40px;
}
.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-title {
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.12;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
}
.hero-title span { color: var(--primary); }
.hero-text {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 18px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.hero-note {
    font-size: 12px;
    color: var(--muted);
}
.hero-note span {
    color: var(--primary);
    font-weight: 600;
}

.hero-map-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.25);
}
.hero-map-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--dark);
}
.hero-map-card p {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}
.map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
}
.map-frame iframe {
    width: 100%;
    height: 220px;
    border: 0;
}

/* Sections */
.section {
    padding: 38px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 26px;
}
.section-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.12em;
}
.section-title {
    font-size: 22px;
    color: var(--dark);
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 4px;
}
.section-subtitle {
    font-size: 13px;
    color: var(--muted);
}

/* Grid / cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    font-size: 13px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(37, 99, 235, 0.5);
}
.card-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 18px;
}
.card-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

/* Keyword tags */
.keyword-tags {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}
.keyword-tags span {
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
}

/* Blog list */
.blog-list {
    display: grid;
    gap: 18px;
}
.blog-item h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 6px;
}
.blog-meta {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 8px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
}
form label {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}
input, textarea, select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 8px 10px;
    font-size: 13px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.18);
}
textarea { min-height: 90px; resize: vertical; }

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    background: #0b1120;
    color: #9ca3af;
    padding: 16px 0 18px;
    font-size: 12px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-inner a { color: #e5e7eb; }

/* Floating buttons */
.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 60;
}
.floating-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 12px;
    color: #fff;
    background: var(--primary);
    box-shadow: var(--shadow-soft);
}
.floating-actions a.whatsapp {
    background: #22c55e;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}
.breadcrumb a { color: var(--primary); }

/* Responsive */
@media (max-width: 960px) {
    .hero-inner,
    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero {
        padding-top: 26px;
    }
}
@media (max-width: 830px) {
    .nav-links { display: none; }
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-row { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 540px) {
    .grid-3 { grid-template-columns: minmax(0, 1fr); }
}
