/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */


/* ─────────────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--f); cursor: pointer; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: 16px !important; font-family: var(--f); }
p, li, div, h1, h2, h3 { overflow-wrap: break-word; word-break: break-word; }

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(20px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1); }
.r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 600;
  height: 64px;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }
.ni {
  height: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a {
  font-size: .78rem; font-weight: 600; color: var(--ink-2);
  padding: 6px 12px; border-radius: 6px; transition: all .18s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange); background: var(--bg-orange);
}
.nav-r { display: flex; gap: 8px; align-items: center; }
.btn-nav-secondary {
  font-size: .76rem; font-weight: 600; padding: 7px 16px;
  border: 1.5px solid var(--line); border-radius: 7px;
  background: transparent; color: var(--ink-2); transition: all .18s; min-height: 36px;
}
.btn-nav-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-nav-primary {
  font-size: .76rem; font-weight: 700; padding: 8px 18px;
  border: none; border-radius: 7px; background: var(--orange);
  color: #fff; transition: all .18s; min-height: 36px;
}
.btn-nav-primary:hover { background: var(--orange-d); transform: translateY(-1px); }
.hbg {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 8px;
  background: transparent; border: none; flex-shrink: 0;
}
.hbg span {
  display: block; height: 2px; background: var(--navy);
  border-radius: 2px; transition: all .28s;
}
.hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
  display: none; position: fixed; inset: 64px 0 0;
  background: #fff; z-index: 599;
  flex-direction: column; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  padding: 16px var(--gut); border-bottom: 1px solid var(--line);
  transition: color .18s; min-height: 56px;
}
.mob-nav a:hover, .mob-nav a.active { color: var(--orange); }
.mob-nav .sch-link { color: var(--orange); }
.mob-actions {
  padding: 20px var(--gut) 40px;
  display: flex; flex-direction: column; gap: 10px;
}
.mob-actions .btn-mo, .mob-actions .btn-mg {
  width: 100%; padding: 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-weight: 700; font-size: .9rem; font-family: var(--f);
}
.btn-mo { background: var(--orange); color: #fff; border: none; }
.btn-mg { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }

/* ─────────────────────────────────────────────────────────────
   HERO
   Split layout: headline left, four contact methods right.
   Each method appears ONLY here — not repeated anywhere below.
───────────────────────────────────────────────────────────── */
.hero {
  margin-top: 64px;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 55%, #0d3060 100%);
  padding: clamp(52px, 7vw, 88px) 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(0,175,239,.12) 0%, transparent 55%);
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 40%, var(--blue) 100%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero-eyebrow {
  font-size: .68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(0,175,239,.85); display: block; margin-bottom: 14px;
}
.hero-h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800; line-height: 1.1; color: #fff; margin-bottom: 14px;
}
.hero-h1 .acc { color: var(--orange); }
.hero-sub {
  font-size: .94rem; line-height: 1.9;
  color: rgba(255,255,255,.55); max-width: 420px;
}

