/* ============================================================
   Vijay Global — main.css
   Base resets + keyframes + responsive rules carried over from
   the original design, plus :hover classes that replace the
   design tool's style-hover attributes.
   ============================================================ */

* { box-sizing: border-box; }
/* overflow-x: hidden contains the decorative floating shapes' horizontal
   bleed. It's on body, not html: html's overflow controls the actual
   browser viewport's scroll mechanism, so overflow-y there (even just
   hidden/clip) disables page scrolling entirely — this must stay off
   the y-axis and off <html>. Kept off .vg-root too, since overflow other
   than visible on a nested div disqualifies it as the reference frame
   for position: sticky in Chromium, which broke the sticky nav. */
body { margin: 0; overflow-x: hidden; }
::selection { background: #1366b8; color: #fff; }

/* ---------- Custom scrollbar (overrides OS/browser default look) ---------- */
/* scrollbar-gutter keeps the track space reserved at all times, so a page
   whose height crosses the viewport threshold while fonts/images are still
   loading doesn't shift content sideways when the scrollbar toggles on. */
html { scrollbar-width: thin; scrollbar-color: #1366b8 #e2e7ee; scrollbar-gutter: stable; scroll-behavior: smooth; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #e2e7ee; }
::-webkit-scrollbar-thumb { background: #1366b8; border-radius: 100px; border: 2px solid #e2e7ee; }
::-webkit-scrollbar-thumb:hover { background: #0d4f8f; }
::-webkit-scrollbar-button,
::-webkit-scrollbar-button:single-button,
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-corner {
  display: none;
  height: 0;
  width: 0;
  background: transparent;
}

.vg-root {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: #0a2540;
  background: #f6f4ee;
}

/* ---------- Keyframes ---------- */
@keyframes nova-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nova-bob { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(-6deg); } }
@keyframes nova-floata { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(24px,-30px) rotate(18deg); } }
@keyframes nova-floatb { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-26px,24px) rotate(-16deg); } }
@keyframes nova-spin { to { transform: rotate(360deg); } }
@keyframes nova-pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes nova-blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes nova-hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nova-icon-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- Hover utilities (replace style-hover attributes) ---------- */
.nav-link { transition: background .2s ease; }
.nav-link:hover { background: rgba(10,37,64,.06); }

