/* ---- Base styles ---- */
:root {
  --bg-main: #f5f7fb;
  --bg-section-1: #ffffff;
  --bg-section-2: #edf4ff;
  --accent: #ffb347;
  --accent-soft: #ffe3bf;
  --accent-strong: #ff9f1c;
  --text-main: #1f2933;
  --text-muted: #6b7280;
  --border-soft: #d0d7e5;
  --danger: #d32f2f;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: linear-gradient(180deg, #fdfdfd 0, #f1f5ff 40%, #fdf7f0 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body { line-height: 1.6; }

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

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

/* ---- Layout ---- */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.85));
  border-bottom: 1px solid rgba(210, 218, 235, 0.9);
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.4rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.18rem;
  text-transform: uppercase;
  color: #111827;
}

.brand-text { display: inline-flex; gap: 0.25rem; }

.brand-part { display: inline-block; }

.brand-part-1 { color: #3b6fb3; }
.brand-part-2 { color: #ffb347; }
.brand-part-3 { color: #1f2933; }

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

.nav-links { display: none; gap: 1rem; }

.nav-links a {
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
  color: #374151;
}

.nav-links a:hover { border-color: var(--accent-strong); }

.lang-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.1rem 0.25rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-soft);
  max-width: 150px;
  justify-content: flex-end;
}

.lang-switch a {
  opacity: 0.6;
  cursor: pointer;
  padding: 0 0.15rem;
  color: inherit;
  text-decoration: none;
}

.lang-switch a.active {
  opacity: 1;
  font-weight: 600;
  color: var(--accent-strong);
}

/* Hero */

main { flex: 1; }

.hero { padding: 2.3rem 0 2.7rem; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2fr);
  gap: 2.2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2.0rem, 3vw + 1.4rem, 2.8rem);
  line-height: 1.18;
  margin: 0 0 0.8rem;
  color: #111827;
}

.hero-highlight { color: var(--accent-strong); }

.hero-lead {
  color: var(--text-muted);
  font-size: 0.96rem;
  max-width: 35rem;
  margin-bottom: 1.4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease, border-color 0.15s ease;
  background: none;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, #ffe3bf, #ffb347);
  color: #3b2c18;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(255, 179, 71, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 179, 71, 0.55);
}

.btn-secondary {
  border-color: var(--border-soft);
  background: #ffffff;
  color: #374151;
}

.btn-secondary:hover {
  border-color: var(--accent-soft);
  background: #fdf7f0;
}

.btn-icon {
  font-size: 1rem;
  margin-left: 0.3rem;
}

.hero-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-meta strong {
  color: #374151;
  font-weight: 600;
}

/* Hero visual */

.hero-card {
  background: radial-gradient(circle at top left, #ffffff, #f3f5ff);
  border-radius: 1.4rem;
  border: 1px solid #d9e2ff;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.10);
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.hero-card-title {
  font-weight: 600;
  color: #111827;
  font-size: 0.86rem;
  margin-bottom: 0.12rem;
}

.hero-route {
  border-radius: 1rem;
  background: #f7f9ff;
  border: 1px solid #dde5ff;
  padding: 0.7rem 0.8rem 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-route-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.route-end {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 120px;
}

.route-start {
  align-items: flex-start;
  text-align: left;
}

.route-end-dest {
  align-items: flex-end;
  text-align: right;
}

.route-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.route-icon-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.route-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-card-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  font-size: 0.78rem;
}

.hero-stat {
  padding: 0.45rem 0.55rem;
  border-radius: 0.7rem;
  background: #f7f9ff;
  border: 1px solid #dde5ff;
}

.hero-stat-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin-bottom: 0.05rem;
}

.hero-stat-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}

/* Sections */

section { padding: 2.4rem 0; }

section:nth-of-type(odd) { background: var(--bg-section-1); }
section:nth-of-type(even) { background: var(--bg-section-2); }

.section-heading { margin-bottom: 1.6rem; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-strong);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.35rem;
  margin: 0 0 0.25rem;
  color: #111827;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 32rem;
}

/* Services */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top left, rgba(255, 179, 71, 0.12), #ffffff);
  padding: 1rem;
  font-size: 0.87rem;
  box-shadow: 0 10px 22px rgba(148, 163, 184, 0.15);
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #111827;
}

.card p { margin: 0 0 0.4rem; color: var(--text-muted); }
.card small { color: var(--text-muted); font-size: 0.8rem; }

/* Why choose me */

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.2rem;
  font-size: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #e9f9ef;
  border: 1px solid #8ad29c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #1b7f3d;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.feature-text span { display: block; }
.feature-title { font-weight: 600; margin-bottom: 0.1rem; color: #111827; }
.feature-desc { color: var(--text-muted); font-size: 0.88rem; }

/* Pricing */

.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: flex-start;
}

.pricing-box {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(255, 179, 71, 0.14), #ffffff);
  padding: 1.1rem;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.16);
}

.pricing-example { font-size: 0.86rem; color: var(--text-muted); }

