/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HEADER === */
header {
  background: #0d1b3e;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 48px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-sub {
  font-size: 0.75rem;
  color: #a0aec0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e0;
  transition: color 0.2s;
}

nav a:hover { color: #fff; }

.lang-toggle {
  background: transparent;
  border: 1.5px solid #4a90d9;
  color: #4a90d9;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  background: #4a90d9;
  color: #fff;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 60%, #2a5298 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 1.15rem;
  color: #a0c4f1;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #4a90d9;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.1s;
}

.btn:hover {
  background: #357abd;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* === SECTIONS === */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f7f9fc;
}

.section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0d1b3e;
  text-align: center;
}

/* === CARDS === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0d1b3e;
}

.card p {
  font-size: 0.9rem;
  color: #4a5568;
}

/* === CARRIERS === */
.carriers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.carriers span {
  background: #0d1b3e;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* === HOURS === */
.hours-wrap {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.hours-table td {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: #0d1b3e;
}

.hours-note {
  color: #4a5568;
  font-size: 0.9rem;
}

/* === LOCATION === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.location-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #2d3748;
}

.location-info a[href^="tel"] {
  color: #4a90d9;
  font-weight: 600;
}

.bilingual-note {
  font-style: italic;
  color: #4a5568 !important;
  margin-bottom: 1.25rem !important;
}

.location-info .btn-outline {
  border-color: #0d1b3e;
  color: #0d1b3e;
  margin-top: 0.5rem;
}

.location-info .btn-outline:hover {
  background: #0d1b3e;
  color: #fff;
}

.map-embed iframe {
  border-radius: 8px;
  display: block;
}

/* === FOOTER === */
footer {
  background: #0d1b3e;
  color: #718096;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav { display: none; }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 3.5rem 0 3rem; }
}
