﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --navy: #0f2b46;
  --teal: #0c9e99;
  --accent: #f4a524;
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #152232;
  --muted: #5b6b7a;
  --shadow: 0 12px 35px rgba(15, 43, 70, 0.12);
  font-size: 10pt;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  background: linear-gradient(180deg, #fafdff 0%, #f6f8fb 100%);
  color: var(--text);
  line-height: 1.6;
  font-size: 10pt;
  overflow-y: scroll;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

p, li, pre {
  font-size: 10pt;
  line-height: 1.6;
}

pre {
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  white-space: pre-wrap;
  margin: 0;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--navy);
  color: #d6e3f3;
  font-size: 8pt;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar a {
  color: #f4f7fb;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(15, 43, 70, 0.15);
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}

.brand-tagline {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  white-space: nowrap;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
  font-size: 10pt;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: rgba(12, 158, 153, 0.08);
}

.nav .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav .nav-item > a {
  padding-right: 26px;
}

.nav .nav-item::after {
  content: "\25BE"; /* small down arrow */
  font-size: 9px;
  color: var(--muted);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}







.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(15, 43, 70, 0.12);
  padding: 6px;
  align-items: center;
  justify-content: center;
}

.social-icons img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.nav .nav-item:hover 

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

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

.btn.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  background: #0b8a86;
}

.btn.accent {
  background: var(--accent);
  color: #0f1f33;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: rgba(15, 43, 70, 0.15);
  background: #ffffff;
  color: var(--navy);
}

.hero {
  padding: 46px 0 26px;
}

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

.hero h1 {
  font-size: 12pt;
  color: var(--navy);
  margin: 0 0 12px;
}

.hero p {
  color: var(--muted);
  font-size: 10pt;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(12, 158, 153, 0.1);
  color: var(--teal);
  font-weight: 700;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 10px;
}

.hero-card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card.image-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.hero-card.image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 45%;
  object-fit: contain;
  border-radius: 18px;
}

.grid {
  display: grid;
  gap: 18px;
}

.contact-cards {
  grid-auto-rows: 1fr;
}

.contact-cards .card {
  height: 100%;
}

.contact-cards .cta-row .btn {
  min-width: 200px;
  height: 52px;
  font-size: 14px;
}

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

.feature-card {
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(15, 43, 70, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.feature-card h3 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 12pt;
}

.feature-card p {
  color: var(--muted);
  font-size: 10pt;
}

.section {
  padding: 40px 0;
}

.section h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 12pt;
}

.section p.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10pt;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(15, 43, 70, 0.06);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 12pt;
}

.card .cta-row {
  margin-top: auto;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 10pt;
}

.badge {
  display: inline-block;
  min-width: 14px;
  padding: 0;
  margin-right: 6px;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 10pt;
  line-height: 1.4;
  text-align: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.section.alt {
  background: #eef3fa;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: grid;
  gap: 10px;
  z-index: 30;
}

.floating-actions a {
  padding: 12px 14px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  box-shadow: var(--shadow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.floating-actions .whatsapp {
  background: #25d366;
}

.floating-actions .phone {
  background: var(--navy);
}

footer {
  background: #dfe8f5;
  color: var(--navy);
  padding: 28px 0;
  margin-top: 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-info p {
  margin: 6px 0;
  color: var(--text);
}

.footer-social h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 11pt;
}

.footer-social .social-icons {
  margin-top: 0;
}

.footer-social .social-icons img {
  width: 26px;
  height: 26px;
  display: block;
}

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

footer a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  border: none;
  background: #ffffff;
  border: 1px solid rgba(15, 43, 70, 0.15);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav {
    gap: 8px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    display: none !important;
    flex: 0 0 100%;
    justify-content: flex-start;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    margin-top: 10px;
  }

  .nav.open {
    display: flex !important;
  }

  .nav .nav-item {
    width: 100%;
  }

  .nav .nav-item::after {
  content: "\25BE"; /* small down arrow */
  font-size: 9px;
  color: var(--muted);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

  

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 32px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}
