:root {
  --blue: #0575e6;
  --blue-dark: #045bb8;
  --teal: #00c9a7;
  --teal-dark: #00a88a;
  --navy: #2f455c;
  --navy-dark: #1f3143;
  --bg: #ffffff;
  --tint: #eef3f8;
  --card: #ffffff;
  --text: #2f455c;
  --muted: #66798d;
  --border: #e2e9f0;
  --radius: 6px;
  --shadow: 0 12px 30px -14px rgba(47, 69, 92, 0.25);
  --maxw: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: inherit; color: var(--navy); line-height: 1.25; font-weight: 700; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.4rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6em;
}

.section-title { text-align: center; max-width: 720px; margin: 0 auto 20px; }
.section-title h2 { margin-bottom: 14px; }
.title-rule { width: 64px; height: 3px; background: var(--teal); margin: 0 auto 24px; border-radius: 2px; }
.section-title p { color: var(--muted); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-cta {
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  color: var(--navy-dark);
  font-size: 1.05rem;
  padding: 17px 30px;
  box-shadow: 0 16px 32px -10px rgba(0, 168, 138, 0.7);
}
.btn-cta:hover { background: linear-gradient(120deg, var(--teal), var(--teal-dark)); transform: translateY(-2px); box-shadow: 0 20px 38px -10px rgba(0, 168, 138, 0.8); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 80px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.icon-link:hover { background: var(--tint); color: var(--blue); }
.icon-link + .icon-link { margin-left: -14px; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; width: 38px; height: 38px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  text-decoration: none; color: var(--navy); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.03em; text-transform: uppercase;
  position: relative; padding: 8px 0;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--teal);
}

/* hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background-color: var(--navy-dark);
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,32,50,0.88), rgba(5,60,110,0.68));
}
.hero .wrap { position: relative; padding: 110px 24px 96px; text-align: center; }
.hero-split {
  background: linear-gradient(120deg, #1b2e43 0%, #274a6d 48%, #0b5a9c 100%);
}
.hero-split::before { display: none; }
.hero-split .wrap {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  padding-top: 80px; padding-bottom: 80px; text-align: left;
}
.hero-split-text {
  justify-self: start; max-width: 600px;
}
.hero-split h1 { margin: 0 0 0.5em; }
.hero-split p.lead { max-width: none; margin: 0 0 1.8em; }
.hero-split .hero-actions { justify-content: flex-start; }
.hero-portrait {
  width: 340px; max-width: 100%; height: auto; display: block;
  border-radius: 16px; box-shadow: 0 24px 55px rgba(0,0,0,0.4);
}
@media (max-width: 860px) {
  .hero-split .wrap {
    grid-template-columns: 1fr; justify-items: center; gap: 24px;
    text-align: center; padding-top: 44px; padding-bottom: 52px;
  }
  .hero-split-text { max-width: 540px; }
  .hero-split p.lead { margin-left: auto; margin-right: auto; }
  .hero-split .hero-actions { justify-content: center; }
  .hero-portrait { width: 240px; }
}
.hero-page .wrap { padding: 70px 24px; text-align: left; }
.hero h1 { color: #fff; max-width: 780px; margin: 0 auto 0.5em; }
.hero-page h1 { margin: 0 0 0.3em; }
.hero p.lead { max-width: 680px; margin-left: auto; margin-right: auto; font-size: 1.1rem; color: rgba(255,255,255,0.92); margin-bottom: 1.8em; }
.hero-page p.lead { margin-left: 0; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-page .hero-actions { justify-content: flex-start; }

.hero-slim {
  background: linear-gradient(120deg, var(--navy-dark), var(--blue));
  color: #fff;
}
.hero-slim .wrap { padding: 14px 24px; text-align: left; }
.hero-slim .eyebrow { display: none; }
.hero-slim h1 { font-family: Arial, Helvetica, sans-serif; font-weight: 700; font-size: 2.8rem; color: #fff; margin: 0; }

/* sections */
section { padding: 76px 0; }
section.tight { padding: 44px 0; }
.bg-tint { background: var(--tint); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .section-title p { color: rgba(255,255,255,0.75); }

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}

/* visa cards: image with accent corner + body */
.visa-card { display: flex; flex-direction: column; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.visa-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(15,32,50,0.16); }
.visa-card .thumb { position: relative; margin-bottom: 22px; }
.visa-card .thumb::after {
  content: ""; position: absolute; right: -10px; bottom: -10px; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal), var(--blue)); border-radius: var(--radius); z-index: 0;
}
.visa-card .thumb img { position: relative; z-index: 1; border-radius: var(--radius); height: 190px; width: 100%; object-fit: cover; }
.visa-illustration { position: relative; z-index: 1; display: block; border-radius: var(--radius); width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: contain; background: var(--tint); padding: 20px; }

