:root {
  --red:       #e63528;
  --red-h:     #c62d21;
  --primary:   var(--red);
  --primary-h: #c92d1f;
  --white:     #fff;
  --black:     #000;
  --body-font: 'Inter', sans-serif;
  --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 { width: auto; height: 3.25rem; }

.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-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-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;
  z-index: 0;
}

.page-hero-symbol {
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 420px;
  height: 90%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
  top: 50%;
}

.page-hero-symbol svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  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: 700px;
  line-height: 1.7;
  margin: 0;
  min-height: 52px;
}

/* ─── 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-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-hero-muted {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

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

.service-card-icon {
  width: 3.125rem;
  height: 3.125rem;
  background: #fde8e6;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
}

.service-card-icon-img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.service-card-list li {
  color: #374151;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.service-card-list li::before {
  content: '•';
  color: var(--red);
  margin-right: 0.375rem;
}

.services-cta-section { background: #f5f6f8; }

/* ─── 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-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;
}

/* ─── FOOTER ─── */
.site-footer { background: var(--footer-bg); padding: 4rem 0 0; }
.footer-container { padding-top: 3.5rem; }
.site-footer .footer-logo { width: 5.25rem; height: auto; 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: 17.5rem; margin-top: 1rem; }
.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: 0.5625rem; font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.75rem; text-decoration: none; transition: color 0.2s; }
.footer-contact-item:hover { color: #fff; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-hours { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.875rem; color: #c9d1dc; margin-bottom: 0.4rem; }
.footer-hours span { color: #c9d1dc; font-weight: 500; }
.footer-hours strong { color: #fff; font-weight: 800; }
.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; }
.footer-status { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #6b7280; }
.footer-status-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #22c55e; flex-shrink: 0; }
.footer-hours-card { margin-top: 1.25rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.625rem; padding: 0.85rem 1rem; }
.footer-hours-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9ca3af; margin-bottom: 0.4rem; }
.footer-hours-muted { color: #4b5563; }
.footer-hours-muted span,
.footer-hours-muted strong { color: #4b5563; }

/* ─── 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;
}

/* ─── 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;
}


/* ─── HERO ─── */
.hero-wrapper { padding: 0 1.25rem; }
.hero-section {
  position: relative; min-height: 75vh;
  display: flex; align-items: center;
  background-color: var(--dark-navy);
  background-size: cover; background-position: center;
  overflow: hidden; border-radius: 20px;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(26,30,46,0.72); }
.hero-content { position: relative; z-index: 1; }
.hero-breadcrumb { font-size:.78rem;font-weight:600;letter-spacing:.08em;color:var(--red);text-transform:uppercase;margin-bottom:1rem; }
.hero-section h1 { font-size:clamp(2rem,4.5vw,3.2rem);font-weight:800;color:#fff;line-height:1.2;margin-bottom:1.2rem; }
.hero-section h1 .accent { color: var(--red); }
.hero-subtext { font-size:1.05rem;color:#ffffff;max-width:540px;margin-bottom:2rem;line-height:1.65; }
.btn-hero-primary {
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 24px;background:var(--red);color:#fff;
  border:1px solid var(--red);border-radius:8px;font-weight:600;font-size:14px;
  text-decoration:none;transition:background .2s;
}
.btn-hero-outline {
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  height:48px;padding:0 24px;
  background:rgba(255,255,255,.12);backdrop-filter:blur(12px);
  color:#fff;border:1px solid rgba(255,255,255,.35);border-radius:8px;
  font-weight:600;font-size:14px;text-decoration:none;transition:border-color .2s,background .2s;
}
.hero-stats { display:flex;align-items:center;flex-wrap:wrap;margin-top:2.5rem; }
.hero-stat { display:flex;align-items:center;gap:8px;color:#fff;font-weight:500;font-size:14px;padding:0 1.4rem; }
.hero-stat:first-child { padding-left:0; }
.hero-stat-divider { width:1px;height:28px;background:rgba(255,255,255,.2); }
.check-icon-wrap { width:24px;height:24px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.check-icon-wrap svg { color:#fff; }

/* ─── WHY US ─── */
.why-section { background:#f5f6f8;padding:80px 0; }
.why-card { background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:2rem;height:100%;transition:box-shadow .25s,transform .2s; }
.why-card:hover { box-shadow:0 8px 32px rgba(26,30,46,.1);transform:translateY(-2px); }
.why-icon { width:48px;height:48px;background:#fde8e6;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;color:var(--red); }
.why-icon-svg { width: 1.75rem; height: 1.75rem; display: inline-flex; align-items: center; justify-content: center; }
.why-icon-svg svg { width: 100%; height: 100%; display: block; }
.why-card h5 { font-size:1.05rem;font-weight:700;color:var(--dark-navy);margin-bottom:.5rem; }
.why-card p { font-size:.88rem;color:var(--muted);line-height:1.6;margin:0; }

/* ─── JOB CARDS ─── */
.jobs-section { background:#fff;padding:80px 0; }
.job-card { background:#fff;border:1px solid #e5e7eb;border-radius:16px;overflow:hidden;height:100%;transition:box-shadow .25s,transform .2s;display:flex;flex-direction:column; }
.job-card-img { width:100%;height:260px;object-fit:cover;display:block; }
.job-card-img.home { width:100%;height:260px !important;object-fit:cover;display:block; }
.job-card-body { padding:1.4rem;display:flex;flex-direction:column;flex:1; }
.job-card:hover { box-shadow:0 8px 32px rgba(26,30,46,.1);transform:translateY(-2px); }
.job-tag { display:inline-block;align-self:flex-start;background:#fde8e6;color:var(--red);font-weight:600;font-size:12px;letter-spacing:.1em;text-transform:uppercase;padding:5px 14px;border-radius:999px;margin-bottom:1.1rem; }
.job-card h5 { font-size:1.15rem;font-weight:800;color:#111;margin-bottom:0;line-height:1.3; }
.job-price { color:var(--red);font-weight:800;font-size:1.35rem;margin:1rem 0; }
.job-divider { border:none;border-top:1px solid #e5e7eb;margin:0 0 1rem; }
.job-meta { list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px; }
.job-card-body .job-meta { margin-top: auto; }
.job-meta li { display:flex;align-items:center;gap:10px;font-size:.9rem;color:#374151; }
.job-meta li svg { color:var(--red);flex-shrink:0; }
.job-footer { display:flex;align-items:center;justify-content:space-between;margin-top:1.1rem;padding-top:1rem;border-top:1px solid #e5e7eb; }
.job-link { color:var(--red);font-size:.9rem;font-weight:600;text-decoration:none;transition:color .2s; }
.job-link:hover { color:#c62d21; }
.job-arrow { width:38px;height:38px;background:#fde8e6;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--red);transition:background .2s;flex-shrink:0;text-decoration:none; }
.job-card:hover .job-arrow { background:var(--red);color:#fff; }

/* ─── PROCESS ─── */
.process-section { background:#fff;padding:80px 0; }
.process-box { background:#f5f6f8;border-radius:24px;padding:60px 48px 56px; }
.process-steps { display:flex;align-items:stretch;gap:12px;margin-top:48px; }
.process-step-wrap { flex:1;position:relative; }
.process-step { width:100%;background:#fff;border-radius:16px;border:1px solid #e5e7eb;padding:24px 16px;text-align:center;display:flex;flex-direction:column;align-items:center; }
.process-step-wrap .process-arrow-circle { position:absolute;right:-28px;top:50%;transform:translateY(-50%);z-index:2;width:48px;height:48px;border-radius:50%;background:#F7F7F7;display:flex;align-items:center;justify-content:center;padding:8px;color:#9ca3af; }
.process-number { width:52px;height:52px;border-radius:50%;background:var(--red);color:#fff;font-weight:800;font-size:1.2rem;display:flex;align-items:center;justify-content:center;margin-bottom:20px;flex-shrink:0; }
.process-step h6 { font-weight:800;font-size:1rem;color:var(--dark-navy);margin-bottom:.5rem; }
.process-step p { font-size:.84rem;color:var(--muted);margin:0;line-height:1.55; }

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--dark-navy);
  padding: 80px 0 0;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}

.testimonials-section .sub {
  color: #9ca3af;
  font-size: .95rem;
  line-height: 1.6;
}

.testimonials-section .testimonial-card {
  background: #222840;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 1.4rem;
}

.testimonials-section .testimonial-card .stars {
  color: #f59e0b;
  font-size: .85rem;
  margin-bottom: .75rem;
  letter-spacing: 2px;
}

.testimonials-section .testimonial-card .quote {
  font-size: .875rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: .9rem;
}

.testimonials-section .testimonial-card .author {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
}

.testimonials-section .testimonial-card-featured {
  border-color: rgba(230,53,40,.3);
  padding: 2rem;
}

.testimonials-section .testimonial-card-featured .stars {
  font-size: 1.1rem;
}

.testimonials-section .testimonial-card-featured .quote {
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.testimonials-section .testimonial-card-featured .author {
  font-size: .9rem;
}

.testimonials-section .featured-meta {
  margin-top: .5rem;
  color: #6b7280;
  font-size: .75rem;
}
.stats-bar { background:rgba(255,255,255,.04);border-top:1px solid rgba(255,255,255,.07);padding:40px 0;margin-top:60px; }
.stat-item { text-align:center; }
.stat-item .stat-num { font-size:2.5rem;font-weight:800;color:#fff;line-height:1;margin-bottom:.3rem; }
.stat-item .stat-label { font-size:.82rem;color:#9ca3af;font-weight:500; }
.stat-divider { width:1px;background:rgba(255,255,255,.12);align-self:stretch;min-height:50px; }

/* ─── ABOUT ─── */
.about-section { background:#fff;padding:80px 0; }
.about-img { width:100%;height:420px;object-fit:cover;border-radius:8px; }
.about-bullets { list-style:none;padding:0;margin:0; }
.about-bullets li { display:flex;align-items:flex-start;gap:10px;font-size:.92rem;color:#374151;margin-bottom:.75rem;line-height:1.5; }
.about-bullets li::before { content:'';width:8px;height:8px;border-radius:50%;background:var(--red);flex-shrink:0;margin-top:6px; }

/* ─── MOBILE hero image – hidden on desktop ─── */
.hero-mobile-img { display: none; }

.section-description { max-width: 30rem; margin: 1rem auto 0; font-size: 0.92rem; }
.section-heading-small { font-size: 2.125rem; }
.jobs-note { font-size: 0.92rem; }
.job-card-img-placeholder { object-fit: contain; object-position: center; padding: 2rem; background: #f5f6f8; }
.about-img-placeholder { object-fit: contain; object-position: center; padding: 2rem; background: #f5f6f8; }
.text-red { color: var(--red); }
.form-honeypot { display: none; position: absolute; left: -9999px; }
.f-send-error { color: var(--red); font-size: 0.78rem; margin-top: 0.6rem; text-align: center; }
.contact-main-link { color: var(--red); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.contact-main-link:hover { color: var(--red-h); }
.contact-person-row-last { border-bottom: none; padding-bottom: 0; }
.contact-person-img-placeholder { object-fit: contain; padding: 0.5rem; background: #f5f6f8; }
.contact-address-row { border-bottom: none; }
.contact-address-col { border-right: 1px solid var(--border); }
.contact-kicker { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--muted); margin-bottom: 0.25rem; }
.team-section { background: #f5f6f8; }
.team-card-img-placeholder { object-fit: contain; padding: 1.5rem; background: #f5f6f8; }
.about-banner-section { background: #fff; }
.about-banner-img { width: 100%; object-fit: cover; object-position: center 30%; display: block; }
.about-banner-placeholder { object-fit: contain; padding: 3rem 1rem; background: #f5f6f8; }
.quote-card { border-left: 0.25rem solid var(--red); background: #fef2f2; display: flex; align-items: flex-start; flex-direction: column; }
.story-img { width: 100%; height: 26.25rem; object-fit: cover; border-radius: 1rem; }
.photo-grid-section { background: #f5f6f8; padding: 0 0 3rem; }
.photo-grid-img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; border-radius: 0.75rem; display: block; }
.timeline-section { background: #f5f6f8; }
.about-stats-section { background: var(--dark-navy); }
.about-stat-number { font-size: 2.5rem; font-weight: 800; }
.about-stat-label { font-size: 0.82rem; color: #9ca3af; }
.value-icon { width: 3rem; height: 3rem; min-width: 3rem; background: #fde8e6; border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: var(--red); }
.about-heading { font-size: 1.85rem; color: var(--dark-navy); line-height: 1.25; }
.about-text { color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }

.faq-wrap { padding: 4rem 0 5rem; background: var(--body-bg); counter-reset: faq-question; }

/* ─── CATEGORY LABEL ─── */
.faq-group { margin-bottom: 2.5rem; }

.faq-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.faq-group-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--red);
  opacity: 0.35;
}

/* ─── ACCORDION ITEM ─── */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  counter-increment: faq-question;
}

.faq-item.is-open {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(230,53,40,0.08);
}

/* ─── QUESTION BUTTON ─── */
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.faq-num::before {
  content: counter(faq-question);
}

.faq-item.is-open .faq-num {
  background: var(--red);
  color: #fff;
}

.faq-question {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.35;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
  color: var(--muted);
}

.faq-item.is-open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

/* ─── ANSWER PANEL ─── */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel-inner {
  padding: 0 1.4rem 1.25rem 3.9rem;
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}

/* ─── SIDEBAR ─── */
.faq-sidebar-sticky { position: sticky; top: 80px; }

.faq-nav-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.faq-nav-head {
  padding: 0.65rem 1.2rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--body-bg);
}

.faq-nav-list { padding: 0.5rem 0; }

.faq-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  color: var(--dark-navy);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.faq-nav-item:hover { background: var(--body-bg); color: var(--red); }

.faq-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.15s;
}

.faq-nav-item:hover .faq-nav-dot { background: var(--red); }

.cta-card {
  background: var(--dark-navy);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
}

.cta-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.cta-card p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.cta-card .btn-red { width: 100%; justify-content: center; margin-bottom: 0.6rem; }

.cta-card .cta-tel {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.cta-card .cta-tel:hover { color: #fff; }

/* body override — detail page uses body-bg instead of white */
body { background: var(--body-bg); }

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

/* .detail-hero::before background-image is injected inline (dynamic PHP value) */
.detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.detail-hero-symbol {
  position: absolute;
  right: -140px;
  bottom: 0;
  width: 420px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
}

.detail-hero-symbol svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
}

@media (max-width: 991px) { .detail-hero-symbol { width: 260px; } }
@media (max-width: 575px) { .detail-hero-symbol { display: none; } }

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 0 3.5rem;
}

.hero-tag {
  display: inline-block;
  background: rgba(230,53,40,0.2);
  border: 1px solid rgba(230,53,40,0.4);
  color: #ff8c85;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1rem;
}

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

.hero-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
}

.hero-pill svg { color: var(--red); flex-shrink: 0; }

.hero-pill.pill-green {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.25);
  color: #4ade80;
}

/* ─── MAIN LAYOUT ─── */
.detail-wrap { padding: 2.5rem 0 5rem; }

/* ─── CONTENT BLOCKS ─── */
.section-block {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.25rem;
}

.block-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.block-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1.2rem;
}

.intro-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.75;
}

/* ─── DETAIL LISTS ─── */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.55;
}

.detail-list li .li-icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.detail-list li .li-icon svg { color: #fff; }

.detail-list.offer-list li .li-icon { background: #d1fae5; }
.detail-list.offer-list li .li-icon svg { color: #059669; }

/* ─── BENEFITS GRID ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.benefit-item-icon {
  width: 36px;
  height: 36px;
  background: #fff1f0;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.benefit-item-text {
  font-size: 0.87rem;
  color: #374151;
  line-height: 1.45;
  padding-top: 0.5rem;
}

@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ─── SIDEBAR ─── */
.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.sidebar-card-head {
  padding: 1rem 1.4rem 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-navy);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card-head::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  border-radius: 99px;
  background: var(--red);
  flex-shrink: 0;
}

.sidebar-card-body { padding: 1.4rem; }

/* ─── SUMMARY PILLS ─── */
.sum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.sum-item {
  background: var(--body-bg);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
}

.sum-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.sum-lbl {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ─── FORM VALIDATION ─── */
.f-input--error {
  border-color: #e63528 !important;
  box-shadow: 0 0 0 3px rgba(230,53,40,0.12) !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

.f-error {
  display: none;
  font-size: 0.72rem;
  color: #e63528;
  margin-top: -0.6rem;
  margin-bottom: 0.75rem;
  padding-left: 2px;
}

.f-error--show { display: block; }

/* ─── FORM ─── */
.f-note {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ─── CONTACT PERSON ─── */
.person-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.person-avatar { position: relative; flex-shrink: 0; }

.person-avatar img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.person-online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
}

.person-name { font-size: 0.95rem; font-weight: 800; color: var(--dark-navy); }
.person-role { font-size: 0.76rem; color: var(--muted); margin-top: 0.1rem; }

.person-avail {
  font-size: 0.72rem;
  color: #16a34a;
  font-weight: 600;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.contact-row strong { display: block; color: var(--dark-navy); font-size: 0.85rem; }

.btn-call {
  display: flex;
  width: 100%;
  text-align: center;
  padding: 0.65rem;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1rem;
  transition: background 0.15s;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ─── FORM SUCCESS STATE ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible { display: block; }

.form-success .ok-icon {
  width: 56px;
  height: 56px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── MOBILE STICKY APPLY BAR ─── */
.mob-apply-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mob-apply-bar--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.mob-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s;
}

.mob-apply-btn { border-radius: 50px; }

/* ─── PAGE WRAP ─── */
.jobs-wrap { padding: 3rem 0 5rem; background: var(--body-bg); }

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}

.filter-btn.active {
  background: var(--dark-navy);
  border-color: var(--dark-navy);
  color: #fff;
}

.filter-btn:not(.active):hover {
  border-color: var(--dark-navy);
  color: var(--dark-navy);
}

.filter-count {
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 0.7rem;
  font-weight: 700;
}

.filter-btn:not(.active) .filter-count {
  background: var(--body-bg);
  color: var(--dark-navy);
}

/* ─── JOB ROW CARD ─── */
.job-row-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: box-shadow 0.2s, transform 0.18s, border-color 0.18s;
  text-decoration: none;
  color: inherit;
}

.job-row-card:hover {
  box-shadow: 0 8px 32px rgba(26,30,46,0.1);
  transform: translateY(-2px);
  border-color: var(--red);
}

.job-row-card[style*="display:none"] { display: none !important; }

.job-row-flag {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.job-row-body { flex: 1; min-width: 0; }

.job-row-tag {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.job-row-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.job-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--muted);
}

.job-meta-item svg { flex-shrink: 0; }

.badge-new {
  display: inline-block;
  background: #d1fae5;
  color: #059669;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.job-row-rate {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-navy);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}

.job-row-rate small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 2px;
}

.job-row-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--body-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
  color: var(--muted);
}

.job-row-card:hover .job-row-arrow { background: var(--red); color: #fff; }

.no-results {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ─── SIDEBAR ─── */
.sidebar-sticky { position: sticky; top: 80px; }

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.info-card-head {
  padding: 1rem 1.4rem 0.9rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark-navy);
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-card-head::before {
  content: '';
  display: block;
  width: 3px;
  height: 14px;
  border-radius: 99px;
  background: var(--red);
}

.info-card-body { padding: 1.25rem 1.4rem; }

/* ─── BENEFITS LIST ─── */
.benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #374151;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.benefit-row:last-child { border-bottom: none; }

.benefit-icon {
  width: 30px;
  height: 30px;
  background: #fff1f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.benefit-label { font-size: 0.67rem; color: var(--muted); display: block; }
.benefit-val   { font-size: 0.85rem; font-weight: 700; color: var(--dark-navy); }

/* ─── FAQ ACCORDION (sidebar) ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  list-style: none;
}

.faq-q::-webkit-details-marker { display: none; }
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; color: var(--muted); }
details[open] .faq-q svg { transform: rotate(180deg); }

.faq-a {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.65;
  padding-bottom: 0.9rem;
}

/* ─── CONTACT DARK CARD ─── */
.contact-dark {
  background: var(--dark-navy);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
}

.contact-dark img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 0.8rem;
  display: block;
  border: none;
}

.contact-dark .cd-name { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.contact-dark .cd-role { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; }

.btn-call-red {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 0.65rem;
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s;
  margin-bottom: 0.6rem;
}

.cd-note { font-size: 0.7rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ─── TESTIMONIALS ─── */
.references-section .testimonial-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.references-section .testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.references-section .testimonial-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--dark-navy);
  flex: 1;
  margin-bottom: 1.25rem;
}

.references-section .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.references-section .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.references-section .testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.references-section .testimonial-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ─── CONTACT PERSON ROW ─── */
.contact-person-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-person-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: none;
}
.contact-person-info { flex: 1; min-width: 0; }
.contact-person-name { font-size: 0.85rem; font-weight: 700; color: var(--dark-navy); }
.contact-person-role { font-size: 0.72rem; color: var(--muted); }
.contact-person-email { font-size: 0.7rem; color: var(--red); text-decoration: none; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-person-email:hover { text-decoration: underline; }
.contact-person-phone { font-size: 0.75rem; font-weight: 600; color: var(--dark-navy); white-space: nowrap; text-decoration: none; flex-shrink: 0; }
.contact-person-phone:hover { color: var(--red); }
.contact-card-email { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.82rem; color: var(--red); text-decoration: none; }
.contact-card-email svg { color: var(--muted); flex-shrink: 0; }
.contact-card-email:hover { color: var(--red-h); }

.video-card { padding: 0; overflow: hidden; }
.responsive-video { position: relative; aspect-ratio: 16 / 9; width: 100%; background: #111827; }
.responsive-video iframe { position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important; border: 0 !important; }

/* ─── FORM VALIDATION ─── */
.f-input--error {
  border-color: #e63528 !important;
  box-shadow: 0 0 0 3px rgba(230,53,40,0.12) !important;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-4px); }
  75%      { transform: translateX(4px); }
}

.f-error {
  display: none;
  font-size: 0.72rem;
  color: #e63528;
  margin-top: -0.6rem;
  margin-bottom: 0.75rem;
  padding-left: 2px;
}

.f-error--show { display: block; }

/* ─── FORM SUCCESS ─── */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success .ok-icon {
  width: 56px;
  height: 56px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0.4rem;
}

.form-success p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── TEAM CARDS ─── */
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(26,30,46,0.1); transform: translateY(-3px); }
.team-card-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-card-body { padding: 1.1rem 1rem 1.2rem; }
.team-card-name { font-size: 0.95rem; font-weight: 800; color: var(--dark-navy); margin-bottom: 2px; }
.team-card-role { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.5rem; }
.team-card-flags { display: flex; justify-content: center; gap: 4px; margin-bottom: 0.6rem; font-size: 1.1rem; }
.team-card-email { font-size: 0.75rem; color: var(--red); text-decoration: none; }
.team-card-email:hover { text-decoration: underline; }

.legal-wrap { padding: 4rem 0 5rem; background: var(--body-bg); }
.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.legal-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 2rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--border);
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 1.4rem 0 0.4rem;
}
.legal-card p { color: #374151; line-height: 1.75; margin-bottom: 0.85rem; font-size: 0.9rem; }
.legal-card ul, .legal-card ol { color: #374151; font-size: 0.9rem; line-height: 1.75; padding-left: 1.4rem; margin-bottom: 0.85rem; }
.legal-card li { margin-bottom: 0.35rem; }
.legal-card strong { color: var(--dark-navy); }
.legal-card a { color: var(--red); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.legal-card .effective-date {
  display: inline-block;
  background: #f3f4f6;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 1rem 0 1.5rem;
}
.legal-table th {
  background: var(--dark-navy);
  color: #fff;
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
}
.legal-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--border);
  color: #374151;
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table tr:nth-child(even) td { background: #f9fafb; }

/* ═══════════════════════════════════════════════
   MOBILE.CSS — Global mobile styles
   Breakpoints: 991px, 768px, 576px, 480px, 375px
   ═══════════════════════════════════════════════ */

/* ─── HAMBURGER BUTTON ─── */
.mob-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 1100;
  position: relative;
}

.mob-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
  transform-origin: center;
}

.mob-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.mob-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── FULLPAGE MOBILE MENU ─── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.mob-menu.is-open {
  opacity: 1;
  transform: translateX(0);
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  padding: 0;
}

/* ─── TOPBAR ─── */
.mob-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.mob-menu-logo { width: 5.25rem; height: auto; display: block; }

.mob-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f3f4f6;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--dark-navy);
  flex-shrink: 0;
  transition: background 0.15s;
}

.mob-close:hover { background: #e5e7eb; }

/* ─── NAV LINKS ─── */
.mob-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 24px;
  overflow-y: auto;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.15s;
}

.mob-nav-link:last-child { border-bottom: none; }
.mob-nav-link svg { color: #d1d5db; transition: color 0.15s, transform 0.15s; }
.mob-nav-link:hover, .mob-nav-link.active { color: var(--red); }
.mob-nav-link:hover svg, .mob-nav-link.active svg { color: var(--red); transform: translateX(3px); }

/* ─── CTA BLOCK (pinned bottom) ─── */
.mob-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 28px;
  border-top: 1px solid #f3f4f6;
  flex-shrink: 0;
  background: #fff;
}

.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s;
}

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

.mob-badge {
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.mob-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.mob-phone:hover { border-color: var(--red); }

.mob-phone-icon {
  width: 44px;
  height: 44px;
  background: #fde8e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.mob-phone-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.mob-phone-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
  letter-spacing: 0.01em;
}

/* ─── FILTER PILLS ─── */
.filter-bar { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-bottom:2rem; }
.filter-pill {
  padding: 7px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  line-height: 1;
}
.filter-pill:hover { border-color: var(--red); color: var(--red); }
.filter-pill.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ─── MASONRY GRID ─── */
.gallery-masonry {
  columns: 4;
  column-gap: 12px;
}
@media (max-width:1199px) { .gallery-masonry { columns: 3; } }
@media (max-width:767px)  { .gallery-masonry { columns: 2; } }
@media (max-width:479px)  { .gallery-masonry { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item a {
  display: block;
  color: inherit;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform .3s;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,18,32,.45);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  padding: 12px;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-cat-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--red);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.75rem;
  top: 0.6rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1e2e;
  margin-bottom: 0.25rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* ─── WHATSAPP ─── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 800;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); color: #fff; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 800;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border: none;
  outline: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.125rem;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background-color 0.3s ease-in-out;
  pointer-events: none;
}
.back-to-top.is-visible { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { opacity: 0.5 !important; border: 1px solid var(--primary); background-color: var(--primary); color: var(--white); }
.back-to-top svg { width: 1.25rem; height: 1.25rem; min-width: 1.25rem; min-height: 1.25rem; stroke-width: 2; }

/* ─── UNIFIED BUTTON HOVERS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  font-family: var(--body-font);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn,
.btn-primary,
.btn-transparent-primary,
.btn-hero-secondary,
.btn-white,
.btn-red,
.btn-outline-red,
.btn-hero-muted,
.btn-cta-white,
.btn-cta-outline,
.btn-contact-header,
.btn-jobs-header,
.btn-hero-primary,
.btn-hero-outline,
.f-submit,
.btn-call,
.btn-call-red,
.mob-apply-btn {
  font-family: var(--body-font);
  transition: all 0.3s ease-in-out;
}

.btn:hover,
.btn-primary:hover,
.btn-transparent-primary:hover,
.btn-hero-secondary:hover,
.btn-white:hover,
.btn-red:hover,
.btn-outline-red:hover,
.btn-hero-muted:hover,
.btn-cta-white:hover,
.btn-cta-outline:hover,
.btn-contact-header:hover,
.btn-jobs-header:hover,
.btn-hero-primary:hover,
.btn-hero-outline:hover,
.f-submit:hover,
.btn-call:hover,
.btn-call-red:hover,
.mob-apply-btn:hover {
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.btn:active,
.btn-primary:active,
.btn-transparent-primary:active,
.btn-hero-secondary:active,
.btn-white:active,
.btn-red:active,
.btn-outline-red:active,
.btn-hero-muted:active,
.btn-cta-white:active,
.btn-cta-outline:active,
.btn-contact-header:active,
.btn-jobs-header:active,
.btn-hero-primary:active,
.btn-hero-outline:active,
.f-submit:active,
.btn-call:active,
.btn-call-red:active,
.mob-apply-btn:active {
  box-shadow: none;
  transform: translateY(0);
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-transparent-primary:focus-visible,
.btn-hero-secondary:focus-visible,
.btn-white:focus-visible,
.btn-red:focus-visible,
.btn-outline-red:focus-visible,
.btn-hero-muted:focus-visible,
.btn-cta-white:focus-visible,
.btn-cta-outline:focus-visible,
.btn-contact-header:focus-visible,
.btn-jobs-header:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-outline:focus-visible,
.f-submit:focus-visible,
.btn-call:focus-visible,
.btn-call-red:focus-visible,
.mob-apply-btn:focus-visible {
  outline: 2px solid rgba(228, 56, 38, 0.34);
  outline-offset: 0.2rem;
}

.btn-transparent-primary,
.btn-outline-red,
.btn-contact-header {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-transparent-primary::before,
.btn-outline-red::before,
.btn-contact-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.btn-transparent-primary:hover::before,
.btn-outline-red:hover::before,
.btn-contact-header:hover::before {
  transform: translateX(0);
}

.btn-transparent-primary:hover,
.btn-outline-red:hover,
.btn-contact-header:hover {
  background-color: transparent;
  color: var(--white);
}

.btn-primary,
.btn-red,
.btn-hero-primary,
.f-submit,
.btn-call,
.btn-call-red,
.mob-apply-btn {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover,
.btn-red:hover,
.btn-hero-primary:hover,
.f-submit:hover,
.btn-call:hover,
.btn-call-red:hover,
.mob-apply-btn:hover {
  background-color: var(--primary-h);
  border-color: var(--primary-h);
  color: var(--white);
}

.btn-hero-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary svg,
.btn-hero-muted svg,
.btn-hero-outline svg,
.btn-cta-outline svg {
  color: currentColor;
  transition: color 0.3s ease;
}

.btn-hero-secondary svg [stroke],
.btn-hero-muted svg [stroke],
.btn-hero-outline svg [stroke],
.btn-cta-outline svg [stroke] {
  transition: stroke 0.3s ease;
}

.btn-hero-secondary svg [fill]:not([fill="none"]),
.btn-hero-muted svg [fill]:not([fill="none"]),
.btn-hero-outline svg [fill]:not([fill="none"]),
.btn-cta-outline svg [fill]:not([fill="none"]) {
  transition: fill 0.3s ease;
}

.btn-hero-secondary:hover,
.btn-hero-muted:hover,
.btn-hero-outline:hover,
.btn-cta-outline:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn-hero-secondary:hover svg,
.btn-hero-muted:hover svg,
.btn-hero-outline:hover svg,
.btn-cta-outline:hover svg {
  color: var(--black);
}

.btn-hero-secondary:hover svg [stroke],
.btn-hero-muted:hover svg [stroke],
.btn-hero-outline:hover svg [stroke],
.btn-cta-outline:hover svg [stroke] {
  stroke: var(--black);
}

.btn-hero-secondary:hover svg [fill]:not([fill="none"]),
.btn-hero-muted:hover svg [fill]:not([fill="none"]),
.btn-hero-outline:hover svg [fill]:not([fill="none"]),
.btn-cta-outline:hover svg [fill]:not([fill="none"]) {
  fill: var(--black);
}

.btn-white,
.btn-cta-white {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--white);
}

.btn-white:hover,
.btn-cta-white:hover {
  background-color: transparent;
  color: var(--white);
  opacity: 1;
}

.vision-values-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.offers-page .testimonial-card {
  background: var(--body-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offers-page .testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.offers-page .testimonial-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--dark-navy);
  flex: 1;
  margin-bottom: 1.25rem;
}

.offers-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offers-page .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offers-page .testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.offers-page .testimonial-role {
  font-size: 0.72rem;
  color: var(--muted);
}

/* ─── FAQ ACCORDION (sidebar) ─── */
.offers-page .faq-item { border: none; border-bottom: 1px solid var(--border); }
.offers-page .faq-item:last-child { border-bottom: none; }

.offers-page .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  list-style: none;
}

.offers-page .faq-q::-webkit-details-marker { display: none; }
.offers-page .faq-q svg { flex-shrink: 0; transition: transform 0.2s; color: var(--muted); }
.offers-page details[open] .faq-q svg { transform: rotate(180deg); }

.offers-page .faq-a {
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.65;
  padding-bottom: 0.9rem;
}