/* Contact method cards — appear in hero ONLY */
.contact-methods {
  display: flex; flex-direction: column; gap: 10px;
}
.method-card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 16px 18px;
  text-decoration: none; transition: all .22s;
}
.method-card:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  transform: translateX(4px);
}
.method-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0; color: #fff;
}
.mi-wa { background: var(--wa); }
.mi-ph { background: var(--blue); }
.mi-em { background: var(--orange); }
.mi-ap { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); }
.method-text { flex: 1; min-width: 0; }
.method-label {
  font-size: .62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.method-value {
  font-size: .9rem; font-weight: 700; color: #fff; line-height: 1.3;
}
.method-note {
  font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 1px;
}
.method-arrow {
  color: rgba(255,255,255,.25); font-size: .75rem; flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.method-card:hover .method-arrow {
  color: rgba(255,255,255,.7); transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────────
   MAIN CONTENT — Form + Info
   Each piece of information appears exactly once here.
───────────────────────────────────────────────────────────── */
.main-section {
  padding: clamp(44px, 5.5vw, 76px) 0;
}
.main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: start;
}

/* ── Left — Enquiry form ──────────────────────────────── */
.form-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-card-hd {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.form-card-hd h2 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.form-card-hd p {
  font-size: .8rem; color: var(--ink-3); line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { margin-bottom: 14px; }
label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--ink-2); margin-bottom: 5px; letter-spacing: .3px;
}
label .req { color: var(--orange); }
.fc {
  width: 100%; padding: 11px 13px;
  background: var(--bg-2); border: 1.5px solid var(--line);
  border-radius: 7px; color: var(--ink); outline: none;
  transition: border-color .18s, box-shadow .18s;
  font-size: .88rem !important; font-family: var(--f);
  -webkit-appearance: none;
}
.fc:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,175,239,.1);
  background: var(--bg);
}
select.fc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 38px;
  cursor: pointer;
}
textarea.fc { resize: vertical; min-height: 110px; }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--orange); color: #fff;
  border: none; border-radius: 8px;
  font-size: .9rem; font-weight: 700; font-family: var(--f);
  cursor: pointer; transition: all .2s;
  margin-top: 18px; min-height: 48px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(249,115,22,.3);
}
.form-success {
  display: none; text-align: center;
  padding: 36px 20px;
}
.form-success i {
  font-size: 2.8rem; color: var(--green);
  display: block; margin-bottom: 14px;
}
.form-success h3 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.form-success p {
  font-size: .86rem; color: var(--ink-2); line-height: 1.8;
}

