/* ============================================================
   A To Z Passport Services — landing page styles
   Re-theme everything from :root below.
   ============================================================ */
:root {
  --ink:      #14282b;
  --teal:     #0f6e6e;
  --teal-dk:  #0b5555;
  --accent:   #e8a33d;
  --accent-dk:#cf8a24;
  --sand:     #f6f3ec;
  --paper:    #ffffff;
  --line:     #e3ded3;
  --muted:    #5c6b6c;

  --radius:   16px;
  --shadow:   0 18px 40px rgba(20, 40, 43, .10);
  --font-body:"Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  margin: 0;
}
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -.02em; }
a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- buttons ---------- */
.btn { border-radius: 999px; font-weight: 600; padding: .6rem 1.4rem; }
.btn-accent { background: var(--accent); color: var(--ink); border: none; }
.btn-accent:hover { background: var(--accent-dk); color: var(--ink); }
.btn-outline-ink { border: 1.5px solid var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }

/* ---------- disclaimer bar ---------- */
.disclaimer-bar {
  background: var(--ink);
  color: #e9efef;
  font-size: .82rem;
  line-height: 1.5;
  padding: .55rem 0;
}
.disclaimer-bar a { color: var(--accent); text-decoration: underline; }
.disclaimer-bar strong { color: #fff; }

/* ---------- navbar ---------- */
.site-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  padding: .6rem 0;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal); color: #fff; font-weight: 800; font-size: 1rem;
}
.brand-text { color: var(--ink); font-weight: 800; line-height: 1.05; }
.brand-text em { display: block; font-style: normal; font-weight: 500; font-size: .72rem; color: var(--muted); }
.site-nav .nav-link { color: var(--ink); font-weight: 500; }
.site-nav .nav-link:hover { color: var(--teal); }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(15,110,110,.10), transparent 60%),
    var(--sand);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .16em;
  font-size: .74rem; font-weight: 700; color: var(--teal); margin-bottom: .6rem;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.05; margin-bottom: 1rem; }
.hero .lead { color: var(--muted); font-size: 1.08rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 1rem; }
.hero-note { font-size: .82rem; color: var(--muted); }
.hero-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff;
}
.hero-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- trust marquee ---------- */
.trust-strip { background: var(--teal); color: #eafafa; padding: .9rem 0; }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 1.6rem; align-items: center; will-change: transform; }
.marquee-track span { font-weight: 600; font-size: .95rem; opacity: .9; }

/* ---------- compliance callout ---------- */
.compliance-callout { background: #fff8ec; border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.callout-box {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--accent); border-left: 5px solid var(--accent);
  border-radius: 14px; padding: 1.3rem 1.4rem; box-shadow: 0 6px 18px rgba(20,40,43,.05);
}
.callout-box .ic {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px;
  background: var(--accent); color: var(--ink); display: grid; place-items: center;
  font-weight: 800; font-style: italic; font-size: 1.15rem;
}
.callout-box p { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--ink); }
.callout-box strong { color: var(--teal-dk); }
.callout-box a { color: var(--teal); text-decoration: underline; }

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-alt { background: var(--sand); }
.section-head { max-width: 42rem; margin: 0 auto 2.4rem; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.section-sub { color: var(--muted); margin-top: .6rem; }

/* ---------- service cards ---------- */
.service-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1rem 1.2rem; height: 100%;
  box-shadow: 0 6px 18px rgba(20,40,43,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: 12px; margin-bottom: 1rem; background: var(--sand);
}
.service-card h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.service-card p { color: var(--muted); font-size: .94rem; margin-bottom: 1rem; }

/* ---------- steps ---------- */
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem; height: 100%;
}
.step-no {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: var(--accent); color: var(--ink);
  font-weight: 800; font-size: 1.15rem; margin-bottom: .9rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- why us ---------- */
.tick-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.tick-list li { position: relative; padding-left: 1.9rem; margin-bottom: .8rem; color: var(--ink); }
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: .8rem;
  display: grid; place-items: center;
}
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.why-item {
  background: var(--sand); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
}
.why-item .stat { display: block; font-size: 1.6rem; font-weight: 800; color: var(--teal); line-height: 1.15; }
.why-item p { margin: .3rem 0 0; color: var(--muted); font-size: .9rem; }

/* ---------- CTA ---------- */
.cta-section { background: var(--sand); }
.cta-box {
  background: var(--ink); color: #eef4f4;
  border-radius: 22px; padding: clamp(1.8rem, 4vw, 3rem);
}
.cta-box h2 { color: #fff; }
.cta-box p { color: #b9c9c9; margin: .4rem 0 0; }
.cta-box .btn { margin: .3rem .3rem 0 0; }

/* ---------- footer ---------- */
.site-footer { background: #0d1c1e; color: #b8c6c6; padding: 3rem 0 1.4rem; font-size: .92rem; }
.footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 700; margin-bottom: .8rem; }
.footer-about { color: #8fa2a2; max-width: 22rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: .7rem; }
.site-footer a { color: #cdd9d9; }
.site-footer a:hover { color: var(--accent); }
.footer-links a { text-decoration: underline; }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2rem; padding-top: 1.4rem; font-size: .8rem; color: #8fa2a2; line-height: 1.6;
}
.footer-disclaimer strong { color: #dfe8e8; }
.footer-disclaimer a { color: var(--accent); text-decoration: underline; }
.copyright { margin: 1.2rem 0 0; font-size: .82rem; color: #6f8181; }

/* ---------- floating buttons ---------- */
.float-btn {
  position: fixed; bottom: 22px; z-index: 1030;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow);
}
.float-wa   { left: 18px;  background: #25d366; }
.float-call { right: 18px; background: var(--teal); }
.float-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}
.float-wa::after   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
.float-call::after { box-shadow: 0 0 0 0 rgba(15,110,110,.55); }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 16px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-btn::after { animation: none; }
}
@media(max-width:767px)
{
	#why{
		overflow-x:hidden;
	}
}
/* ---------- responsive ---------- */
@media (max-width: 575px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-box .btn { width: 100%; margin-right: 0; }
}