.pricing-example-box {
  border-radius: 1rem;
  border: 1px dashed var(--border-soft);
  background: #fffaf1;
  padding: 0.9rem 1rem;
  width: 100%;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.16);
}

.pricing-example-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.pricing-example-list {
  list-style: none;
  margin: 0.4rem 0 0.6rem;
  padding: 0;
  font-size: 0.86rem;
}

.pricing-example-list li { margin-bottom: 0.25rem; }

.pricing-example-note { font-size: 0.78rem; color: var(--text-muted); }

.pricing-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-main {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  color: #111827;
}

.price-main span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
}

.price-list li {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.price-bullet { margin-top: 0.2rem; color: var(--accent-strong); }
.pricing-extra { font-size: 0.83rem; color: var(--text-muted); }
.pricing-note-danger { color: var(--danger); font-size: 0.8rem; margin-top: 0.5rem; }

/* Process */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  font-size: 0.86rem;
}

.step {
  border-radius: 0.9rem;
  border: 1px solid var(--border-soft);
  padding: 0.8rem;
  background: #ffffff;
  position: relative;
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.2);
}

.step-number {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin-bottom: 0.2rem;
  background: #fff7e6;
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.1rem;
  font-size: 0.9rem;
  color: #111827;
}

.step-desc { color: var(--text-muted); font-size: 0.84rem; }

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 1.3rem;
  align-items: flex-start;
}

.about-text { font-size: 0.9rem; color: var(--text-muted); }
.about-text p { margin-top: 0; margin-bottom: 0.6rem; }

.about-highlight { font-weight: 600; color: #111827; }

.country-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-size: 0.8rem;
}

.country-tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  color: #4b5563;
  background: #ffffff;
}

.country-tag-heading {
  flex-basis: 100%;
  text-transform: none;
}

.about-card {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(129, 178, 255, 0.2), #ffffff);
  padding: 1rem;
  font-size: 0.88rem;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.16);
}

.about-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
  color: #111827;
}

.about-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 1.3rem;
  align-items: flex-start;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 0.7rem;
  font-size: 0.86rem;
}

.form-full { grid-column: 1 / -1; }

label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

input, select, textarea {
  width: 100%;
  padding: 0.45rem 0.55rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.86rem;
}

textarea { min-height: 90px; resize: vertical; }

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(255, 179, 71, 0.6);
}

.contact-meta {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.contact-channels { font-size: 0.85rem; color: var(--text-muted); }

.contact-channels p { margin: 0.1rem 0; }

.contact-channels a { color: var(--accent-strong); }

.contact-channels a:hover { text-decoration: underline; }

.contact-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact-success {
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.8rem;
  border: 1px solid #8ad29c;
  background: #e9f9ef;
  color: #134e21;
  font-size: 0.86rem;
  box-shadow: 0 4px 10px rgba(148, 163, 184, 0.2);
}

.contact-success strong { font-weight: 600; margin-right: 0.2rem; }

.btn-submit { margin-top: 0.4rem; justify-self: flex-start; }

footer {
  padding: 1.3rem 0 1.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #f9fafb;
  border-top: 1px solid #e2e8f0;
}

.footer-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: center;
}

.footer-links { display: flex; gap: 0.7rem; }

.footer-links a { text-decoration: none; }

.footer-links a:hover { color: var(--accent-strong); }

/* ---- Responsive ---- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .pricing-right { margin-top: 1.0rem; }
  .hero-card { order: -1; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: minmax(0, 1fr); }
  .pricing-layout { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-layout { grid-template-columns: minmax(0, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1fr); }
  form { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-links { display: none; }

  .hero-route-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.6rem;
  }

  .route-end { min-width: 0; }

  .route-start,
  .route-end-dest {
    align-items: center;
    text-align: center;
  }

  .route-icon-img {
    width: 56px;
    height: 56px;
  }
}

@media (min-width: 901px) {
  .nav-links { display: flex; }
}

@media (max-width: 600px) {
  .cards { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 1.6rem; }
}

/* Contact info card */

.contact-info-card {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.18);
  font-size: 0.86rem;
}

.contact-info-card .contact-meta { margin-bottom: 0.6rem; }
.contact-info-card .contact-channels p { margin: 0.15rem 0; }

/* Submit button */

#submitBtn {
  width: 28%;
  min-width: 160px;
  max-width: 320px;
  margin: 0;
  display: block;
}

#submitBtn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

#submitBtn.loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Primary SEND button */

.send-btn {
  width: 100%;
  margin-top: 24px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #1f4fd8, #163aa9);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(31, 79, 216, 0.25);
}

.send-btn:hover {
  background: linear-gradient(135deg, #2a5fff, #1f4fd8);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 79, 216, 0.35);
}

.send-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(31, 79, 216, 0.25);
}

.send-btn.loading {
  cursor: wait;
  opacity: 0.9;
}

.send-btn .btn-spinner {
  display: none;
  margin-left: 8px;
}

.send-btn.loading .btn-spinner {
  display: inline-block;
}
