:root {
  --blue: #073b8f;
  --blue-2: #0b55bf;
  --blue-3: #09265f;
  --gold: #d6aa3e;
  --gold-2: #f3d178;
  --ink: #142033;
  --muted: #667085;
  --soft: #f5f8fc;
  --white: #ffffff;
  --line: rgba(20, 32, 51, 0.12);
  --shadow: 0 24px 80px rgba(9, 38, 95, 0.16);
  --shadow-soft: 0 16px 44px rgba(9, 38, 95, 0.1);
  --glass: rgba(255, 255, 255, 0.76);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 170, 62, 0.08), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(7, 59, 143, 0.08), transparent 30%),
    var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, iframe { max-width: 100%; }
.container { width: min(1200px, calc(100% - 44px)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; overflow: hidden; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; }
h1, h2 { font-family: "Source Serif 4", Manrope, serif; font-weight: 800; }
h1 { font-size: clamp(3rem, 7vw, 6rem); max-width: 860px; }
h2 { font-size: clamp(2.1rem, 4vw, 3.55rem); }
h3 { font-size: 1.2rem; font-weight: 900; color: var(--blue-3); }
p { color: var(--muted); font-size: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(9, 38, 95, 0.08);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 260px; }
.brand-logo-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  padding: 3px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 59, 143, 0.18);
  border: 1px solid rgba(214, 170, 62, 0.24);
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; display: block; }
.brand strong { display: block; color: var(--blue-3); font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: 0.68rem; max-width: 240px; line-height: 1.2; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 0.9rem; font-weight: 700; color: var(--blue-3); }
.main-nav a { padding: 10px 0; position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: var(--blue); color: var(--white); border-radius: 8px; width: 44px; height: 44px; box-shadow: var(--shadow-soft); }

.hero { min-height: 850px; display: flex; align-items: center; color: var(--white); padding-top: 128px; }
.hero-bg, .image-tile, .finance-visual {
  background-size: cover;
  background-position: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1900&q=88");
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 27, 71, 0.94) 0%, rgba(7, 59, 143, 0.78) 46%, rgba(7, 59, 143, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 27, 71, 0.7), rgba(5, 27, 71, 0.1));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 420px;
  align-items: center;
  gap: 52px;
}
.hero-copy { position: relative; }
.hero-copy::before {
  content: "";
  position: absolute;
  left: -26px;
  top: -28px;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-subtitle { color: rgba(255, 255, 255, 0.88); font-size: 1.28rem; max-width: 620px; }
.hero-actions, .pill-wrap { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border-radius: 8px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transition: transform 0.55s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,0,0,0.16); }
.btn:hover::after { transform: translateX(120%) skewX(-18deg); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #1f2937; }
.btn-light { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.34); }
.btn-blue { background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: var(--white); }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 18px;
  max-width: 720px;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.93);
  font-weight: 750;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.trust-list svg, .why-grid svg, .service-card svg { color: var(--gold); flex: 0 0 auto; }

.lead-panel, .enquiry-card, .contact-form, .values {
  background: var(--glass);
  color: var(--ink);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.68);
  backdrop-filter: blur(18px) saturate(142%);
}
.panel-label { display: inline-flex; padding: 7px 10px; background: #eef4ff; color: var(--blue); border-radius: 999px; font-weight: 800; font-size: 0.78rem; }
form { display: grid; gap: 12px; }
.netlify-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(9, 38, 95, 0.16);
  border-radius: 8px;
  min-height: 46px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(214,170,62,0.85); box-shadow: 0 0 0 4px rgba(214,170,62,0.14); }
