/* ==========================================================================
   Aamer Travels Services — Overseas Recruitment Consultancy
   All colors live here as CSS custom properties for easy retheming.
   ========================================================================== */

:root {
  --ink: #0a2540;
  --ink-2: #143a63;
  --accent: #e39a2b;
  --accent-deep: #c57f16;
  --accent-soft: #fbeecf;
  --sand: #f7f2e8;
  --paper: #ffffff;
  --text: #26343f;
  --muted: #5b6b7c;
  --line: #e5e9ee;
  --wa: #25d366;
  --wa-deep: #128c7e;
  --shadow-sm: 0 4px 14px rgba(10, 37, 64, .06);
  --shadow-md: 0 14px 40px rgba(10, 37, 64, .10);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ff-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* Preserve sticky header without breaking horizontal scroll */
html, body {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

a { text-decoration: none; }

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

.container-x {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 84px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.sec-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.sec-head p { color: var(--muted); font-size: 1.04rem; margin: 0; }

/* ---------- Buttons ---------- */
.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1;
}
.btn-x svg { width: 18px; height: 18px; }
.btn-primary-x { background: var(--accent); color: #3a2600; box-shadow: 0 10px 24px rgba(227, 154, 43, .35); }
.btn-primary-x:hover { transform: translateY(-2px); background: var(--accent-deep); color: #fff; }
.btn-ghost-x { background: transparent; color: var(--ink); border-color: rgba(10, 37, 64, .18); }
.btn-ghost-x:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light-x { background: #fff; color: var(--ink); }
.btn-light-x:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa-x { background: var(--wa); color: #063d2f; }
.btn-wa-x:hover { transform: translateY(-2px); background: var(--wa-deep); color: #fff; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfe0f2;
  font-size: .84rem;
}
.topbar .container-x {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 42px; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: #eaf2fb; font-weight: 600; }
.topbar .tb-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.topbar .tb-badge { color: var(--accent); font-weight: 700; letter-spacing: .02em; }
.topbar .tb-contacts { display: flex; gap: 18px; align-items: center; }
.topbar .tb-contacts a { display: inline-flex; align-items: center; gap: 6px; }
.topbar svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, padding .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff; display: grid; place-items: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.15rem;
  border: 1px solid rgba(255,255,255,.15);
}
.brand-name { font-family: var(--ff-display); font-weight: 800; color: var(--ink); font-size: 1.08rem; line-height: 1.1; }
.brand-name small { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .95rem; position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .22s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 82% -8%, rgba(227,154,43,.20), transparent 60%),
    linear-gradient(160deg, var(--ink) 0%, #0e2c4d 48%, #123a63 100%);
  color: #eaf2fb;
  overflow: hidden;
  padding: 76px 0 96px;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; pointer-events: none;
}
.hero .container-x { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  padding: 7px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700;
  color: #ffe6b8; margin-bottom: 20px; letter-spacing: .04em;
}
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.35rem); margin-bottom: 18px; }
.hero h1 .hl { color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: #c8d8ea; max-width: 560px; margin-bottom: 26px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 15px; border-radius: 999px; font-size: .9rem; font-weight: 600; color: #eaf2fb;
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-note { font-size: .84rem; color: #9fb4cc; display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; flex: none; color: var(--accent); }

.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; backdrop-filter: blur(6px);
}
.hero-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.hero-card > p { color: #b9cade; font-size: .9rem; margin-bottom: 18px; }
.hero-form .fg { margin-bottom: 12px; }
.hero-form input, .hero-form select, .hero-form textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.95);
  color: var(--ink); font-family: var(--ff-body); font-size: .95rem;
}
.hero-form input::placeholder, .hero-form textarea::placeholder { color: #7c8aa0; }
.hero-form button { width: 100%; justify-content: center; margin-top: 4px; }
.hero-form .consent { display: flex; gap: 8px; align-items: flex-start; font-size: .76rem; color: #b9cade; margin: 6px 0 10px; }
.hero-form .consent a { color: var(--accent); text-decoration: underline; }
.server_response { font-size: .85rem; margin-top: 10px; color: #ffe6b8; }

/* ---------- Disclaimer ribbon (KEY for policy) ---------- */
.disclaimer-ribbon {
  background: var(--accent-soft);
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid #eddcb3;
}
.disclaimer-ribbon .container-x { display: flex; gap: 14px; align-items: flex-start; padding-top: 16px; padding-bottom: 16px; }
.disclaimer-ribbon svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; margin-top: 2px; }
.disclaimer-ribbon p { margin: 0; font-size: .92rem; color: #5c4611; }
.disclaimer-ribbon strong { color: #3a2c07; }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; padding: 12px 0; }
.marquee-track span {
  color: #dbe7f5; font-weight: 600; font-size: .92rem; padding: 0 28px;
  display: inline-flex; align-items: center; gap: 12px;
}
.marquee-track span::after { content: "•"; color: var(--accent); }

/* ---------- About ---------- */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-checks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.about-checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--ink); }
.about-checks svg { width: 22px; height: 22px; color: var(--accent-deep); flex: none; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
}
.stat-card .num { font-family: var(--ff-display); font-weight: 800; font-size: 2.2rem; color: var(--ink); line-height: 1; }
.stat-card .num .suf { color: var(--accent-deep); }
.stat-card .lbl { color: var(--muted); font-size: .9rem; margin-top: 6px; font-weight: 600; }
.stat-card.dark { background: linear-gradient(150deg, var(--ink), var(--ink-2)); border: none; }
.stat-card.dark .num, .stat-card.dark .num .suf { color: #fff; }
.stat-card.dark .lbl { color: #b9cade; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-soft); }
.svc-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep); margin-bottom: 16px;
}
.svc-ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Countries ---------- */
.countries { background: var(--sand); }
.ctry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ctry-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.ctry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ctry-top { padding: 22px 22px 12px; display: flex; align-items: center; gap: 12px; }
.ctry-flag {
  width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--sand); border: 1px solid var(--line);
}
.ctry-top h3 { font-size: 1.12rem; margin: 0; }
.ctry-top .cap { font-size: .78rem; color: var(--muted); font-weight: 600; }
.ctry-body { padding: 4px 22px 22px; }
.ctry-body .lead { font-size: .84rem; font-weight: 700; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.ctry-body ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.ctry-body li { background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; font-size: .82rem; font-weight: 600; color: var(--ink); }

/* ---------- Process ---------- */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.proc-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 24px;
}
.proc-num {
  position: absolute; top: -18px; left: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: #3a2600; font-family: var(--ff-display);
  font-weight: 800; font-size: 1.2rem; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(227,154,43,.35);
}
.proc-card h3 { font-size: 1.08rem; margin: 12px 0 8px; }
.proc-card p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- Fees (transparency) ---------- */
.fees { background: linear-gradient(150deg, var(--ink), #0e2c4d); color: #eaf2fb; }
.fees .sec-head h2 { color: #fff; }
.fees .sec-head p { color: #c8d8ea; }
.fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fee-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px 22px;
}
.fee-card svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 14px; }
.fee-card h3 { color: #fff; font-size: 1.08rem; margin-bottom: 8px; }
.fee-card p { color: #c8d8ea; font-size: .93rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q {
  width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  padding: 18px 20px; font-family: var(--ff-display); font-weight: 700; color: var(--ink);
  font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .ico { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; transition: transform .2s ease; font-weight: 800; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { padding: 0 20px 18px; margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Testimonials ---------- */
.testi { background: var(--sand); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 10px; }
.testi-card p { color: var(--text); font-size: .96rem; margin-bottom: 16px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testi-who b { display: block; color: var(--ink); font-size: .95rem; }
.testi-who span { color: var(--muted); font-size: .82rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-md); }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--muted); margin-bottom: 20px; }
.cf .fg { margin-bottom: 14px; }
.cf label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.cf input, .cf select, .cf textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); font-family: var(--ff-body); font-size: .95rem; color: var(--ink); background: #fff;
}
.cf input:focus, .cf select:focus, .cf textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.cf .consent { display: flex; gap: 9px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin: 4px 0 16px; }
.cf .consent a { color: var(--accent-deep); text-decoration: underline; }
.cf button { width: 100%; justify-content: center; }

.contact-info { background: linear-gradient(155deg, var(--ink), var(--ink-2)); border-radius: var(--radius); padding: 34px; color: #eaf2fb; }
.contact-info h3 { color: #fff; font-size: 1.4rem; margin-bottom: 20px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ci-item svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.ci-item h5 { color: #fff; font-size: .95rem; margin: 0 0 3px; }
.ci-item p, .ci-item a { color: #c8d8ea; font-size: .93rem; margin: 0; word-break: break-word; }
.ci-item a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: #06192e; color: #b9cade; padding: 56px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
.foot-brand .brand-name, .foot-brand .brand-name small { color: #fff; }
.foot-brand p { color: #92a7c1; font-size: .92rem; margin: 16px 0 0; max-width: 340px; }
.foot-col h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { color: #b9cade; font-size: .92rem; }
.foot-col a:hover { color: var(--accent); }
.foot-disclaimer { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: .82rem; color: #7e93ae; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .85rem; color: #7e93ae; }
.foot-bottom a { color: #b9cade; }

/* ---------- Floating buttons ---------- */
.float-btn { position: fixed; bottom: 22px; z-index: 950; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: #fff; }
.float-btn svg { width: 28px; height: 28px; }
.float-wa { left: 20px; background: var(--wa); }
.float-call { right: 20px; background: var(--accent); color: #3a2600; }
.float-btn::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; z-index: -1;
  animation: pulse 2s infinite;
}
.float-wa::before { background: var(--wa); }
.float-call::before { background: var(--accent); }
@keyframes pulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; bottom: 90px; right: 20px; z-index: 940; width: 44px; height: 44px; border-radius: 12px; background: var(--ink); color: #fff; border: none; display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transition: opacity .25s ease, transform .25s ease; }
.to-top svg { width: 20px; height: 20px; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Legal pages ---------- */
.legal-hero { background: linear-gradient(150deg, var(--ink), var(--ink-2)); color: #fff; padding: 60px 0; }
.legal-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-hero p { color: #c8d8ea; margin: 8px 0 0; }
.legal-body { padding: 56px 0; }
.legal-body .container-x { max-width: 860px; }
.legal-body h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--text); margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; }
.legal-note { background: var(--accent-soft); border-left: 4px solid var(--accent); padding: 16px 18px; border-radius: 8px; margin: 20px 0; color: #5c4611; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-deep); font-weight: 700; margin-bottom: 24px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
   .cu-lg-wdth{
	   width:120px;
	   margin-top:5px;
	   margin-bottom:5px;
   }
   .cu-glr{
	   margin-bottom:30px;
   }
   .cu-glr img{
   width:100%;
   border-radius:10px;
   }
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-grid, .fees-grid, .proc-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .ctry-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .topbar .tb-left .hide-mob { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 16px 20px; gap: 14px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .section { padding: 64px 0; }
}
@media (max-width: 767px) {
.cu-jf-cntr{
	justify-content:center!important
}
.topbar .container-x{
	padding-top:5px;
	padding-bottom:5px;
}
}

@media (max-width: 600px) {
  .svc-grid, .fees-grid, .proc-grid, .testi-grid, .ctry-grid, .foot-grid, .about-visual { grid-template-columns: 1fr; }
  .topbar .tb-contacts { gap: 12px; }
  .hero { padding: 56px 0 72px; }
  .nav-cta .btn-x span.txt { display: none; }
  .proc-grid { gap: 34px; }
  .float-btn { width: 52px; height: 52px; }
}
