/* ============================================================
   Quality Precision Industries Pvt. Ltd. — site stylesheet
   ============================================================ */

:root{
  --navy: #0b3559;
  --forest: #4CA777;
  --forest-dark: #3D8A62;
  --navy-dark: #082541;
  --charcoal: #1c1c1e;
  --red: #4CA777;
  --red-dark: #3D8A62;
  --orange: #f0932b;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f4;
  --gray-200: #e2e6eb;
  --gray-400: #a6adb6;
  --gray-600: #6b7280;
  --gray-800: #2f3438;
  --white: #ffffff;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 18px 48px rgba(15, 23, 42, 0.16);
  --maxw: 1180px;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 .6em;
  color: var(--charcoal);
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 88px 0; }
@media (max-width: 720px){
  section{ padding: 56px 0; }
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(76,167,119,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head{
  max-width: 680px;
  margin: 0 auto 48px;
  text-align:center;
}
.section-head h2{ font-size: clamp(28px, 3.6vw, 38px); }
.section-head p{ color: var(--gray-600); font-size: 17px; }
.section-head.left{ margin: 0 0 48px; text-align:left; }

/* Faded close-up process banner (Capabilities page) */
.process-banner{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 56px 32px;
  margin-bottom: 44px;
  background-size: cover;
  background-position: center;
}
.process-banner::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(160deg, rgba(11,53,89,0.55), rgba(8,37,65,0.85));
}
.process-banner .section-head{ position:relative; z-index:1; }
.process-banner .section-head h2{ color:#fff; }
.process-banner .section-head p{ color:rgba(255,255,255,0.85); }
.process-banner .eyebrow{ background: rgba(255,255,255,0.15); color:#fff; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(76,167,119,0.30);
}
.btn-primary:hover{ background: var(--red-dark); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-dark{
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover{ background: var(--navy-dark); transform: translateY(-2px); }
.btn-ghost{
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--charcoal);
}
.btn-ghost:hover{ border-color: var(--red); color: var(--red); }
.btn-block{ width:100%; }
.btn-sm{ padding: 10px 20px; font-size: 14px; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--gray-200);
}
.nav-wrap{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  height: 78px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height: 46px; width:auto; }
.brand-text{ font-family: var(--font-head); line-height:1.15; }
.brand-text strong{ display:block; font-size: 16px; color: var(--forest); letter-spacing:.01em; }
.brand-text span{ display:block; font-size: 11.5px; color: var(--forest); opacity: .75; letter-spacing:.03em; }

.main-nav{ display:flex; align-items:center; gap: 2px; }
.main-nav a{
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.main-nav a:hover{ color: var(--red); background: var(--gray-50); }
.main-nav a.active{ color: var(--red); }
.nav-cta{ display:flex; align-items:center; gap: 14px; }
.nav-cta .btn{ padding: 11px 22px; font-size: 14px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 8px;
}
.nav-toggle span{ width: 24px; height: 2px; background: var(--charcoal); border-radius:2px; }

@media (max-width: 980px){
  .main-nav{
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y:auto;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ padding: 14px 16px; font-size:16px; border-bottom:1px solid var(--gray-100); border-radius:0; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
}

@media (max-width: 560px){
  .nav-wrap{ height: 64px; }
  .brand img{ height: 36px; }
  .brand-text span{ display:none; }
  .brand-text strong{ font-size: 13.5px; }
  .main-nav{ top: 64px; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  color: var(--white);
  background: linear-gradient(120deg, rgba(8,37,65,0.94), rgba(8,37,65,0.80)), var(--navy);
  overflow:hidden;
}
.hero-inner{
  max-width: var(--maxw);
  margin:0 auto;
  padding: 96px 24px 110px;
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero h1{
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -.01em;
}
.hero h1 em{ color: var(--orange); font-style: normal; }
.hero p.lead{
  font-size: 18px;
  color: rgba(255,255,255,0.86);
  max-width: 520px;
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top: 28px; }
.hero-media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}
.hero-media img, .hero-media video{ width:100%; height:100%; object-fit: cover; }
.hero-media img.hero-fade-img, .hero-media video.hero-fade-img{
  filter: grayscale(10%) brightness(0.98) contrast(1.05);
  object-position: center center;
}
.hero-media::after{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(160deg, rgba(11,53,89,0.08), rgba(8,37,65,0.36));
  z-index: 1;
  pointer-events:none;
}

.hero-collage{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  width:100%;
  height:100%;
  background: var(--navy-dark);
}
.hero-collage > div{ overflow:hidden; position:relative; }
.hero-collage .hc-main{ grid-row: 1 / 3; grid-column: 1; }
.hero-collage .hc-a{ grid-column: 2; grid-row: 1; }
.hero-collage .hc-b{ grid-column: 2; grid-row: 2; }
.hero-collage img{ transition: transform .5s ease; }
.hero-collage > div:hover img{ transform: scale(1.06); }
.hero-badge{
  position:absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(20,24,30,0.78);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  font-family: var(--font-head);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.hero-badge-title{ font-size:14.5px; font-weight:700; line-height:1.3; }
.hero-badge-flow{ font-size:12.5px; font-weight:500; color:rgba(255,255,255,0.85); line-height:1.4; }
.hero-badge-flow b{ color: var(--orange); font-weight:600; }
.hero-badge-tag{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color: var(--orange); }

.hero-stats{
  position: relative;
  z-index: 2;
  background: var(--white);
  margin: -56px 24px 0;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-width: calc(var(--maxw) - 48px);
  margin-left: auto; margin-right:auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero-stat{
  text-align:center;
  padding: 30px 16px;
  border-right: 1px solid var(--gray-100);
}
.hero-stat:last-child{ border-right:none; }
.hero-stat .num{ font-family: var(--font-head); font-size: 30px; font-weight:700; color: var(--navy); }
.hero-stat .label{ font-size: 13px; color: var(--gray-600); margin-top:4px; }

@media (max-width: 980px){
  .hero{ padding-top: 0; }
  .hero-inner{ grid-template-columns: 1fr; padding: 20px 24px 70px; }
  .hero-media{ order:-1; aspect-ratio: 3/4; }
  .hero-stats{ grid-template-columns: repeat(2,1fr); margin-top: -30px; }
  .hero-stat{ border-bottom:1px solid var(--gray-100); }
}

/* generic page hero (inner pages) */
.page-hero{
  background: linear-gradient(120deg, rgba(8,37,65,0.95), rgba(11,53,89,0.88)), var(--navy);
  color: var(--white);
  padding: 76px 0 64px;
  text-align:center;
}
.page-hero h1{ color:var(--white); font-size: clamp(30px,4.4vw,44px); }
.page-hero p{ color: rgba(255,255,255,0.82); max-width:640px; margin: 0 auto; font-size:17px; }
.breadcrumb{ font-size:13px; color: rgba(255,255,255,0.65); margin-bottom:14px; letter-spacing:.03em; }
.breadcrumb a:hover{ color: var(--white); }

/* ---------- Cards / grids ---------- */
.grid{ display:grid; gap: 28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-5{ grid-template-columns: repeat(5, 1fr); gap: 18px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .grid-5{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 640px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .grid-5{ grid-template-columns: repeat(2,1fr); }
}

.card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card .icon{
  width: 52px; height:52px;
  border-radius: 12px;
  background: rgba(76,167,119,0.08);
  color: var(--red);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 18px;
}
.card .icon svg{ width:26px; height:26px; }
.card .icon img{ width:30px; height:30px; object-fit:contain; }
.card h3{ font-size: 18.5px; margin-bottom:.5em; }
.card p{ color: var(--gray-600); font-size: 15px; margin-bottom:0; }

.card-dark{
  background: var(--navy);
  color: var(--white);
  border: none;
}
.card-dark h3{ color: var(--white); }
.card-dark p{ color: rgba(255,255,255,0.75); }
.card-dark .icon{ background: rgba(255,255,255,0.12); color: var(--orange); }

/* Industry chips */
.industry-card{
  text-align:center;
  padding: 34px 18px;
}
.industry-card .icon{ margin: 0 auto 16px; }
.industry-card h3{ font-size:16px; }

/* Product cards */
.filter-bar{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 42px;
}
.filter-btn{
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-800);
  cursor:pointer;
  transition: all .15s ease;
}
.filter-btn:hover{ border-color: var(--red); color: var(--red); }
.filter-btn.active{ background: var(--red); border-color: var(--red); color: var(--white); }

.product-card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.product-card.featured{
  border: 1.5px solid var(--red);
  box-shadow: 0 6px 20px rgba(76,167,119,0.12);
}
.featured-ribbon{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(76,167,119,0.35);
}
.product-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-photo{
  aspect-ratio: 1/1;
  overflow:hidden;
  background: #0d1b2a;
}
.product-photo img{ width:100%; height:100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-photo img{ transform: scale(1.06); }
.product-body{ padding: 18px 20px 22px; }
.product-body h3{ font-size:16.5px; margin-bottom:8px; }
.pill-row{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom: 10px;}
.pill{
  font-size: 11.5px;
  font-weight:600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-800);
  letter-spacing:.02em;
}
.pill-navy{ background: rgba(11,53,89,0.09); color: var(--navy); }
.pill-red{ background: rgba(76,167,119,0.09); color: var(--red); }
.product-meta{ font-size: 13px; color: var(--gray-600); }
.product-meta b{ color: var(--gray-800); }

/* ---------- Split / About sections ---------- */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap: 36px; } }
.split img{ border-radius: 16px; box-shadow: var(--shadow-md); width:100%; }
.story-carousel{
  position:relative;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow:hidden;
  aspect-ratio: 16/10;
}
.story-carousel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity 1.1s ease;
}
.story-carousel img.active{ opacity:1; z-index:1; }
.check-list li{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
.check-list li:last-child{ border-bottom:none; }
.check-list svg{ flex-shrink:0; width:20px; height:20px; color: var(--red); margin-top:2px; }

.bg-navy{ background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3{ color: var(--white); }
.bg-navy p{ color: rgba(255,255,255,0.78); }
.bg-gray{ background: var(--gray-50); }

/* Timeline / facility cards */
.facility-card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.facility-card h3{ display:flex; align-items:center; gap:10px; }
.facility-card .flag{ font-size:22px; }
.facility-card dl{ margin: 18px 0 0; }
.facility-card dt{ font-size:12px; text-transform:uppercase; letter-spacing:.06em; color: var(--gray-400); margin-top:14px; }
.facility-card dd{ margin:2px 0 0; font-size:15px; color: var(--gray-800); }

/* Materials badges */
.badge-cloud{ display:flex; flex-wrap:wrap; gap:12px; }
.badge-cloud span{
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-family: var(--font-head);
  font-weight:600;
  font-size: 14px;
  color: var(--navy);
}

/* Certifications */
.cert-card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align:center;
}
.cert-badge{
  width:88px; height:88px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--navy), #12507f);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-weight:700;
  font-size:13px;
  text-align:center;
  line-height:1.2;
  box-shadow: var(--shadow-md);
}

/* Campus zone cards (Chakan facility breakdown) */
.zone-card{
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
}
.zone-card .zone-photo{ aspect-ratio: 4/3; overflow:hidden; }
.zone-card .zone-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.zone-card .zone-label{ padding: 16px 18px; }
.zone-card .zone-label h4{ color:#fff; margin-bottom:4px; font-size:15.5px; }
.zone-card .zone-label p{ color:rgba(255,255,255,0.68); font-size:13px; margin-bottom:0; }
.zone-tag{
  display:inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 9px;
}
.zone-tag.done{ background: rgba(46,204,113,0.18); color:#7be3a4; }
.zone-tag.progress{ background: rgba(240,147,43,0.2); color: var(--orange); }

/* Timeline (Certifications / expansion) */
.timeline{ position:relative; padding-left: 32px; }
.timeline::before{
  content:''; position:absolute; left:6px; top:6px; bottom:6px; width:2px; background: var(--gray-200);
}
.timeline-item{ position:relative; padding-bottom: 32px; }
.timeline-item::before{
  content:''; position:absolute; left:-32px; top:4px; width:14px; height:14px; border-radius:50%;
  background: var(--red); border:3px solid var(--white); box-shadow:0 0 0 2px var(--gray-200);
}
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item h4{ margin-bottom:4px; font-size:16px; }
.timeline-item p{ color: var(--gray-600); font-size:14.5px; margin-bottom:0; }

/* ---------- Forms ---------- */
.form-card{
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--gray-100);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width:640px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 20px; }
.field label{
  display:block;
  font-size: 13.5px;
  font-weight:600;
  color: var(--gray-800);
  margin-bottom: 7px;
  font-family: var(--font-head);
}
.req{ color: var(--orange); margin-left: 2px; }
.field input, .field select, .field textarea{
  width:100%;
  padding: 13px 15px;
  border-radius: 9px;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--gray-50);
  transition: border-color .15s ease, background .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color: var(--red); background: var(--white);
}
.field textarea{ resize: vertical; min-height: 110px; }
.form-note{ font-size: 13px; color: var(--gray-600); margin-top: 14px; }
.form-success{
  display:none;
  background: #eafaf1;
  border: 1px solid #b7e4c7;
  color: #1e7e42;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  margin-bottom: 20px;
}
.form-success.show{ display:block; }
.form-error{
  display:none;
  background: #fdeceb;
  border: 1px solid #f3b4ae;
  color: #b3261e;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14.5px;
  margin-bottom: 20px;
}
.form-error.show{ display:block; }
.field input[type="file"]{
  padding: 10px 15px;
  background: var(--gray-50);
  cursor: pointer;
}
.file-hint{ font-size: 12.5px; color: var(--gray-500); margin-top: 6px; }

/* Contact info cards */
.contact-info-card{
  display:flex; gap:16px; align-items:flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-100);
}
.contact-info-card:last-child{ border-bottom:none; }
.contact-info-card .icon{ width:44px; height:44px; flex-shrink:0; background: rgba(76,167,119,0.08); color:var(--red); border-radius:10px; display:flex; align-items:center; justify-content:center; }
.contact-info-card .icon svg{ width:22px; height:22px; }
.contact-info-card h4{ font-size:15px; margin-bottom:4px; }
.contact-info-card p{ font-size:14.5px; color: var(--gray-600); margin-bottom:0; }

.map-frame{ border-radius: 16px; overflow:hidden; box-shadow: var(--shadow-md); border:0; width:100%; height:340px; }

/* CTA band */
.cta-band{
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  border-radius: 20px;
  padding: 54px 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 30px;
  flex-wrap:wrap;
}
.cta-band h2{ color:var(--white); margin-bottom:6px; font-size: clamp(24px,3vw,32px); }
.cta-band p{ color: rgba(255,255,255,0.9); margin-bottom:0; }

/* Values / careers perks */
.perk{
  text-align:center;
  padding: 10px;
}
.perk .icon{ margin: 0 auto 16px; width:60px; height:60px; border-radius:16px; }

/* Job list */
.job-card{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  flex-wrap:wrap;
}
.job-card h3{ font-size:17px; margin-bottom:4px; }
.job-card .job-meta{ font-size:13.5px; color:var(--gray-600); }
.job-card .job-meta span{ margin-right:14px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-dark); color: rgba(255,255,255,0.75); padding-top: 68px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-brand img{ height:42px; background: var(--white); border-radius:8px; padding:5px; }
.footer-brand strong{ color:var(--white); font-family:var(--font-head); font-size:16px; }
.site-footer h4{ color: var(--white); font-family: var(--font-head); font-size:14.5px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:18px; }
.site-footer ul li{ margin-bottom: 10px; font-size: 14.5px; }
.site-footer a:hover{ color: var(--white); }
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 0; font-size:13px; color: rgba(255,255,255,0.5);
  flex-wrap:wrap; gap:10px;
}
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px; border-radius:50%;
  background: rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  transition: background .15s ease;
}
.social-row a:hover{ background: var(--red); }
.social-row svg{ width:16px; height:16px; color:var(--white); }

/* misc */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }
.wa-float{
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg);
}
.wa-float svg{ width:28px; height:28px; color:#fff; }