.visa-card h3 { margin-bottom: 10px; font-size: 1.15rem; transition: color 0.2s ease; }
.visa-card:hover h3 { color: var(--blue); }
.visa-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* icon circle rows (why choose us / process) */
.icon-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
@media (max-width: 700px) { .icon-row { grid-template-columns: 1fr; } }
.icon-circle {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 18px;
  border: 2px solid var(--blue); display: flex; align-items: center; justify-content: center;
  color: var(--blue); background: #fff;
}
.icon-item h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.03em; }
.icon-item p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.steps { display: grid; gap: 32px 28px; grid-template-columns: repeat(3, 1fr); text-align: center; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* testimonials */
.testimonial-card { display: flex; flex-direction: column; gap: 14px; }
.testimonial-card .quote { font-style: italic; color: var(--text); margin: 0; }
.testimonial-card .quote p { margin: 0 0 12px; }
.testimonial-card .quote p:last-child { margin-bottom: 0; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-card .who strong { display: block; font-size: 0.92rem; }
.testimonial-card .who span { font-size: 0.82rem; color: var(--muted); }

/* facebook reviews */
.stars { display: flex; gap: 3px; color: #f5a623; }
.fb-rating-block { text-align: center; }
.fb-count { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.fb-snapshot { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.fb-snapshot .stars { justify-content: center; }
.testimonial-carousel { width: 100%; }
.testimonial-flat[hidden], .testimonial-expanded[hidden] { display: none; }
.testimonial-featured { max-width: 760px; margin: 0 auto 28px; }
.testimonial-featured .testimonial-card { padding: 32px; animation: tcFadeIn 0.4s ease; }
@keyframes tcFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.testimonial-others { min-height: 190px; }
.testimonial-pick {
  display: block; width: 100%; text-align: left; font: inherit; color: inherit;
  appearance: none; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-pick:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(15,32,50,0.16); }
.testimonial-pick .pick-hint {
  align-self: flex-start; color: var(--blue); font-weight: 700; font-size: 0.85rem; text-decoration: underline;
}
@media (max-width: 900px) { .testimonial-others { min-height: 340px; } }
@media (max-width: 600px) { .testimonial-others { min-height: 480px; } }
.fb-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.prose h2 { margin-top: 1.6em; }
.prose h3, .prose h4, .prose h5 { margin-top: 1.4em; }
.prose > :first-child { margin-top: 0; }
.prose h3, .prose h4 {
  color: var(--navy);
  text-decoration: underline; text-decoration-color: var(--teal); text-decoration-thickness: 2px; text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}
.prose h4 { font-size: 1.35rem; }
.prose h5 { font-size: 1.05rem; color: var(--navy); }
.prose p { margin: 0 0 1.1em; color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.3em; color: var(--text); }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--navy); }
.prose { max-width: 780px; }
.wrap > .prose { max-width: 820px; margin-left: auto; margin-right: auto; }

.about-photo {
  float: right; width: 300px; max-width: 42%; height: auto;
  border-radius: 16px; box-shadow: 0 14px 34px rgba(0,0,0,0.16);
  margin: 6px 0 14px 30px;
}
@media (max-width: 640px) {
  .about-photo { float: none; display: block; width: 100%; max-width: 340px; margin: 0 auto 20px; }
}

.cta-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 24px; }

.quote-mark { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--navy); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); margin: 12px 0 0; }

.notice {
  background: #fff6e0; border: 1px solid #f0e0ab; color: #6b551a;
  border-radius: var(--radius); padding: 16px 18px; font-size: 0.9rem; margin: 32px 0;
}