/* ── Right — Address + Hours only ─────────────────────── */
.info-stack {
  display: flex; flex-direction: column; gap: 16px;
}
.info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}
.info-block-title {
  font-size: .62rem; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
/* Address block */
.addr-name {
  font-size: .9rem; font-weight: 800; color: var(--navy); margin-bottom: 6px;
}
.addr-line {
  font-size: .84rem; color: var(--ink-2); line-height: 1.8;
  margin-bottom: 12px;
}
.addr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 700;
  color: var(--blue); background: rgba(0,175,239,.08);
  border: 1px solid rgba(0,175,239,.2);
  padding: 4px 12px; border-radius: 20px;
}
/* Hours block */
.hours-grid {
  display: flex; flex-direction: column; gap: 0;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row.today {
  color: var(--orange); font-weight: 700;
}
.hours-row.today .hours-day, .hours-row.today .hours-time {
  color: var(--orange);
}
.hours-day { color: var(--ink-2); }
.hours-time { font-weight: 700; color: var(--navy); font-size: .8rem; }
.hours-note {
  font-size: .76rem; color: var(--ink-3);
  margin-top: 12px; line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   FULL-WIDTH MAP
   Address is shown here and ONLY here (not repeated in a header).
───────────────────────────────────────────────────────────── */
.map-section {
  position: relative;
}
.map-section iframe {
  display: block; width: 100%; height: 420px; border: none;
  border-top: 3px solid var(--orange);
}
/* Slim overlay strip sits ON TOP of the map at the bottom edge */
.map-overlay {
  background: rgba(11,29,63,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px var(--gut);
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.map-addr-text {
  font-size: .82rem; color: rgba(255,255,255,.75);
  line-height: 1.65;
}
.map-addr-text strong { color: #fff; display: block; margin-bottom: 1px; }
.btn-directions {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  background: var(--orange); color: #fff;
  border-radius: 7px; font-size: .8rem; font-weight: 700;
  text-decoration: none; transition: background .2s;
  white-space: nowrap; min-height: 40px; flex-shrink: 0;
}
.btn-directions:hover { background: var(--orange-d); }

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer { background: #07101F; }
.foot-top {
  padding: clamp(40px,5vw,60px) 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 44px; }
.fw-name {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  letter-spacing: -.5px; line-height: 1; margin-bottom: 3px;
}
.fw-name span { color: var(--blue); }
.fw-sub {
  font-size: .44rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.foot-tagline {
  font-size: .76rem; color: rgba(255,255,255,.3);
  line-height: 1.85; margin-bottom: 18px; max-width: 300px;
}
.foot-tagline strong { color: rgba(255,255,255,.55); }
.foot-nl-label {
  font-size: .6rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 9px;
}
.foot-nl { display: flex; gap: 7px; }
.foot-nl input {
  flex: 1; min-width: 0; padding: 9px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; color: #fff; outline: none;
  transition: border-color .18s; font-size: .76rem !important;
}
.foot-nl input:focus { border-color: rgba(249,115,22,.5); }
.foot-nl input::placeholder { color: rgba(255,255,255,.2); }
.foot-nl button {
  padding: 9px 14px; background: var(--orange); color: #fff;
  border: none; border-radius: 6px; font-size: .72rem; font-weight: 700;
  font-family: var(--f); cursor: pointer; transition: background .18s; white-space: nowrap;
}
.foot-nl button:hover { background: var(--orange-d); }
.foot-social { display: flex; gap: 7px; margin-top: 18px; }
.fsoc {
  width: 32px; height: 32px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  display: grid; place-items: center;
  color: rgba(255,255,255,.35); font-size: .72rem;
  transition: all .18s; text-decoration: none;
}
.fsoc:hover { border-color: var(--orange); color: var(--orange); }
.foot-founded {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .68rem; color: rgba(255,255,255,.2); line-height: 1.9;
}
.foot-col h5 {
  font-size: .58rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 13px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  font-size: .74rem; color: rgba(255,255,255,.4);
  transition: color .18s; display: flex; align-items: center; gap: 6px;
}
.foot-col a:hover { color: var(--orange); }
.foot-col a i { font-size: .6rem; color: rgba(255,255,255,.2); width: 10px; }
.fci {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .72rem; color: rgba(255,255,255,.37);
  margin-bottom: 9px; line-height: 1.6;
}
.fci i { color: var(--orange); flex-shrink: 0; font-size: .68rem; margin-top: 3px; width: 12px; }
.fci a { color: rgba(255,255,255,.37); transition: color .18s; }
.fci a:hover { color: var(--orange); }
.foot-bottom {
  padding: 18px 0; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.foot-copy { font-size: .66rem; color: rgba(255,255,255,.2); line-height: 1.6; }
.foot-copy a { color: rgba(255,255,255,.3); transition: color .18s; }
.foot-copy a:hover { color: var(--orange); }
.foot-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.foot-badge {
  font-size: .6rem; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.28);
}

/* ─────────────────────────────────────────────────────────────
   FLOATING BUTTONS
───────────────────────────────────────────────────────────── */
.wa {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: grid; place-items: center; font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s; text-decoration: none;
}
.wa:hover { transform: scale(1.1); }
.btt {
  position: fixed; bottom: 90px; right: 20px; z-index: 998;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: none; place-items: center; font-size: .88rem;
  border: none; cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.25);
  transition: all .2s; -webkit-tap-highlight-color: transparent;
}
.btt.show { display: grid; }
.btt:hover { background: var(--orange); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .main-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 700px) {
  /* Nav */
  .nav-links, .btn-nav-secondary { display: none; }
  .hbg { display: flex; }

  /* Hero */
  .hero { padding: clamp(40px,7vw,60px) 0; }
  .hero-h1 { font-size: clamp(1.8rem,7vw,2.4rem); }
  .hero-sub { margin-bottom: 24px; }
  .contact-methods { grid-template-columns: 1fr; }

  /* Main */
  .form-row { grid-template-columns: 1fr; }
  .map-section iframe { height: 320px; }
  .map-overlay {
    flex-direction: column; align-items: flex-start; gap: 10px;
  }
  .btn-directions { width: 100%; justify-content: center; }

  /* Footer */
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .foot-badges { justify-content: center; }
  .foot-tagline { max-width: 100%; }
}

@media (hover: none) {
  .method-card:hover { transform: none; }
  .submit-btn:hover { transform: none; box-shadow: none; }
  .btn-directions:hover { background: var(--orange); }
}

@media (max-width: 420px) {

  .map-section iframe { height: 260px; }
  .hero-h1 { font-size: 1.75rem; }
  .main-section { padding: clamp(36px,5vw,56px) 0; }
}

@media (hover: none) {
  .method-card:hover { transform: none; }
  .submit-btn:hover { transform: none; box-shadow: none; }
  .btn-directions:hover { background: var(--orange); }
}


.mob-101-sub a i{font-size:.7rem;opacity:.6;width:14px;flex-shrink:0}


.mega-menu{z-index:9999!important;isolation:isolate}
.nav{isolation:isolate;transform:translateZ(0)}
