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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: #1e40af;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TOP BAR
========================= */
.topbar {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-right {
  display: flex;
  gap: 8px;
}

.social {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.social:hover {
  background: #d1d5db;
  text-decoration: none;
}

/* =========================
   HEADER
========================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

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

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  text-decoration: none;
}

.brand-logo {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1f2937;
}

.brand-text span {
  display: block;
  font-size: 1rem;
  color: #6b7280;
}

/* Header Info */
.header-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.info-block {
  min-width: 150px;
}

.info-title {
  font-weight: 700;
  font-size: 0.8125rem;
  color: #1f2937;
}

.info-sub {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 2px;
}

.phone-link {
  color: #1f2937;
  text-decoration: none;
  font-weight: 700;
}

.phone-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Language Pills */
.lang-pills {
  display: flex;
  gap: 6px;
}

.lang-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.lang-pill:hover {
  background: #e0f2fe;
  border-color: #1e40af;
  text-decoration: none;
}

.lang-pill.active {
  background: #fbbf24;
  border-color: #fbbf24;
  color: #1f2937;
}

/* =========================
   NAVIGATION
========================= */
.navbar {
  background: #111827;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 50px;
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger animation when open */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 14px 16px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: #fbbf24;
  text-decoration: none;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-trigger::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1000;
  padding: 8px 0;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu li a:hover {
  background: #f3f4f6;
  color: #1e40af;
  text-decoration: none;
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  color: #ffffff;
  padding: 48px 0;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
  color: #ffffff;
  padding: 80px 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.7;
}

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

/* =========================
   MAIN CONTENT
========================= */
.main-content {
  flex: 1;
  padding: 48px 0;
}

.service-section {
  margin-bottom: 40px;
}

.service-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.service-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 24px 0 12px;
}

.service-section p {
  margin-bottom: 16px;
  color: #4b5563;
}

.service-list {
  margin: 16px 0;
  padding-left: 24px;
}

.service-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
  color: #4b5563;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: #1e40af;
  font-weight: bold;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 56px 0;
}

.section-alt {
  background: #f9fafb;
}

h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

/* =========================
   CARDS
========================= */
.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 16px;
}

.bullets {
  padding-left: 20px;
}

.bullets li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 4px;
}

.bullets li::before {
  content: '✔';
  position: absolute;
  left: -20px;
  color: #059669;
  font-weight: bold;
}

/* =========================
   CTA BOX
========================= */
.cta-box {
  background: linear-gradient(135deg, #1e3a5f 0%, #1e40af 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.cta-box h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: #1e40af;
  color: #ffffff;
  border-color: #1e40af;
}

.btn-primary:hover {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* =========================
   SERVICE NAV
========================= */
.service-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #e5e7eb;
}

.service-nav-link {
  color: #1e40af;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.service-nav-link:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 48px 0 0;
  margin-top: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-col strong {
  color: #ffffff;
  display: block;
  margin-bottom: 8px;
}

.footer-col a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid #374151;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

/* =========================
   MAP
========================= */
.map-wrap {
  margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.map-embed {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .header-info {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
  }

  .info-block {
    min-width: auto;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* =========================
   RESPONSIVE - MOBILE NAV
========================= */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111827;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 40px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu > li > a {
    padding: 16px 24px;
    border-bottom: 1px solid #374151;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #1f2937;
    border-radius: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu li a {
    padding: 14px 24px 14px 40px;
    color: #d1d5db;
    border-bottom: 1px solid #374151;
  }

  .dropdown-menu li a:hover {
    background: #374151;
    color: #ffffff;
  }

  /* Overlay */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: 48px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 32px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .main-content {
    padding: 32px 0;
  }

  .cta-box {
    padding: 24px;
  }

  .service-nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .map-embed {
    height: 280px;
  }
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .topbar-left {
    font-size: 0.7rem;
  }

  .brand-logo {
    width: 90px;
    height: 90px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text span {
    font-size: 0.875rem;
  }

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

  .hero p {
    font-size: 0.9375rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