/* personal service stats band */
.bg-navy .btn-outline:hover { color: #fff; }
.stat-row { display: flex; gap: 32px; flex-wrap: wrap; }
.stat-item { flex: 1 1 140px; text-align: center; padding: 20px 12px; border-radius: var(--radius); background: rgba(255,255,255,0.06); }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.stat-footnote { font-size: 0.78rem; color: rgba(255,255,255,0.55); margin: 24px 0 0; }
.credential-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.credential-badge {
  flex: 1 1 160px; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius); padding: 10px 14px;
}
.credential-badge img { height: 34px; width: auto; }
.credential-badge span { font-size: 0.82rem; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* agent / about block */
.agent-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .agent-grid { grid-template-columns: 1fr; } }
.agent-photo { position: relative; }
.agent-photo::before {
  content: ""; position: absolute; left: -14px; top: -14px; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal), var(--blue)); border-radius: var(--radius); z-index: 0;
}
.agent-photo img { position: relative; z-index: 1; border-radius: var(--radius); width: 100%; object-fit: cover; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item {
  display: flex; gap: 14px; margin-bottom: 22px; align-items: center;
  color: inherit; text-decoration: none; border-radius: var(--radius); padding: 6px; margin-left: -6px;
  transition: background 0.15s ease;
}
a.contact-info-item:hover { background: var(--tint); }
.contact-info-item .icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--tint);
  display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0;
}
.contact-info-item .icon-whatsapp { color: #25d366; }
.contact-info-item strong { display: block; margin-bottom: 2px; color: var(--navy); }
.contact-info-item span { color: var(--muted); text-decoration: none; font-size: 0.95rem; }

form.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.form-status { font-size: 0.92rem; font-weight: 700; min-height: 1.4em; margin: 0; }
.form-status.success { color: #0a8a5f; }
.form-status.error { color: #c0392b; }

/* footer */
.site-footer { background: var(--tint); color: var(--navy); padding: 56px 0 24px; margin-top: 40px; }
.footer-brand { text-align: center; margin-bottom: 44px; }
.footer-brand img { height: 52px; width: auto; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 460px; margin: 0 auto; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }
.site-footer h4 { color: var(--navy); font-family: inherit; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: var(--blue); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }
.footer-badges img { height: 56px; width: auto; background: #fff; border-radius: 6px; padding: 5px 8px; border: 1px solid var(--border); }
.footer-badges-row { text-align: center; margin-bottom: 44px; }
.footer-credentials {
  border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  text-align: center; font-size: 0.85rem; color: var(--muted); line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 20px; padding-top: 20px;
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 0.82rem; color: var(--muted);
}

@media (max-width: 700px) {
  .brand img { height: 64px; }
  .header-actions .btn-blue { display: none; }
}

@media (max-width: 900px) {
  .main-nav { position: fixed; z-index: 100; top: 0; bottom: 0; left: 0; width: min(320px, 84vw); height: 100vh; background: var(--blue); flex-direction: column; padding: 100px 0 24px; gap: 0; align-items: stretch; transform: translateX(-100%); transition: transform 0.25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 16px 28px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .main-nav a.active { background: rgba(0,0,0,0.15); color: #fff; }
  .main-nav a.active::after { display: none; }
  .nav-toggle { display: flex; }
}

.whatsapp-float {
  position: fixed; z-index: 200; right: 24px; bottom: 24px;
  height: 68px; padding: 0 24px 0 18px; border-radius: 34px;
  background: #25D366; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.15s ease;
  text-decoration: none;
}
.whatsapp-float span { color: #fff; font-weight: 700; font-size: 1rem; white-space: nowrap; }
.whatsapp-float:hover { transform: scale(1.05); }
@media (max-width: 500px) { .whatsapp-float span { display: none; } .whatsapp-float { width: 68px; padding: 0; justify-content: center; } }

/* centred consultation popup (replaces the old sidebar CTA) */
.cta-popup-backdrop {
  position: fixed; inset: 0; z-index: 209;
  background: rgba(20, 30, 45, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.cta-popup-backdrop.visible { opacity: 1; pointer-events: auto; }
.cta-popup {
  position: fixed; z-index: 210;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 360px; max-width: calc(100vw - 40px);
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  padding: 30px 30px 26px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cta-popup.visible { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.cta-popup h3 { margin-bottom: 8px; }
.cta-popup p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.cta-popup .btn { width: 100%; justify-content: center; }
.cta-popup-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: 0; padding: 4px; line-height: 1;
  font-size: 1.5rem; color: var(--muted); cursor: pointer;
}
.cta-popup-close:hover { color: var(--navy); }