input.field-invalid, select.field-invalid, textarea.field-invalid {
  border-color: #c53d4c;
  box-shadow: 0 0 0 4px rgba(197,61,76,0.1);
}
.field-error {
  display: block;
  margin: -6px 2px 2px;
  color: #b42332;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}
.form-status {
  display: none;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  color: #176b41;
  background: #eaf8f0;
  border: 1px solid rgba(23,107,65,0.2);
}
.form-status.is-error {
  color: #a52434;
  background: #fff0f2;
  border: 1px solid rgba(165,36,52,0.18);
}
form .btn:disabled {
  cursor: wait;
  opacity: 0.74;
  transform: none;
  box-shadow: none;
}
form .btn[data-submitting="true"]::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: form-submit-spin 0.7s linear infinite;
}
form .btn[data-submitting="true"]::after { display: none; }
@keyframes form-submit-spin { to { transform: rotate(360deg); } }
textarea { min-height: 108px; resize: vertical; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-preview, .detail-page, .faq { background: var(--soft); }
.image-tile {
  min-height: 460px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background-image: url("https://images.unsplash.com/photo-1560520653-9e0e4c89eb11?auto=format&fit=crop&w=1300&q=88");
  border: 1px solid rgba(255,255,255,0.8);
}
.section-heading { max-width: 850px; margin: 0 auto 50px; text-align: center; }
.service-grid, .detail-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card, .detail-card, .blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(9,38,95,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.service-card::before, .detail-card::before, .blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(214,170,62,0));
  opacity: 0;
  transition: opacity 0.24s ease;
}
.service-card:hover, .detail-card:hover, .blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(214, 170, 62, 0.45);
}
.service-card:hover::before, .detail-card:hover::before, .blog-card:hover::before { opacity: 1; }
.service-card svg { width: 38px; height: 38px; margin-bottom: 18px; padding: 8px; border-radius: 8px; background: rgba(214,170,62,0.1); }