.btn-primary { transition: background .2s ease; }
.btn-primary:hover { background: #0d4f8f; }

.btn-lift { transition: transform .2s, box-shadow .2s, background .2s; }
.btn-lift:hover { background: #0d4f8f; transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(19,102,184,.6); }

.btn-outline { transition: transform .2s, background .2s, color .2s; }
.btn-outline:hover { background: #0a2540; color: #fff; transform: translateY(-3px); }

.btn-dark { transition: background .2s ease; }
.btn-dark:hover { background: #08203a; }

.btn-light { transition: background .2s ease; }
.btn-light:hover { background: #fff; }

.mega-link { transition: color .2s ease; }
.mega-link:hover { color: #1366b8; }
.mega-link-dark:hover { color: #4aa3e8; }

.mega-card { transition: background .2s ease; }
.mega-card.is-light:hover { background: #dce8f5; }
.mega-card.is-company:hover { background: #e7eef6; }

.tag { transition: background .2s ease, color .2s ease; }
.tag.is-light:hover { background: #cfe0f2; color: #0a2540; }

.stat-item { transition: transform .25s ease; }
.stat-item:hover { transform: translateY(-6px); }

.service-card { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.service-card:hover { transform: translateY(-10px); border-color: #1366b8; box-shadow: 0 30px 54px -22px rgba(19,102,184,.5); }
.service-card.is-dark:hover { transform: translateY(-10px); box-shadow: 0 30px 54px -22px rgba(19,102,184,.7); }

.reason-row { transition: background .3s ease, transform .3s ease; }
.reason-row:hover { background: rgba(74,163,232,.08); transform: translateX(8px); }

.industry-row { transition: background .3s ease, transform .3s ease, box-shadow .3s ease; }
.industry-row:hover { background: #eef3f9; transform: translateX(8px); box-shadow: 0 16px 32px -24px rgba(10,37,64,.35); }

.testimonial-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -24px rgba(10,37,64,.32); border-color: #1366b8; }

.faq-item { transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item:hover { border-color: #1366b8; box-shadow: 0 12px 26px -18px rgba(19,102,184,.4); }

.footer-link { transition: color .2s ease; }
.footer-link:hover { color: #4aa3e8; }

.footer-bottom-link { transition: color .2s ease; }
.footer-bottom-link:hover { color: #fff; }

/* ---------- Responsive (carried from the design) ---------- */
@media (max-width: 900px){
  [data-navlinks]{ display:none !important; }
  [data-navcta]{ display:none !important; }
  [data-burger]{ display:flex !important; }
}
@media (max-width: 820px){
  .vg-root h1{ font-size:46px !important; letter-spacing:-1px !important; }
  .vg-root h2{ font-size:32px !important; letter-spacing:-.5px !important; }
  [style*="repeat(3,"]{ grid-template-columns:1fr !important; }
  [style*="repeat(4,"]{ grid-template-columns:repeat(2,1fr) !important; }
  [style*="repeat(5,"]{ grid-template-columns:repeat(2,1fr) !important; }
  [style*="grid-template-columns: 1.4fr 1fr"]{ grid-template-columns:1fr !important; gap:26px !important; }
  /* Hero two-column with image → single column on tablet/mobile */
  [style*="grid-template-columns:1fr 1fr"]{ grid-template-columns:1fr !important; gap:32px !important; }
  [style*="1.6fr 1fr 1fr 1fr"]{ grid-template-columns:repeat(2,1fr) !important; gap:28px !important; }
  [style*="padding: 60px 32px 40px"]{ padding:40px 20px 24px !important; }
  [style*="padding: 44px 48px"]{ padding:30px 22px !important; }
  [style*="padding: 72px 56px"]{ padding:44px 24px !important; }
  [style*="padding: 84px 32px"]{ padding:52px 22px !important; }
  /* Hero buttons wrap on tablet too */
  .vg-hero-btns{ flex-wrap:wrap; }
}
@media (max-width: 640px){
  [data-indrow]{ grid-template-columns:38px 1fr 30px !important; gap:14px !important; padding-left:6px !important; padding-right:6px !important; }
  [data-inddesc]{ display:none !important; }
  [data-indname]{ font-size:20px !important; }

  /* Hero two-column → single column when hero image is present */
  [style*="grid-template-columns:1fr 1fr"]{ grid-template-columns:1fr !important; gap:28px !important; }

  /* Hero buttons: stack full-width so neither is clipped */
  .vg-hero-btns{ flex-direction:column !important; }
  .vg-hero-btns .btn-lift,
  .vg-hero-btns .btn-outline{ width:100% !important; text-align:center !important; box-sizing:border-box !important; white-space:normal !important; }
}
@media (max-width: 480px){
  .vg-root h1{ font-size:35px !important; }
  [style*="repeat(5,"]{ grid-template-columns:repeat(2,1fr) !important; }
  [style*="1.6fr 1fr 1fr 1fr"]{ grid-template-columns:1fr !important; }
}

/* ---- Services hub: section header with optional feature image ---- */
.srv-sec-hdr { display:flex; align-items:center; gap:40px; flex-wrap:wrap; margin-bottom:40px; }
.srv-sec-hdr-text { flex:1; min-width:260px; }
.srv-sec-hdr-img { flex:0 0 400px; max-width:100%; height:290px; object-fit:cover; border-radius:20px; display:block; box-shadow:0 28px 54px -20px rgba(10,37,64,.22); }
.srv-sec-hdr-img.is-dark { box-shadow:0 28px 54px -20px rgba(74,163,232,.28), 0 0 0 1px rgba(74,163,232,.12); }

/* ---- Services hub: card icon image (replaces symbol) ---- */
.srv-card-img { width:68px; height:68px; object-fit:cover; border-radius:14px; display:block; margin-bottom:18px; flex-shrink:0; }
.is-dark .srv-card-img { border-radius:12px; box-shadow:0 0 0 1.5px rgba(74,163,232,.25); }

/* ---- Services hub: inline SVG icon wrapper ---- */
.srv-sub-card svg { display:block; width:52px; height:52px; flex-shrink:0; }
.srv-sub-card.is-dark svg { opacity:.92; }

@media (max-width: 820px) {
  .srv-sec-hdr-img { flex:0 0 100%; height:200px; order:-1; }
}

/* ---- Services hub: sub-service cards ---- */
.srv-sub-card { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.srv-sub-card:hover { transform: translateY(-8px); border-color: #1366b8 !important; box-shadow: 0 24px 48px -18px rgba(19,102,184,.4); }
.srv-sub-card.is-dark { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s; }
.srv-sub-card.is-dark:hover { transform: translateY(-8px); border-color: rgba(74,163,232,.55) !important; box-shadow: 0 24px 48px -18px rgba(74,163,232,.4); }

/* ---- Services hub: responsive grids ---- */
.srv-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.srv-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

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

/* ---- Services hub: engagement model section ---- */
.engage-card { transition: transform .25s ease, background .25s ease; }
.engage-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12) !important; }
.engage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }

@media (max-width: 820px) {
  .engage-section { padding: 40px 20px !important; }
  .engage-box    { padding: 36px 28px !important; border-radius: 18px !important; }
  .engage-heading { font-size: 32px !important; letter-spacing: -.8px !important; margin-bottom: 24px !important; }
  .engage-grid   { grid-template-columns: repeat(2, 1fr); }
  .engage-card   { padding: 20px !important; }
}
@media (max-width: 480px) {
  .engage-section { padding: 28px 14px !important; }
  .engage-box    { padding: 28px 20px !important; border-radius: 14px !important; }
  .engage-heading { font-size: 26px !important; margin-bottom: 20px !important; }
  .engage-grid   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .engage-card   { padding: 16px !important; border-radius: 12px !important; }
}

/* ---- Services hub: CTA band ---- */
.srv-cta-box {
  background: #1366b8;
  border-radius: 26px;
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.srv-cta-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
  line-height: 1.05;
  position: relative;
}

@media (max-width: 820px) {
  .srv-cta-box {
    grid-template-columns: 1fr;
    padding: 44px 32px;
    gap: 24px;
  }
  .srv-cta-heading { font-size: 36px; letter-spacing: -1px; }
}
@media (max-width: 480px) {
  .srv-cta-section { padding-left: 16px !important; padding-right: 16px !important; padding-bottom: 56px !important; }
  .srv-cta-box { padding: 36px 22px; border-radius: 18px; }
  .srv-cta-heading { font-size: 30px; }
}

/* ---- Industries hub: industry cards grid ---- */
.ind-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

@media (max-width: 1100px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .ind-grid { grid-template-columns: 1fr; } }

/* ---- Industries hub: "why it matters" checklist ---- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

.why-row { transition: background .3s ease, transform .3s ease, border-color .3s ease; }
.why-row:hover { background: #eef3f9; transform: translateX(6px); border-color: #1366b8 !important; }

/* ---- Footer mobile font sizes ---- */
@media (max-width: 640px){
  /* Footer outer padding */
  footer.vg-section > div { padding-left:20px !important; padding-right:20px !important; }

  /* Tagline paragraph */
  footer.vg-section p { font-size:16px !important; line-height:1.7 !important; max-width:100% !important; }

  /* Email / phone links and contact block */
  footer.vg-section .footer-link { font-size:16px !important; padding:9px 0 !important; }

  /* Bottom bar links */
  footer.vg-section .footer-bottom-link { font-size:14px !important; }

  /* Bottom bar wrapper (copyright text) */
  footer.vg-section > div > div:last-child { font-size:14px !important; }
}

/* ---- Digital Modernisation: platform cards + industry pills ---- */
.platform-card { transition: background .3s ease, transform .3s ease, border-color .3s ease; }
.platform-card:hover { background: #eef3f9; transform: translateY(-4px); border-color: #1366b8 !important; }

.dm-pill { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.dm-pill:hover { transform: translateY(-4px); box-shadow: 0 16px 30px -18px rgba(10,37,64,.35); border-color: #1366b8 !important; }

/* ---- Digital Modernisation: hero "modernisation pipeline" diagram ---- */
.dm-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 6px; margin-top: 48px; }
.dm-node { border-radius: 18px; padding: 26px 22px; position: relative; }
.dm-node-legacy { background: #eef0ea; border: 1.5px dashed #c7cabd; }
.dm-node-migration { background: #eaf1fb; border: 1.5px solid #bcd7f2; }
.dm-node-cloud { background: #0a2540; border: 1.5px solid #0a2540; }
.dm-node-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; margin-bottom: 14px; }
.dm-node-legacy .dm-node-icon { background: #dfe2d8; color: #4a4f42; }
.dm-node-migration .dm-node-icon { background: #d7e7f8; color: #1366b8; }
.dm-node-cloud .dm-node-icon { background: rgba(74,163,232,.18); color: #5aacea; }
.dm-node-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; }
.dm-node-legacy .dm-node-title { color: #5b6255; }
.dm-node-migration .dm-node-title { color: #0a2540; }
.dm-node-cloud .dm-node-title { color: #fff; }
.dm-node-sub { font-size: 12.5px; margin-top: 5px; line-height: 1.5; }
.dm-node-legacy .dm-node-sub { color: #5f6555; }
.dm-node-migration .dm-node-sub { color: #5c7085; }
.dm-node-cloud .dm-node-sub { color: #9fb2c9; }
.dm-node-tag { position: absolute; top: 16px; right: 16px; font-family: 'Space Grotesk', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; }
.dm-node-legacy .dm-node-tag { background: #dfe2d8; color: #4a4f42; }
.dm-node-cloud .dm-node-tag { background: #1366b8; color: #fff; }

.dm-connector { position: relative; width: 52px; height: 2px; background: linear-gradient(90deg, #c7cabd, #bcd7f2); }
.dm-connector.b { background: linear-gradient(90deg, #bcd7f2, #1366b8); }
.dm-pulse { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%; background: #1366b8; box-shadow: 0 0 0 4px rgba(19,102,184,.18); animation: nova-travel 2.6s linear infinite; }
.dm-connector.b .dm-pulse { animation-delay: .3s; }
@keyframes nova-travel { 0% { left: -3px; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: calc(100% - 4px); opacity: 0; } }

@media (max-width: 900px) {
  .dm-pipeline { grid-template-columns: 1fr; }
  .dm-connector { width: 2px; height: 36px; margin-inline: auto; }
  .dm-pulse { top: 0; left: 50%; margin-top: 0; margin-left: -3.5px; animation-name: nova-travel-v; }
  @keyframes nova-travel-v { 0% { top: -3px; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { top: calc(100% - 4px); opacity: 0; } }
}

/* ---- Digital Modernisation: creamy-white hero banner card ---- */
.dm-hero-banner { padding: 80px 56px; }
@media (max-width: 820px) { .dm-hero-banner { padding: 52px 32px; border-radius: 24px; } }
@media (max-width: 480px) { .dm-hero-banner { padding: 36px 20px; border-radius: 18px; } }

/* ---- Legacy Modernisation: "How We Deliver" 4-step process timeline ---- */
.lm-pipeline { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 6px; }
.lm-node { background: #fffdf8; border: 1.5px solid #e2e7ee; border-radius: 18px; padding: 26px 22px; position: relative; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.lm-node:hover { transform: translateY(-6px); border-color: #1366b8; box-shadow: 0 20px 40px -22px rgba(19,102,184,.35); }
.lm-node-num { width: 38px; height: 38px; border-radius: 50%; background: #1366b8; color: #fff; display: grid; place-items: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.lm-node-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: #0a2540; }
.lm-node-desc { font-size: 12.5px; margin-top: 6px; line-height: 1.55; color: #54616f; }

.lm-connector { position: relative; width: 40px; height: 2px; background: linear-gradient(90deg, #cfe0f2, #1366b8); align-self: center; }
.lm-pulse { position: absolute; top: 50%; left: 0; width: 7px; height: 7px; margin-top: -3.5px; border-radius: 50%; background: #1366b8; box-shadow: 0 0 0 4px rgba(19,102,184,.18); animation: nova-travel 2.6s linear infinite; }

/* 5-step variant (e.g. Data Migration: Assessment → Planning → Incremental → Cut-Over → Decommission) */
.lm-pipeline-5 { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; }

@media (max-width: 900px) {
  .lm-pipeline, .lm-pipeline-5 { grid-template-columns: 1fr; }
  .lm-connector { width: 2px; height: 32px; margin-inline: auto; }
  .lm-pulse { top: 0; left: 50%; margin-top: 0; margin-left: -3.5px; animation-name: nova-travel-v; }
}

/* ---- Contact Us: form + quick-contact panel ---- */
.contact-form-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
@media (max-width: 900px) { .contact-form-wrap { grid-template-columns: 1fr; } }

.contact-form-card {
  background: #fff;
  border: 1.5px solid #e2e7ee;
  border-radius: 24px;
  padding: 44px;
}
@media (max-width: 480px) { .contact-form-card { padding: 28px 22px; border-radius: 18px; } }

.contact-info-col { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: #fffdf8;
  border: 1.5px solid #e2e7ee;
  border-radius: 24px;
  padding: 40px;
}
@media (max-width: 480px) { .contact-info-card { padding: 28px 22px; border-radius: 18px; } }

.contact-info-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-top: 1px solid #e2e7ee; }
.contact-info-row:first-of-type { border-top: none; padding-top: 0; }
.contact-info-row-icon { flex-shrink: 0; line-height: 0; width: 36px; height: 36px; border-radius: 50%; background: #eef2f7; display: grid; place-items: center; margin-top: 1px; }
.contact-info-row-label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #7d93ab; margin-bottom: 3px; }
.contact-info-row-value { display: block; font-size: 15.5px; font-weight: 600; color: #0a2540; text-decoration: none; transition: color .2s ease; }
a.contact-info-row-value:hover { color: #1366b8; }

/* ---- Contact Us: Contact Form 7 field styling ---- */
.contact-form-card .cf-row { margin-bottom: 20px; }
.contact-form-card .cf-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .contact-form-card .cf-row-2col { grid-template-columns: 1fr; gap: 0; } .contact-form-card .cf-row-2col > div { margin-bottom: 20px; } }

.contact-form-card label { display: block; font-size: 13.5px; font-weight: 700; color: #0a2540; margin-bottom: 8px; }

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
  width: 100%;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 15px;
  color: #0a2540;
  background: #fffdf8;
  border: 1.5px solid #d7dee7;
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form-card textarea { min-height: 90px; resize: vertical; }
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: #1366b8;
  box-shadow: 0 0 0 4px rgba(19,102,184,.14);
}

.contact-form-card .wpcf7-form-control-wrap { display: block; }
.contact-form-card .wpcf7-not-valid-tip { font-size: 12.5px; color: #d64545; margin-top: 6px; }
.contact-form-card .wpcf7-response-output { margin: 20px 0 0; border-radius: 12px; padding: 14px 18px; font-size: 14.5px; border-width: 1.5px !important; }
.contact-form-card input.wpcf7-not-valid,
.contact-form-card textarea.wpcf7-not-valid { border-color: #d64545; }

/* Honeypot field: hidden from real visitors, left for bots to fill in */
.contact-form-card .vg-hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-form-card input[type="submit"] {
  background: #1366b8;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.contact-form-card input[type="submit"]:hover { background: #0d4f8f; transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(19,102,184,.6); }
.contact-form-card input[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
