
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --yellow: #D7B615; --yellow-dark: #b89a10;
  --navy: #1C2236; --dark: #111111; --dark2: #181818;
  --text: #ffffff; --muted: #bbbbbb;
  --font: 'Roboto', sans-serif; --cond: 'Roboto Condensed', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--dark); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── HEADER ─────────────────────────────────────── */
header { position: fixed; top: 0; left: 0; width: 100%; background: var(--navy); z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.07); }
.hdr { display: flex; align-items: center; height: 68px; }
.logo-box { display: flex; align-items: center; padding: 0 28px; height: 100%; border-right: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.logo-box img { height: 38px; width: auto; }
.main-nav { display: flex; align-items: center; height: 100%; }
.main-nav a { font-family: var(--cond); font-size: 12.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text); padding: 0 22px; height: 100%; display: flex; align-items: center; border-right: 1px solid rgba(255,255,255,0.07); transition: color .2s; }
.main-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.07); }
.main-nav a:hover { color: var(--yellow); }
.hdr-right { display: flex; align-items: center; height: 100%; margin-left: auto; }
.socials { display: flex; align-items: center; gap: 18px; padding: 0 24px; height: 100%; border-left: 1px solid rgba(255,255,255,0.1); }
.socials a { color: var(--text); font-size: 16px; transition: color .2s; }
.socials a:hover { color: var(--yellow); }
.cta-btn { display: flex; align-items: center; justify-content: center; background: var(--yellow); color: #000; font-family: var(--cond); font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 0 32px; height: 100%; min-width: 160px; transition: background .2s; flex-shrink: 0; }
.cta-btn:hover { background: var(--yellow-dark); }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; padding: 0 20px; align-items: center; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  padding-top: 68px;
  min-height: 44vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('../assets/images/HOME_MAIN_BANNER_DESK.webp') center 70% / cover no-repeat;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.page-hero-body { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 72px 48px; width: 100%; }
.eyebrow { font-family: var(--cond); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 520px; }

/* ── MAIN CONTENT ────────────────────────────────── */
.contact-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 100px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ── INFO SIDE ───────────────────────────────────── */
.info-block { margin-bottom: 44px; }
.info-block:last-child { margin-bottom: 0; }

.info-label {
  font-family: var(--cond);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(215,182,21,0.25);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.info-item:last-child { margin-bottom: 0; }

.info-icon {
  width: 40px; height: 40px;
  background: rgba(215,182,21,0.08);
  border: 1px solid rgba(215,182,21,0.2);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon i { color: var(--yellow); font-size: 15px; }

.info-text strong { display: block; font-size: 13px; font-weight: 600; font-family: var(--cond); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; color: var(--text); }
.info-text span, .info-text a { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.6; display: block; }
.info-text a:hover { color: var(--yellow); }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: background .2s, border-color .2s, color .2s;
}
.social-row a:hover { background: var(--yellow); border-color: var(--yellow); color: #000; }

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(215,182,21,0.06);
  border: 1px solid rgba(215,182,21,0.2);
  border-left: 3px solid var(--yellow);
  padding: 14px 18px;
  border-radius: 0 2px 2px 0;
  margin-top: 32px;
}
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; flex-shrink: 0; box-shadow: 0 0 0 3px rgba(76,175,80,0.2); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 3px rgba(76,175,80,.2)} 50%{box-shadow:0 0 0 6px rgba(76,175,80,.08)} }
.availability p { font-size: 13px; font-weight: 300; color: var(--muted); }
.availability strong { color: var(--text); font-weight: 500; }

/* ── REACH OUT PANEL ─────────────────────────────── */
.reach-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 48px 44px;
}

.reach-label {
  font-family: var(--cond);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

.reach-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.reach-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.reach-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reach-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 2px;
  color: var(--text);
  transition: background .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.reach-btn:hover {
  background: rgba(215,182,21,0.07);
  border-color: rgba(215,182,21,0.35);
  transform: translateX(4px);
}
.reach-btn--primary {
  background: rgba(215,182,21,0.08);
  border-color: rgba(215,182,21,0.3);
}
.reach-btn--primary:hover {
  background: rgba(215,182,21,0.15);
  border-color: var(--yellow);
}

.reach-btn > .fa-envelope,
.reach-btn > .fa-phone {
  font-size: 18px;
  color: var(--yellow);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.reach-btn span {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.reach-btn span em {
  font-style: normal;
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.reach-btn span strong,
.reach-btn span:last-of-type {
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
}

.reach-arrow {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.reach-btn:hover .reach-arrow {
  color: var(--yellow);
  transform: translateX(3px);
}

.reach-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 32px 0 24px;
}

.reach-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}
.reach-note .fa-clock {
  color: var(--yellow);
  font-size: 14px;
  opacity: 0.7;
}

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 40px 0 24px; }
.ftr-top { max-width: 1200px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 28px; }
.ftr-logo img { height: 30px; }
.ftr-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.ftr-nav a { font-family: var(--cond); font-size: 11.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.ftr-nav a:hover { color: var(--yellow); }
.ftr-social { display: flex; gap: 16px; }
.ftr-social a { color: var(--muted); font-size: 17px; transition: color .2s; }
.ftr-social a:hover { color: var(--yellow); }
.ftr-copy { max-width: 1200px; margin: 0 auto; padding: 20px 48px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ftr-copy p, .ftr-copy a { font-size: 11.5px; color: rgba(255,255,255,.32); }
.ftr-copy-links { display: flex; gap: 22px; }
.ftr-copy a:hover { color: var(--yellow); }

.to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--yellow); color: #000; border: none; border-radius: 2px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; z-index: 900; }
.to-top.show { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--yellow-dark); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-main { gap: 48px; }
}

.main-nav .cta-btn { display: none; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 8px 0; z-index: 999; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .main-nav.open a { border: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 28px; height: auto; }
  .hamburger { display: flex; }
  .cta-btn { min-width: auto; padding: 0 18px; font-size: 11px; }
  .page-hero-body { padding: 60px 24px; }
  .contact-main { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px 80px; }
  .reach-card { padding: 32px 24px; }
  .ftr-top { flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .ftr-copy { flex-direction: column; align-items: flex-start; padding: 16px 24px 0; }
  .hdr-right .cta-btn { display: none; }
  .main-nav .cta-btn { display: inline-block; margin-top: 12px; background-color: var(--yellow); color: #0a1628; padding: 10px 24px; border-radius: 4px; font-weight: 700; text-align: center; width: fit-content; }
}
