
:root {
  --primary: #0b4f6c;
  --secondary: #f29f05;
  --bg: #f5f7fa;
  --text: #1f2933;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header {
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.5rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.95rem;
}
nav a {
  color: #e5e7eb;
  opacity: 0.9;
}
nav a:hover {
  opacity: 1;
}

.cta-phone {
  background: var(--secondary);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.hero {
  background: linear-gradient(135deg, #0b4f6c 0%, #102a43 60%);
  color: #fff;
  padding: 3rem 1.5rem 3.2rem;
}
.hero-with-bg {
  background-image: linear-gradient(135deg, rgba(11,79,108,0.9), rgba(16,42,67,0.9));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
}
.hero p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.hero-list {
  margin-bottom: 1.2rem;
  list-style: none;
}
.hero-list li::before {
  content: "• ";
  color: var(--secondary);
  font-weight: 700;
}
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--secondary);
  color: #000;
}
.btn-primary:hover {
  filter: brightness(0.95);
}
.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
}

.card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #222;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

main {
  padding: 2.5rem 1.5rem 3rem;
}
.section {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.section h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  color: #0b4f6c;
}
.section p {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: flex-start;
}

.list-check {
  list-style: none;
  padding-left: 0;
}
.list-check li {
  margin-bottom: 0.4rem;
}
.list-check li::before {
  content: "✔ ";
  color: #0b4f6c;
  font-weight: 700;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.location-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.location-card h3 {
  font-size: 1.1rem;
  color: #0b4f6c;
}
.location-card p {
  font-size: 0.95rem;
}
.location-meta {
  font-size: 0.88rem;
  opacity: 0.9;
}
.location-actions {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.info-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #0b4f6c;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.step-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.step-number {
  font-weight: 700;
  color: #f29f05;
  margin-bottom: 0.3rem;
}

.contact-box p {
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
}

.map-wrapper {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  min-height: 260px;
}
iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq-item {
  margin-bottom: 0.9rem;
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer {
  background: #0b1520;
  color: #d1d5db;
  padding: 1.5rem;
  font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}
.footer a {
  color: #e5e7eb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}
