/* Base */
* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7f9;
  --card: #ffffff;
  --muted: #5b6473;
  --text: #101522;
  --accent: #203d5f;
  --accent-2: #2f587f;
  --danger: #e25555;
  --shadow: 0 10px 25px rgba(17, 24, 39, 0.08);
  --radius: 14px;
  --max: 1100px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, "Inter", "Segoe UI", "Arial", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(32, 61, 95, 0.25);
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: none;
}

.btn[href^="tel:"],
.btn[href^="https://wa.me"],
.btn[href^="https://t.me"] {
  padding: 10px 14px;
  font-size: 0.9rem;
}

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

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(32, 61, 95, 0.08);
  color: var(--accent);
  font-size: 0.85rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 21, 34, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.logo {
  font-weight: 700;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  width: 220px;
  height: 52px;
  background: url("/assets/logoHorizont.png") no-repeat left center / contain;
}

@media (max-width: 720px) {
  .logo {
    width: 180px;
    height: 44px;
  }
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  font-weight: 500;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 64px 0 40px;
  background: radial-gradient(circle at top left, rgba(32, 61, 95, 0.12), transparent 55%);
}

.hero-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 21, 34, 0.06);
}

.hero-card h3 {
  margin-top: 0;
}

/* Sections */
section {
  padding: 42px 0;
}

.section-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 12px;
}

.muted {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 21, 34, 0.06);
}

.card h3 {
  margin-top: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(32, 61, 95, 0.08);
  color: var(--accent);
  font-size: 0.9rem;
}

.cta {
  background: linear-gradient(120deg, rgba(32, 61, 95, 0.12), rgba(47, 88, 127, 0.08));
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.map {
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  min-height: 320px;
}

.footer {
  padding: 28px 0 60px;
  border-top: 1px solid rgba(16, 21, 34, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.contact-list {
  display: grid;
  gap: 8px;
}

.service-links a {
  color: var(--accent);
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(16, 21, 34, 0.04);
  padding: 14px;
  border-radius: 10px;
}

.form {
  display: grid;
  gap: 12px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(16, 21, 34, 0.12);
  background: #ffffff;
  color: var(--text);
}

.form button {
  align-self: flex-start;
}

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

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sticky-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-call a {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.sticky-call a.call {
  background: var(--accent);
  color: white;
}

.sticky-call a.whatsapp {
  background: #25d366;
  color: #041116;
}

.sticky-call a.route {
  background: #f1f4f8;
  color: var(--accent);
  border: 1px solid rgba(32, 61, 95, 0.2);
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header .btn {
    display: none;
  }

  .nav {
    justify-content: center;
  }

  .sticky-call {
    right: 12px;
    bottom: 12px;
  }
}
