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

body {
  font-family: 'Inter', sans-serif;
  color: #e2e8f0;
  background: #0a0f1e;
  line-height: 1.6;
}

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

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

/* === HEADER === */
header {
  background: #060c18;
  color: #fff;
  padding: 1rem 0;
  position: static;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.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: 56px;
  width: auto;
}

.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: #94a3b8;
  transition: color 0.2s;
}

nav a:hover { color: #fff; }

.lang-toggle {
  background: transparent;
  border: 1.5px solid #5000c8;
  color: #a78bfa;
  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: #5000c8;
  color: #fff;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  display: block;
  filter: brightness(0.8);
}

.hero-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem 2.5rem;
  background: transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow:
    0 0 2px #5000c8,
    0 0 6px #5000c8,
    1px 1px 0 #5000c8,
    -1px -1px 0 #5000c8,
    1px -1px 0 #5000c8,
    -1px 1px 0 #5000c8,
    0 2px 8px rgba(0,0,0,0.6);
}

.tagline {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

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

.hero .btn,
.hero .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-shadow: none;
}

.hero .btn:hover,
.hero .btn-outline:hover {
  background: #5000c8;
  border-color: #5000c8;
  color: #fff;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #5000c8;
  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: #3d009a;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: #5000c8;
  color: #fff;
  transform: translateY(-1px);
}

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

.section-alt {
  background: #0f172a;
}

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

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

.card {
  background: #1e293b;
  border: 1px solid #2d3f5e;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: 0 4px 24px rgba(80,0,200,0.2);
  border-color: #5000c8;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

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

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

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

.carriers span {
  background: #1e293b;
  border: 1px solid #2d3f5e;
  color: #a78bfa;
  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 #2d3f5e;
  color: #e2e8f0;
}

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

.hours-note {
  color: #94a3b8;
  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: #cbd5e1;
}

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

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

.location-info .btn-outline {
  border-color: #5000c8;
  color: #a78bfa;
  margin-top: 0.5rem;
}

.location-info .btn-outline:hover {
  background: #5000c8;
  color: #fff;
}

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

/* === PAGE HERO === */
.page-hero {
  background: #060c18;
  padding: 3rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid #1e293b;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: #94a3b8;
  font-size: 1rem;
}

/* === SERVICE DETAIL === */
.service-detail p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-list li {
  background: #1e293b;
  border: 1px solid #2d3f5e;
  color: #a78bfa;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
}

.service-cta {
  text-align: center;
  color: #94a3b8 !important;
  font-style: italic;
}

/* === PROMOTIONS === */
.promo-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.promo-box p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.tax-note {
  background: #1e293b;
  border: 1px solid #2d3f5e;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #a78bfa !important;
  font-size: 0.95rem;
}

/* === EXCHANGE RATES === */
.rates-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.rates-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.rates-currency {
  font-size: 0.95rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rates-updated {
  font-size: 0.8rem;
  color: #475569;
}

.rates-loading {
  text-align: center;
  color: #64748b;
  padding: 3rem 0;
  font-size: 0.95rem;
}

.rates-table-wrap {
  margin-bottom: 1.5rem;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  padding: 0 1.25rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #1e293b;
}

.rates-table thead th:nth-child(2) {
  text-align: right;
}

.rates-table tbody tr {
  border-bottom: 1px solid #1e293b;
  transition: background 0.15s;
}

.rates-table tbody tr:last-child {
  border-bottom: none;
}

.rates-table tbody tr:hover {
  background: #0f172a;
}

.rate-vendor-name {
  padding: 1.1rem 1.25rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #e2e8f0;
}

.rate-number {
  padding: 1.1rem 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #a78bfa;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.rate-badge-cell {
  padding: 1.1rem 1.25rem 1.1rem 0.5rem;
  text-align: right;
}

.rate-badge {
  background: #5000c8;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rate-row-best .rate-vendor-name,
.rate-row-best .rate-number {
  color: #fff;
}

.rates-disclaimer {
  font-size: 0.8rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}

.vendor-logos {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #1e293b;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}

.vendor-logo {
  flex: 1;
  max-width: 240px;
  height: 80px;
  object-fit: contain;
  opacity: 0.85;
}

.vendor-logo-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.rates-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

/* === HAMBURGER MENU === */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #060c18;
  border-top: 1px solid #1e293b;
  padding: 1rem 1.5rem;
  gap: 0;
}

.mobile-nav a {
  color: #94a3b8;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid #1e293b;
  display: block;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: #fff; }

.mobile-nav.open { display: flex; }

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

  .hero-img {
    min-height: 320px;
    object-fit: cover;
    object-position: center;
  }

  .hero-inner {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .tagline {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .hero-btns {
    gap: 0.6rem;
  }

  .hero .btn,
  .hero .btn-outline {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
  }

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

  .rates-table thead th,
  .rate-vendor-name,
  .rate-number {
    font-size: 1.1rem;
    padding: 0.75rem 0.75rem;
  }

  .vendor-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .vendor-logo {
    max-width: 160px;
    height: 60px;
  }
}
