/* =========================================================
   BD Manufacturing — Global Stylesheet
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:        #0e2340;
  --navy-light:  #1a3a6b;
  --orange:      #d96b1a;
  --orange-hover:#c25c0e;
  --light-bg:    #f4f6f9;
  --white:       #ffffff;
  --text-dark:   #1c2128;
  --text-muted:  #5a6270;
  --border:      #dde2ea;
  --shadow:      0 4px 24px rgba(14,35,64,0.10);
  --shadow-lg:   0 8px 40px rgba(14,35,64,0.18);
  --radius:      8px;
  --radius-lg:   14px;
  --transition:  0.28s ease;
  --max-w:       1180px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); }
p  { color: var(--text-muted); }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(217,107,26,.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 6px 20px rgba(217,107,26,.45);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,35,64,.25);
}
.btn-secondary:hover {
  background: var(--navy-light);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.75);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: .95rem 2.2rem; font-size: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition),
              box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: .65rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: .03em;
}
.nav-brand-sub {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-weight: 500;
  font-size: .93rem;
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav-phone {
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-phone i { color: var(--orange); margin-right: .3rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-phone { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: .1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem .75rem; width: 100%; font-size: 1rem; }

  .nav-toggle { display: flex; }

  .nav-cta .btn { padding: .55rem 1.1rem; font-size: .85rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,21,50,.82) 0%,
    rgba(10,21,50,.60) 55%,
    rgba(10,21,50,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 8rem 0 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(217,107,26,.18);
  border: 1px solid rgba(217,107,26,.4);
  border-radius: 40px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f5a560;
  margin-bottom: 1.25rem;
}
.hero-eyebrow i { font-size: .75rem; }

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-title span { color: #f5a560; }

.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-badge {
  display: flex;
  flex-direction: column;
}
.hero-badge-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-badge-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }

.bg-light { background: var(--light-bg); }
.bg-navy  { background: var(--navy); }
.bg-white { background: var(--white); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header.left { text-align: left; margin-left: 0; }

.section-tag {
  display: inline-block;
  background: rgba(217,107,26,.1);
  color: var(--orange);
  border-radius: 4px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}
.section-tag.light { background: rgba(255,255,255,.12); color: #f5a560; }

.section-title { margin-bottom: .85rem; }
.section-title.light { color: var(--white); }

.section-desc { font-size: 1.05rem; line-height: 1.7; }
.section-desc.light { color: rgba(255,255,255,.72); }

/* Orange underline accent on headings */
.underline-accent::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: .6rem;
}
.section-header .underline-accent::after { margin: .6rem auto 0; }
.section-header.left .underline-accent::after { margin-left: 0; }

/* =========================================================
   GRIDS
   ========================================================= */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

@media (max-width: 1050px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(217,107,26,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.service-card h3 { margin-bottom: .25rem; }
.service-card p { font-size: .95rem; flex: 1; }
.service-card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: .65rem; }

/* =========================================================
   FEATURE / WHY-US
   ========================================================= */
.feature-list { display: flex; flex-direction: column; gap: 1.25rem; }

.feature-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(217,107,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}
.feature-item h4 {
  font-size: 1rem;
  margin-bottom: .2rem;
}
.feature-item p { font-size: .92rem; }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band {
  background: var(--navy);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   SPLIT SECTION (image + text)
   ========================================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.split-img:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2.5rem; }
}

/* =========================================================
   GALLERY GRID
   ========================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .5rem 1.3rem;
  border-radius: 40px;
  font-size: .88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,35,64,.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-title {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .2rem;
}
.gallery-overlay-tag {
  font-size: .78rem;
  color: #f5a560;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.gallery-overlay-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,.7);
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  color: rgba(255,255,255,.8);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--white); }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,.72);
  margin-top: 1rem;
  font-size: .95rem;
}

/* =========================================================
   CAPABILITIES PAGE
   ========================================================= */
