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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background-color: #f3f4f6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

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

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.8rem;
}

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

.logo-main {
  font-weight: 700;
  font-size: 1rem;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #374151;
}

.nav a.active {
  background-color: #e5edff;
  color: #1d4ed8;
}

.nav a:hover {
  background-color: #eff6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn:hover {
  opacity: 0.95;
}

.btn-outline {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  box-shadow: none;
}

.btn-outline:hover {
  background-color: #eff6ff;
}

.btn-small {
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background-color: #111827;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 1rem 0.75rem;
  gap: 0.4rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-nav a {
  font-size: 0.9rem;
  color: #374151;
}

.hero {
  padding: 2.5rem 0 2rem;
  background: radial-gradient(circle at top left, #dbeafe, #eff6ff 40%, #f9fafb);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero-text h1 span {
  color: #1d4ed8;
}

.hero-subtitle {
  color: #4b5563;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-info {
  font-size: 0.85rem;
  color: #4b5563;
}

.hero-info p {
  margin: 0.2rem 0;
}

.hero-slider {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 0.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  right: 0.8rem;
  background: rgba(15, 23, 42, 0.75);
  color: #f9fafb;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.8rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #e5e7eb;
  cursor: pointer;
}

.dot.active {
  width: 20px;
  background-color: #1d4ed8;
}

.section {
  padding: 2.5rem 0;
}

.section-light {
  background-color: #ffffff;
}

.info-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  padding: 1.1rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.info-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.info-card p {
  margin: 0;
  color: #6b7280;
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  border-color: #bfdbfe;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.bullet-list {
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}

.inquiry-form {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 0.8rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background-color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background-color: #ffffff;
  box-shadow: 0 0 0 1px #bfdbfe;
}

.error-message {
  display: block;
  min-height: 0.9rem;
  font-size: 0.75rem;
  color: #b91c1c;
}

.form-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

.footer {
  background-color: #0f172a;
  color: #e5e7eb;
  padding-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.85rem;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer a {
  display: block;
  margin-bottom: 0.25rem;
  color: #cbd5f5;
  font-size: 0.85rem;
}

.footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.5);
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.4);
  z-index: 201;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.7rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  background-color: #f3f4f6;
}

.page-header {
  padding: 2rem 0 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
  margin: 0 0 0.4rem;
}

.page-header p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.card h2,
.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.card-list {
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  color: #4b5563;
  font-size: 0.85rem;
}

.card-list li {
  margin-bottom: 0.2rem;
}

.tag {
  font-size: 0.75rem;
  margin-top: 0.3rem;
  display: inline-flex;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background-color: #eff6ff;
  color: #1d4ed8;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-item {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.1rem;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.blog-item h2 {
  margin-top: 0;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

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

  .hero-slider {
    order: -1;
  }

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

  .info-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .info-buttons {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.flag-icon {
  width: 40px;
  height: auto;
  border-radius: 5px;
  display: block;
  margin-bottom: 10px;
}
.country-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.flag-icon {
  width: 40px;
  height: 26px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  border: 1px solid #ddd;
}

