/* =========================================================
   contact-standalone.css
   Standalone base (was styles.css) + contact overrides (was contact.css)
   ========================================================= */

/* ========== RESET / BASE ========== */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #122033;
  --muted: #5f6f87;
  --muted2: #7b879c;

  --primary: #0f8ad8;
  --primary2: #0f3c73;

  --line: rgba(15, 60, 115, 0.12);
  --shadow: 0 14px 32px rgba(7, 31, 71, 0.08);
  --shadow2: 0 18px 40px rgba(2, 24, 70, 0.12);

  --r-lg: 1.4rem;
  --r-xl: 1.75rem;
  --container: 1100px;
}

html { scroll-behavior: smooth; }
body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ text-decoration: none; color: inherit; }
img{ max-width: 100%; display: block; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== TOP BAR ========== */
.top-bar{
  background: var(--primary2);
  color: #e9f3ff;
  font-size: 0.9rem;
  padding: 0.35rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar a{ color:#e9f3ff; opacity:.95; }
.top-bar a:hover{ opacity:1; text-decoration: underline; }
.top-bar span{ display:flex; align-items:center; gap:.4rem; }

/* ========== HEADER / NAV ========== */
header{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}
.brand{ display:inline-flex; align-items:center; }
.brand-logo{ height: 44px; width:auto; }

.nav-links{
  display:flex;
  gap: 1.25rem;
  font-size: .95rem;
}
.nav-links a{
  padding-bottom: .15rem;
  border-bottom: 2px solid transparent;
  color: #1b2b43;
}
.nav-links a:hover{ border-color: var(--primary); color: var(--primary); }
.nav-links a.active{ border-color: var(--primary); color: var(--primary); }

/* Desktop enquire button visible */
.nav-cta{ display:inline-flex; }

/* ========== BUTTONS ========== */
.btn{
  border-radius: 999px;
  padding: .6rem 1.4rem;
  font-size: .95rem;
  border:none;
  cursor:pointer;
  font-weight: 650;
  display:inline-flex;
  align-items:center;
  gap: .4rem;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn-primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color:#fff;
  box-shadow: 0 10px 25px rgba(15, 84, 155, .28);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(15, 84, 155, .35); }

.btn-outline{
  background: rgba(255,255,255,.6);
  color: var(--primary2);
  border: 1px solid rgba(15, 60, 115, .35);
}
.btn-outline:hover{ border-color: var(--primary); color: var(--primary); }

/* ========== HERO ========== */
.hero{
  background: radial-gradient(circle at top left, #e1f2ff, #ffffff 45%, #f0f4ff);
  padding: 3.6rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(15,138,216,.16), transparent);
  top: -180px; right: -140px;
  z-index: 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-title{
  font-size: clamp(2.2rem, 3.3vw, 3rem);
  font-weight: 800;
  color: #0c2744;
  margin-bottom: .8rem;
}
.hero-highlight{ color: var(--primary); }
.hero-text{
  font-size: 1rem;
  color: #4b5a70;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.hero-badges{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.6rem;
}
.badge{
  font-size: .78rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(15,60,115,.18);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
}
.hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items:center;
}
.hero-note{
  font-size: .78rem;
  color: #76849a;
  margin-top: .65rem;
}

/* ========== HERO CARD / TABS / TAGS ========== */
.hero-image-card{
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(15,60,115,.10);
  position: relative;
}
.hero-tag{
  display:inline-flex;
  font-size: .72rem;
  font-weight: 900;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(15,138,216,.12);
  border: 1px solid rgba(15,138,216,.22);
  color: #0c2744;
  margin-bottom: .55rem;
}
.hero-image-title{
  font-weight: 900;
  color: #0c2744;
  font-size: 1.05rem;
  margin-bottom: .25rem;
}

.mini-tags{
  display:flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.mini-tags span{
  font-size: .78rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(15, 138, 216, 0.08);
  border: 1px solid rgba(15, 138, 216, 0.18);
  color: #2b435f;
}

/* ========== SECTIONS ========== */
.page-section{ padding: 3.4rem 0; }

.section-header{ text-align:center; margin-bottom: 2.2rem; }
.section-kicker{
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--primary);
  margin-bottom: .45rem;
}
.section-title{
  font-size: 1.75rem;
  font-weight: 800;
  color: #0c2744;
  margin-bottom: .45rem;
}
.section-subtitle{
  font-size: .95rem;
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto;
}
.cta-row{
  margin-top: 1.25rem;
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items:center;
}

/* ========== CONTACT GRID (base) ========== */
.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-card{
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  color: var(--muted);
  border: 1px solid rgba(15, 60, 115, 0.10);
}
.contact-card h3{
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #0c2744;
  font-weight: 900;
}

.contact-row { margin-bottom: 0.45rem; }
.contact-label { font-weight: 800; font-size: 0.86rem; color: #32425a; }

.contact-form { display: grid; gap: 0.8rem; }
.field { display: flex; flex-direction: column; gap: 0.25rem; }
.field label { font-size: 0.82rem; color: #4b5a70; }

.field input,
.field textarea{
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 60, 115, 0.2);
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  background: #f9fbff;
}
.field textarea{ min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(15, 138, 216, 0.2);
  background: #ffffff;
}

/* ========== CTA BAND (used on contact page) ========== */
.cta-band{
  margin-top: 2rem;
  background: radial-gradient(circle at top left, rgba(15,138,216,.14), rgba(255,255,255,.9));
  border: 1px solid rgba(15, 60, 115, 0.16);
  border-radius: 1.6rem;
  padding: 1.4rem 1.4rem;
  box-shadow: 0 14px 30px rgba(7, 31, 71, 0.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-band h3{
  font-size: 1.15rem;
  font-weight: 900;
  color:#0c2744;
}
.cta-band p{
  color: var(--muted);
  font-size: .92rem;
  margin-top: .2rem;
}
.cta-band-actions{ display:flex; gap:.75rem; flex-wrap: wrap; }

/* ========== PILLS (used in contact) ========== */
.pill-row{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  margin-top:.35rem;
  margin-bottom:.3rem;
}
.pill{
  font-size: .72rem;
  border-radius: 999px;
  padding: .2rem .55rem;
  background: #f2f6ff;
  color: #385077;
}

/* ========== MAP ========== */
.map-embed iframe{
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 1rem;
}

/* ========== FOOTER ========== */
footer{
  background:#0c1b32;
  color:#c7d2e7;
  padding: 1.6rem 0 1.2rem;
  font-size: .82rem;
  margin-top: 2rem;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items:center;
}
.footer-links{
  display:flex;
  gap: 1rem;
  flex-wrap:wrap;
}
.footer-links a{ opacity:.85; }
.footer-links a:hover{ opacity:1; text-decoration: underline; }

/* =========================================================
   CONTACT PAGE OVERRIDES (was contact.css)
   ========================================================= */

.contact-hero{ padding: 2.8rem 0 2.2rem; }
.contact-hero-grid{ align-items: flex-start; }
.contact-hero-title{ margin-bottom: .65rem; }
.contact-hero-text{ margin-bottom: 1.1rem; }
.contact-hero-badges{ margin-bottom: 1.1rem; }

.contact-help-card{ padding: 1.15rem; }
.contact-help-title{ margin-bottom: .35rem; }
.contact-help-text{ margin: 0 0 .75rem; font-size: .95rem; }
.contact-help-actions{ margin-top: 1rem; }

.contact-section{ padding-top: 1.6rem; }
.contact-header{ margin-bottom: 1.4rem; }

/* ✅ Make left and right cards equal height */
.contact-grid-equal{ align-items: stretch; }
.contact-card-fill{ height: 100%; display:flex; flex-direction: column; }
.contact-card-fill .contact-form{ flex: 1; }

.contact-map-row{ margin-top: .9rem; }
.map-embed{ margin-top: .5rem; }

.contact-divider{
  border: none;
  border-top: 1px solid rgba(15,60,115,.12);
  margin: 1rem 0;
}
.contact-subhead{ margin-top: 0; }
.contact-quick-actions{ margin-top: .7rem; }
.contact-pills{ margin-top: 1rem; }

.contact-cta-band{ margin-top: 2rem; }

/* Honeypot hidden field */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}

/* Submit status */
.contact-status{
  margin-top: .65rem;
  font-size: .88rem;
  color: #5f6f87;
}
.contact-status.is-success{ color: #1f7a3a; }
.contact-status.is-error{ color: #a93b3b; }

/* Button loading affordance */
.btn.is-loading{
  opacity: .88;
  pointer-events: none;
}
.btn.is-loading::after{
  content:"";
  width: 14px; height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.7);
  border-top-color: rgba(255,255,255,.0);
  display:inline-block;
  margin-left: .5rem;
  vertical-align: -2px;
  animation: limerSpin .7s linear infinite;
}
@keyframes limerSpin { to { transform: rotate(360deg); } }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-image-card{ max-width: 520px; margin: 0 auto; }
}

@media (max-width: 768px){
  .nav-links{ display:none; }
  .nav-cta{ display:inline-flex; }
  .top-bar{ font-size: .82rem; }
  .contact-grid{ grid-template-columns: 1fr; }
}