.capability-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.capability-card-header {
  background: var(--navy);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.capability-card-header i {
  font-size: 1.6rem;
  color: #f5a560;
}
.capability-card-header h3 { color: var(--white); margin: 0; }
.capability-card-body { padding: 1.5rem 1.75rem; }
.capability-list { display: flex; flex-direction: column; gap: .55rem; }
.capability-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .93rem;
  color: var(--text-muted);
}
.capability-list li i {
  color: var(--orange);
  font-size: .8rem;
  margin-top: .35rem;
  flex-shrink: 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.material-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.material-chip:hover {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(217,107,26,.12);
}
.material-chip i { color: var(--orange); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.industry-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}
.industry-card:hover { background: var(--navy-light); transform: translateY(-3px); }
.industry-card i { font-size: 2rem; color: #f5a560; display: block; margin-bottom: .85rem; }
.industry-card h4 { color: var(--white); font-size: 1rem; }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 8rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 5%;
  bottom: -20%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(217,107,26,.07);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .65rem; }
.page-hero p  { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 580px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .65rem; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(217,107,26,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .25rem;
}
.contact-info-value {
  font-size: .97rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-info-value a { color: var(--navy); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--orange); }

.service-area-note {
  background: rgba(217,107,26,.07);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  font-size: .92rem;
  color: var(--text-dark);
}

/* Form styles */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: .4rem;
}
.form-subtitle {
  font-size: .93rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.1rem;
}
.form-group:last-child { margin-bottom: 0; }

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .01em;
}
.form-label .req { color: var(--orange); margin-left: .15rem; }

.form-control {
  padding: .7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14,35,64,.08);
}
.form-control::placeholder { color: #a0aaB5; }

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control { cursor: pointer; }

/* Checkboxes */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.check-label {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .9rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: .5rem .75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.check-label:hover { border-color: var(--orange); background: rgba(217,107,26,.04); }
.check-label input[type="checkbox"] { accent-color: var(--orange); width: 15px; height: 15px; }
.check-label input:checked + span,
.check-label:has(input:checked) { border-color: var(--orange); color: var(--navy); font-weight: 600; }

/* File upload */
.file-upload-wrap {
  position: relative;
}
.file-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  position: relative;
}
.file-upload-area:hover,
.file-upload-area.dragover {
  border-color: var(--orange);
  background: rgba(217,107,26,.04);
}
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon { font-size: 2.2rem; color: var(--navy); opacity: .4; margin-bottom: .65rem; }
.file-upload-text { font-size: .95rem; color: var(--text-muted); }
.file-upload-text span { color: var(--orange); font-weight: 600; text-decoration: underline; }
.file-upload-hint { font-size: .78rem; color: var(--text-muted); margin-top: .35rem; }

.file-list { margin-top: .85rem; display: flex; flex-direction: column; gap: .45rem; }
.file-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem .85rem;
  font-size: .87rem;
}
.file-chip-name { display: flex; align-items: center; gap: .55rem; color: var(--text-dark); }
.file-chip-name i { color: var(--orange); }
.file-chip-remove { color: var(--text-muted); cursor: pointer; transition: color var(--transition); font-size: .8rem; }
.file-chip-remove:hover { color: #d32f2f; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: .5rem;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: .8rem;
  color: var(--text-muted);
  flex: 1;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success i { font-size: 3rem; color: #16a34a; margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); margin-bottom: .5rem; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .form-card { padding: 1.5rem; }
  .checkbox-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  left: -8%;
  top: -60%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #08142a;
  color: rgba(255,255,255,.65);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo img { height: 56px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 280px;
  color: rgba(255,255,255,.55);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: #f5a560; }
.footer-links a i { font-size: .7rem; color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: .95rem;
  margin-top: .2rem;
  flex-shrink: 0;
}
.footer-contact-item span { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.5; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 1050px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 1.25rem 1rem; }
.team-card-body h4 { margin-bottom: .2rem; }
.team-card-role {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =========================================================
   MISC UTILITIES
   ========================================================= */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy { color: var(--navy); }
.fw-bold { font-weight: 700; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.gap-1 { gap: 1rem; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(217,107,26,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 500;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* =========================================================
   RESPONSIVE HELPERS
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hero-badges { gap: 1.25rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-top: 7rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .cta-band .btn-group { flex-direction: column; align-items: center; }
}