.why { background: linear-gradient(135deg, var(--blue-3), var(--blue)); color: var(--white); }
.why p, .why .eyebrow { color: rgba(255,255,255,0.82); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.why-grid div {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 750;
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.why-grid div:hover { transform: translateY(-4px); background: rgba(255,255,255,0.14); border-color: rgba(214,170,62,0.36); }
.why-grid.compact { grid-template-columns: repeat(2, 1fr); margin-top: 26px; }
.stats { padding: 64px 0; background: linear-gradient(135deg, var(--gold), var(--gold-2)); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stat-grid div { padding: 24px 16px; border-radius: 8px; background: rgba(255,255,255,0.32); border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 12px 34px rgba(9,38,95,0.08); }
.stat-grid strong { display: block; font-size: clamp(2rem, 4vw, 3rem); color: var(--blue-3); line-height: 1; }
.stat-grid span { color: rgba(20,32,51,0.75); font-weight: 800; }

.values { display: grid; gap: 18px; }
.values ul { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.values li, .pill-wrap span {
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  padding: 9px 13px;
  font-weight: 800;
  font-size: 0.9rem;
}
.detail-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.wide-form {
  grid-template-columns: 1.2fr repeat(3, 1fr) auto;
  align-items: end;
  margin-top: 28px;
  background: var(--blue-3);
  padding: 22px;
  border-radius: 8px;
}
.wide-form h3 { color: var(--white); }
.wide-form .form-status { grid-column: 1 / -1; }

.travel { background: linear-gradient(135deg, #ffffff, #eef4ff); }
.finance-visual {
  min-height: 460px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background-image: url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=1300&q=88");
  border: 1px solid rgba(255,255,255,0.78);
}
.investment-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.investment-visuals div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,252,0.94));
  border: 1px solid rgba(9,38,95,0.1);
  box-shadow: var(--shadow-soft);
  color: var(--blue-3);
  font-weight: 900;
}
.investment-visuals svg { color: var(--gold); width: 28px; height: 28px; }
.partners {
  background:
    linear-gradient(180deg, rgba(245,248,252,0.8), rgba(255,255,255,0.96)),
    var(--white);
}
.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 24px;
  animation: marquee 42s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.partner-logo {
  min-width: 188px;
  min-height: 96px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 16px 14px;
  border: 1px solid rgba(9,38,95,0.1);
  border-radius: 8px;
  color: var(--blue-3);
  background: linear-gradient(180deg, #fff, #f7f9fd);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 34px rgba(9,38,95,0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.partner-logo img {
  max-width: 138px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) saturate(0.72) contrast(1.02);
  opacity: 0.78;
  transition: filter 0.26s ease, opacity 0.26s ease, transform 0.26s ease;
}
.partner-logo em {
  display: block;
  font-style: normal;
  font-size: 0.74rem;
  line-height: 1.2;
  color: var(--muted);
}
.partner-logo.logo-fallback em { color: var(--blue-3); font-size: 0.82rem; }
.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(214,170,62,0.42);
}
.partner-logo:hover img { filter: grayscale(0) saturate(1) contrast(1); opacity: 1; transform: scale(1.04); }
.logo-note { text-align: center; font-size: 0.92rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testimonial-slider { position: relative; min-height: 250px; }
.testimonial {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,248,252,0.95));
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(9,38,95,0.08);
}
.testimonial.active { display: block; animation: fadeIn 0.4s ease; }
.testimonial p { font-size: 1.15rem; color: var(--ink); }
.testimonial span { display: block; color: var(--muted); }
.accordion { max-width: 850px; margin: 0 auto; display: grid; gap: 10px; }
.accordion button {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: inherit;
  font-weight: 850;
  color: var(--blue-3);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.accordion button:hover, .accordion button.active { border-color: rgba(214,170,62,0.45); box-shadow: var(--shadow-soft); }
.accordion div { display: none; padding: 0 18px 16px; }
.accordion button.active + div { display: block; }

.contact {
  background:
    linear-gradient(135deg, rgba(9,38,95,0.96), rgba(7,59,143,0.92)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=86") center/cover;
  color: var(--white);
}
.contact p, .contact a { color: rgba(255,255,255,0.86); }
.contact-grid { display: grid; grid-template-columns: 1fr 460px; gap: 52px; align-items: start; }
.map-embed { overflow: hidden; border-radius: 8px; margin-top: 24px; border: 1px solid rgba(255,255,255,0.16); }
.map-embed iframe { width: 100%; height: 270px; border: 0; display: block; filter: saturate(0.88); }
.newsletter { padding: 46px 0; background: var(--soft); }
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.newsletter form { grid-template-columns: minmax(220px, 340px) auto; }
.newsletter form .form-status { grid-column: 1 / -1; }

.site-footer { background: #061b45; color: var(--white); padding: 58px 0 96px; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.5fr auto; gap: 28px; align-items: start; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,0.74); }
.footer-grid nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 4px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
  border: 1px solid rgba(214,170,62,0.36);
  margin-bottom: 14px;
}
.developer-credit {
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.56) !important;
}
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); transition: transform 0.2s ease, background 0.2s ease; }
.socials a:hover { transform: translateY(-3px); background: rgba(214,170,62,0.18); }

.sticky-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.sticky-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 850;
  white-space: nowrap;
}
.sticky-actions a:nth-child(2) { background: var(--gold); color: #1f2937; }
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 61;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 22px 50px rgba(37, 211, 102, 0.42); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    inset: 75px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .lead-panel { max-width: 560px; }
  .service-grid, .detail-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-form { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .investment-visuals { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 68px 0; }
  .hero { min-height: 920px; padding-top: 92px; }
  .brand small { display: none; }
  .brand-logo-wrap { width: 50px; height: 50px; }
  .brand { min-width: auto; }
  .trust-list, .service-grid, .detail-grid, .blog-grid, .why-grid, .why-grid.compact, .stat-grid, .wide-form, .newsletter form, .partner-grid, .investment-visuals { grid-template-columns: 1fr; }
  .partner-logo { min-width: 160px; }
  .logo-track { animation-duration: 32s; }
  .newsletter-box { align-items: stretch; flex-direction: column; }
  .sticky-actions { left: 12px; right: 12px; transform: none; justify-content: center; }
  .sticky-actions a { flex: 1; justify-content: center; font-size: 0.82rem; padding: 11px 8px; }
  .whatsapp-float { right: 16px; bottom: 88px; width: 50px; height: 50px; }
}
