:root {
  --red:       #e63528;
  --red-h:     #c62d21;
  --dark-navy: #1a1e2e;
  --body-bg:   #f5f6f8;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --footer-bg: #0e1220;
  --card-dark: #222840;
}

/* Hide reCAPTCHA badge — disclaimer shown near each form instead */
.grecaptcha-badge { visibility: hidden !important; }

*, *::before, *::after { box-sizing: border-box; }

[id] { scroll-margin-top: 80px; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--dark-navy);
  margin: 0;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.6;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
}

.site-header .navbar-brand img { height: 52px; }

.site-header .nav-link {
  font-weight: 400;
  color: #000;
  font-size: 0.875rem;
  padding: 0.4rem 0.75rem;
  transition: color 0.2s;
}

.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--red); }

.btn-contact-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--red);
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.btn-contact-header:hover { background: var(--red); color: #fff; }

.btn-jobs-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  background: var(--dark-navy);
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-jobs-header:hover { background: #2a3050; color: #fff; }

.btn-jobs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--dark-navy);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 60L60 0' stroke='rgba(255,255,255,.03)' stroke-width='1'/></svg>") repeat;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0%;
  bottom: 0;
  width: 420px;
  height: 100%;
  background: url('/images/bear_symbol.svg') no-repeat bottom right / contain;
  pointer-events: none;
}

@media (max-width: 991px) {
  .page-hero::after { width: 200px; opacity: 0.05; right: 0; }
}
@media (max-width: 575px) {
  .page-hero::after { display: none; }
}

.page-hero-inner {
  position: relative;
  padding: 3rem 0 3.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}

.breadcrumb-nav a { color: var(--red); text-decoration: none; }
.breadcrumb-nav a:hover { color: #ff6b62; }
.breadcrumb-nav span { color: rgba(255,255,255,0.2); }

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.page-hero .hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  max-width: 580px;
  line-height: 1.7;
  margin: 0;
}

/* ─── SECTION COMMON ─── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--dark-navy);
}

/* ─── COMMON BUTTONS ─── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-red:hover { background: var(--red-h); color: #fff; }

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ─── CARDS ─── */
.white-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

/* ─── CTA BANNER ─── */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 60L60 0' stroke='rgba(0,0,0,.06)' stroke-width='1'/></svg>") repeat;
}

.cta-section .cta-inner { position: relative; }

.cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-cta-white:hover { opacity: 0.92; transform: translateY(-1px); color: var(--red); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ─── FOOTER ─── */
.site-footer { background: var(--footer-bg); padding: 64px 0 0; }
.site-footer .footer-logo { height: 54px; filter: brightness(0) invert(1); margin-bottom: 1rem; display: block; }
.site-footer .footer-desc { font-size: 0.85rem; color: #c9d1dc; line-height: 1.65; max-width: 230px; }
.site-footer h6 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #9ca3af; margin-bottom: 1.1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: #c9d1dc; font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.75rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-hours { font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.4rem; }
.footer-hours span { color: #c9d1dc; font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 1.1rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--red); }
.footer-social a svg { stroke: #9ca3af; fill: none; transition: stroke 0.2s; }
.footer-social a:hover svg { stroke: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; margin-top: 48px; }
.footer-bottom p { font-size: 0.78rem; color: #4b5563; margin: 0; }
.footer-bottom a { color: #4b5563; text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #9ca3af; }

/* ─── FORM FIELDS ─── */
.f-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.f-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.62rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--dark-navy);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  margin-bottom: 0.85rem;
}

.f-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(230,53,40,0.1); }
.f-input::placeholder { color: #c4c9d4; }
textarea.f-input { resize: vertical; min-height: 100px; }

.f-submit {
  width: 100%;
  padding: 0.78rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}

.f-submit:hover { background: var(--red-h); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .section-heading { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.5rem; }
}

/* ─── AVAILABILITY DOT ─── */
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.7); }
  70%  { box-shadow: 0 0 0 6px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}
.dot-unavailable {
  background: #ef4444 !important;
  animation: pulse-red 1.4s ease-in-out infinite;
}
.dot-available {
  background: #22c55e !important;
}
