/* ============================================================
   PAGES.CSS — Shared styles for all inner pages
   Services, About, Contact, FAQ, Jobs, Terms, What-We-Do
   Uses same CSS variables as index-redesign.css
   ============================================================ */

/* ── PAGE BANNER (shared hero banner for inner pages) ─────── */
.page-banner {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 41, 78, 0.86), rgba(16, 66, 123, 0.78)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
}
.page-banner-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 260px;
  padding: 32px 24px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
}
.page-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.page-banner-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.92);
}

/* ── CONTACT HERO (contact page variant) ─────────────────── */
.contact-hero {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 41, 78, 0.86), rgba(16, 66, 123, 0.8)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=80")
      center/cover no-repeat;
  z-index: 1;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 38px 24px;
}
.contact-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.62;
  margin-bottom: 18px;
}
.contact-hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PAGE SECTIONS ───────────────────────────────────────── */
.page-section {
  padding: 72px 0;
}
.page-section.compact-top {
  padding-top: 36px;
}
.page-section.alt-bg {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.page-section.white-bg {
  background: #fff;
}

/* ── CONTACT CARDS ───────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}
.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light, #fff2e8);
  color: var(--primary, #ea580c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.contact-card-title {
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 8px;
  color: var(--ink, #0f172a);
  line-height: 1.1;
  font-weight: 700;
}
.contact-card-text {
  font-size: 0.95rem;
  color: var(--slate, #334155);
  line-height: 1.7;
}
.contact-card-text a {
  color: var(--ink, #1f2937);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card-text a:hover {
  color: var(--primary, #ea580c);
}
.contact-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1.5px solid var(--primary, #ea580c);
  border-radius: 10px;
  color: var(--primary, #ea580c);
  background: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.2s;
}
.contact-card-action:hover {
  background: var(--primary-light, #fff2e8);
}

/* ── MESSAGE / FORM GRID ─────────────────────────────────── */
.message-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}
#message {
  scroll-margin-top: 88px;
}
.message-panel,
.map-panel {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}
.panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink, #0f172a);
}
.panel-desc {
  color: var(--muted, #64748b);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Form Elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  color: var(--ink, #0f172a);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  min-height: 46px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary, #ea580c);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}
.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-full {
  width: 100%;
}

/* Map */
.map-frame {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 14px;
  margin-bottom: 22px;
}

/* Socials */
.follow-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink, #0f172a);
}
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border, #e2e8f0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--ink, #0f172a);
  font-size: 0.84rem;
  font-weight: 700;
  background: #f8fafc;
  transition: all 0.2s;
}
.social-chip svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}
.social-chip:hover {
  border-color: var(--primary, #ea580c);
  color: var(--primary, #ea580c);
  background: var(--primary-light, #fff2e8);
}

/* ── FAQ (contact-page inline + standalone faq page) ─────── */
.faq-wrap {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.faq-wrap .faq-item,
.faq-list .faq-item {
  background: #fff;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.faq-wrap .faq-item.open,
.faq-list .faq-item.open {
  border-color: var(--primary, #ea580c);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.1);
}
.faq-btn,
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  line-height: 1.45;
  transition: color 0.2s;
}
.faq-btn:hover,
.faq-question:hover {
  background: #fffaf6;
}
.faq-item.open .faq-btn,
.faq-item.open .faq-question {
  color: var(--primary, #ea580c);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid var(--border, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted, #64748b);
  transition: all 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--primary-light, #fff2e8);
  border-color: var(--primary, #ea580c);
  color: var(--primary, #ea580c);
  transform: rotate(45deg);
}
.faq-body,
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-item.open .faq-body,
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-body-inner,
.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 0.92rem;
  color: var(--slate, #475569);
  line-height: 1.75;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}
.faq-answer-inner p + p {
  margin-top: 10px;
}
.faq-answer-inner a {
  color: var(--primary, #ea580c);
  text-decoration: none;
  font-weight: 600;
}
.faq-answer-inner a:hover {
  text-decoration: underline;
}
.faq-note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  text-align: center;
}

/* ── FAQ PAGE SPECIFIC ───────────────────────────────────── */
.faq-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  position: relative;
  overflow: hidden;
  padding: 72px 24px 64px;
  text-align: center;
}
.faq-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.14), transparent 65%);
  pointer-events: none;
}
.faq-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.4);
  background: rgba(234, 88, 12, 0.12);
  color: #fb923c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.faq-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.faq-hero-title span {
  color: #fb923c;
}
.faq-hero-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto;
}

/* FAQ Tabs */
.faq-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border, #e2e8f0);
  position: sticky;
  top: 0;
  z-index: 50;
}
.faq-tabs {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.faq-tabs::-webkit-scrollbar {
  display: none;
}
.faq-tab {
  padding: 16px 22px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted, #64748b);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.faq-tab:hover {
  color: var(--primary, #ea580c);
}
.faq-tab.active {
  color: var(--primary, #ea580c);
  border-bottom-color: var(--primary, #ea580c);
}

/* FAQ Body Container */
.faq-page-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px 24px 72px;
}
.faq-section-tab {
  display: none;
}
.faq-section-tab.active {
  display: block;
}
.faq-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 6px;
}
.faq-section-desc {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ CTA Panel */
.faq-cta {
  margin-top: 52px;
  background: linear-gradient(135deg, #fff3e8 0%, #fff9f4 100%);
  border: 1px solid #f3d4c8;
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-cta-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--ink, #0f172a);
  margin-bottom: 8px;
}
.faq-cta-text p {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
  line-height: 1.6;
  max-width: 52ch;
}
.faq-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.about-shell {
  background: #f4f6fb;
}
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 68px 24px;
}
.about-section-tight {
  padding-top: 0;
}
.about-card {
  background: #fff;
  border: 1px solid #dbe5f3;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 28px;
}
.about-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink, #0f172a);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.about-copy {
  color: var(--slate, #344054);
  font-size: 1rem;
  line-height: 1.85;
}
.about-copy-spaced {
  margin-top: 10px;
}
.headline-tight {
  margin-bottom: 6px;
}
.headline-tightest {
  margin-bottom: 2px;
}

/* About Company Grid */
.about-company-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cert-card {
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  background: #f8fbff;
  overflow: hidden;
  min-height: 250px;
}
.cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Director */
.director-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
}
.director-photo-wrap {
  width: 280px;
  height: 280px;
  border-radius: 999px;
  overflow: hidden;
  border: 6px solid #e8eef8;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
  background: #fff;
}
.director-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.director-name {
  font-size: 1.8rem;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink, #0f172a);
  margin-bottom: 6px;
}
.director-role {
  color: #1d4ed8;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

/* Mission / Vision */
.mv-stack {
  display: grid;
  gap: 18px;
}
.mv-row {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid #dbe5f3;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.mv-row.reverse {
  grid-template-columns: 1fr 1.35fr;
}
.mv-image-panel {
  border: 1px solid #dbe5f3;
  border-radius: 12px;
  overflow: hidden;
  min-height: 210px;
  background: #f8fbff;
}
.mv-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv-text-panel {
  padding: 2px;
}
.mv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1.03;
  color: var(--ink, #0f172a);
  margin-bottom: 10px;
  font-weight: 700;
}

/* Values */
.values-head {
  text-align: center;
  margin-bottom: 22px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.value-chip {
  border: 1px solid #bfd6f6;
  border-radius: 12px;
  background: #fff;
  padding: 14px 10px;
  text-align: center;
  min-height: 92px;
  display: grid;
  place-items: center;
  gap: 7px;
}
.value-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  background: #eff6ff;
}
.value-name {
  font-size: 0.83rem;
  color: var(--ink, #0f172a);
  font-weight: 700;
  line-height: 1.4;
}
.value-desc {
  font-size: 0.78rem;
  color: var(--slate, #475467);
  line-height: 1.55;
  text-align: center;
  max-width: 24ch;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.team-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dbe5f3;
  min-height: 240px;
}
.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About CTA */
.about-cta {
  background: linear-gradient(120deg, #f97316 0%, #ea580c 52%, #c2410c 100%);
  border-radius: 18px;
  color: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.about-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 8px;
  font-weight: 700;
}
.about-cta-copy {
  max-width: 62ch;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}
.about-cta .btn {
  background: #fff;
  color: #9a3412;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.about-cta .btn:hover {
  background: #fff7ed;
  color: #7c2d12;
  transform: translateY(-1px);
}

/* ── SERVICES CTA ────────────────────────────────────────── */
.services-cta {
  background: linear-gradient(120deg, #f97316 0%, #ea580c 52%, #c2410c 100%);
  padding: 72px 0;
  color: #fff;
  text-align: center;
}
.services-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.services-cta-desc {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ── JOBS PAGE ───────────────────────────────────────────── */
.jobs-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  padding: 48px 24px;
  text-align: center;
  color: #fff;
}
.jobs-hero .hero-card {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(8px);
}
.jobs-hero .hero-kicker {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: #fb923c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.jobs-hero .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
}
.jobs-hero .hero-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 50ch;
  margin: 0 auto 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}
.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fb923c;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* Search Panel */
.search-wrap {
  max-width: 900px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.search-panel {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}
.search-row {
  display: flex;
  gap: 12px;
}
.search-row.top {
  margin-bottom: 12px;
}
.search-row.bottom {
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 140px;
  padding: 12px 14px;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  min-height: 46px;
  transition: border-color 0.2s;
}
.search-input:focus {
  outline: none;
  border-color: var(--primary, #ea580c);
}
.search-btn {
  min-height: 46px;
  padding: 12px 24px;
  white-space: nowrap;
}

/* Jobs Main */
.jobs-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.section-kicker {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--primary-light, #fff2e8);
  border: 1px solid rgba(234, 88, 12, 0.2);
  color: var(--primary, #ea580c);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.results-count {
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  margin-bottom: 20px;
  font-weight: 600;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 18px;
}

/* Job Card */
.job-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.job-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--primary-light, #fff2e8);
  color: var(--primary, #ea580c);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.job-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 6px;
  line-height: 1.3;
}
.job-company {
  font-size: 0.88rem;
  color: var(--muted, #64748b);
  margin-bottom: 12px;
}
.job-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.job-fact {
  font-size: 0.82rem;
  color: var(--slate, #475569);
  display: flex;
  align-items: center;
  gap: 6px;
}
.job-fact-icon {
  font-size: 0.9rem;
}
.job-actions {
  display: flex;
  gap: 8px;
}

/* Login Prompt */
.login-prompt {
  background: linear-gradient(135deg, #fff3e8 0%, #fff9f4 100%);
  border: 1px solid #f3d4c8;
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}
.login-prompt.hidden {
  display: none;
}
.login-prompt-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 8px;
}
.login-prompt-desc {
  font-size: 0.92rem;
  color: var(--slate, #475569);
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto 18px;
}
.login-prompt-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Job Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: none;
  place-items: center;
}
.modal-overlay.show {
  display: grid;
}
.modal {
  background: #fff;
  border-radius: 20px;
  max-width: 680px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border, #e2e8f0);
  background: #f8fafc;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted, #64748b);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fca5a5;
}
.modal-login {
  text-align: center;
  max-width: 440px;
}
.modal-login-icon {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--primary-light, #fff2e8);
  color: var(--primary, #ea580c);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 0.92rem;
  color: var(--muted, #64748b);
  line-height: 1.6;
  margin-bottom: 20px;
}
.modal-login-benefits {
  background: #f8fafc;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 18px;
  text-align: left;
  margin-bottom: 20px;
}
.modal-login-benefits-title {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.modal-login-benefits-list {
  list-style: none;
  padding: 0;
}
.modal-login-benefits-list li {
  font-size: 0.88rem;
  color: var(--slate, #475569);
  padding: 4px 0;
}
.modal-login-benefits-list li::before {
  content: "✓ ";
  color: #16a34a;
  font-weight: 700;
}
.modal-login-price {
  margin-top: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary, #ea580c);
}
.modal-login-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-login-actions .btn {
  width: 100%;
  justify-content: center;
}

/* ── WHAT-WE-DO PAGE ─────────────────────────────────────── */
.wwd-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
  margin-top: 32px;
}
.wwd-testimonial-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.wwd-testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}
.wwd-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.wwd-testimonial-text {
  font-size: 1rem;
  color: var(--slate, #475569);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.wwd-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border, #e2e8f0);
  padding-top: 16px;
}
.wwd-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary, #ea580c),
    var(--gold, #f59e0b)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}
.wwd-author-name {
  font-weight: 700;
  color: var(--ink, #0f172a);
  font-size: 0.95rem;
}
.wwd-author-role {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
}

.wwd-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.wwd-client {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate, #475569);
  transition: all 0.2s;
}
.wwd-client:hover {
  border-color: var(--primary, #ea580c);
  color: var(--primary, #ea580c);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.08);
}

/* ── JOB DETAIL (modal interior) ─────────────────────────── */
.job-detail-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.job-detail-summary {
  margin-bottom: 18px;
}
.job-type-chip {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  background: var(--primary-light, #fff2e8);
  color: var(--primary, #ea580c);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.job-title-lg {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6px;
}
.job-company-lg {
  font-size: 0.92rem;
  color: var(--muted, #64748b);
  margin-bottom: 12px;
}
.job-summary-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-green {
  background: #dcfce7;
  color: #16a34a;
}
.badge-primary {
  background: var(--primary-light, #fff2e8);
  color: var(--primary, #ea580c);
}
.job-detail-card {
  background: #f8fafc;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 14px;
}
.job-detail-section-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 8px;
  color: var(--ink, #0f172a);
}
.job-detail-desc {
  font-size: 0.9rem;
  color: var(--slate, #475569);
  line-height: 1.7;
}
.side-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.side-actions .btn {
  width: 100%;
  justify-content: center;
}
.job-meta-grid {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--slate, #475569);
}

/* Job Card extras */
.job-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.job-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    var(--primary, #ea580c),
    var(--gold, #f59e0b)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin-bottom: 12px;
}
.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.job-salary {
  font-weight: 700;
  color: var(--primary, #ea580c);
  font-size: 0.92rem;
}
.job-posted {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
}
.job-action-meta {
  font-size: 0.82rem;
  color: var(--slate, #475569);
  margin-bottom: 4px;
}
.btn-fill {
  width: 100%;
  justify-content: center;
}
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--muted, #64748b);
  font-size: 1rem;
}

/* ── TOAST ────────────────────────────────────────────────── */
.toast-root {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--ink, #0f172a);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  animation: toastIn 0.3s ease;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.toast-success {
  background: #16a34a;
}
.toast-error {
  background: #dc2626;
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── BUTTON EXTRAS (not in index-redesign) ───────────────── */
.btn-light {
  background: #fff;
  color: #0f3b72;
  border: 1.5px solid #fff;
}
.btn-light:hover {
  background: #eff6ff;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: #fff;
  color: var(--primary, #ea580c);
  border: none;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-white:hover {
  background: #fff7ed;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .message-grid {
    grid-template-columns: 1fr;
  }
  .about-company-grid {
    grid-template-columns: 1fr;
  }
  .director-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .director-photo-wrap {
    margin: 0 auto;
    width: 220px;
    height: 220px;
  }
  .mv-row,
  .mv-row.reverse {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .search-row.bottom {
    flex-direction: column;
  }
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  .job-detail-shell {
    grid-template-columns: 1fr;
  }
  .job-facts {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-banner-content {
    padding: 22px 16px;
    min-height: 210px;
  }
  .page-banner-title {
    font-size: 1.8rem;
  }
  .page-banner-desc {
    font-size: 0.92rem;
  }
  .contact-hero {
    min-height: 240px;
  }
  .contact-hero-inner {
    padding: 26px 16px;
  }
  .contact-hero-title {
    font-size: 1.8rem;
  }
  .contact-hero-desc {
    font-size: 0.93rem;
    margin-bottom: 14px;
  }
  .contact-hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .contact-hero-actions .btn {
    width: 100%;
    max-width: 260px;
  }
  .page-section {
    padding: 52px 0;
  }
  .page-section.compact-top {
    padding-top: 22px;
  }
  .message-panel,
  .map-panel {
    padding: 20px;
  }
  .panel-title {
    font-size: 1.75rem;
  }
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 260px;
  }
  .faq-hero {
    padding: 52px 18px 46px;
  }
  .faq-page-body {
    padding: 36px 16px 52px;
  }
  .faq-question {
    font-size: 0.9rem;
    padding: 15px 16px;
  }
  .faq-answer-inner {
    padding: 0 16px 16px;
    padding-top: 12px;
  }
  .faq-cta {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-cta-actions {
    width: 100%;
  }
  .faq-cta-actions a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .search-wrap {
    margin-top: -20px;
  }
  .search-panel {
    padding: 16px;
  }
  .jobs-main {
    padding: 36px 18px 52px;
  }
  .login-prompt {
    padding: 24px 18px;
  }
  .wwd-clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }
  .job-detail-shell {
    grid-template-columns: 1fr;
  }
}
