/* ============================================================
   Blagus Mark Civil & Mining Services — Main Stylesheet
   Fresh redesign — brand colors preserved
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:        #262261;
  --navy-dark:   #1a1748;
  --navy-light:  #312d80;
  --orange:      #FFA600;
  --orange-dark: #e09200;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --light-gray:  #f0f2f7;
  --text:        #3d3d4e;
  --text-light:  #6b6b80;
  --border:      #e4e6f0;
  --radius-sm:   4px;
  --radius:      10px;
  --radius-lg:   20px;
  --radius-pill: 50px;
  --shadow-sm:   0 2px 8px rgba(38,34,97,0.07);
  --shadow:      0 6px 24px rgba(38,34,97,0.10);
  --shadow-lg:   0 16px 48px rgba(38,34,97,0.14);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section       { padding: 96px 0; }
.section-light { background: var(--off-white); }
.text-center   { text-align: center; }
.text-center .section-subtitle,
.text-center .divider { margin-left: auto; margin-right: auto; }

/* Grid */
.grid          { display: grid; gap: 28px; }
.grid-2        { grid-template-columns: repeat(2, 1fr); }
.grid-3        { grid-template-columns: repeat(3, 1fr); }
.grid-4        { grid-template-columns: repeat(4, 1fr); }
.align-center  { align-items: center; }

/* Two-col layout (used in careers, etc.) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.col-right img,
.story__image img,
.service__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Section header ─────────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.section-title, .section-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.8;
}
.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffc84a);
  border-radius: 4px;
  margin-bottom: 28px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(255,166,0,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255,166,0,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(38,34,97,0.25);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(38,34,97,0.35);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(38,34,97,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(38,34,97,0.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.navbar-logo img { height: 46px; width: auto; }
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.navbar-nav > li { position: relative; }
.navbar-nav > li > a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  letter-spacing: 0.2px;
}
.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 8px;
  z-index: 100;
  border-top: 3px solid var(--orange);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--light-gray);
  color: var(--orange);
  padding-left: 20px;
}
.navbar-nav > li:hover .dropdown-menu { display: block; }

/* Mobile */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero, section.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* BEM variant */
.hero__overlay,
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,23,72,0.92) 0%,
    rgba(38,34,97,0.80) 45%,
    rgba(0,0,0,0.45) 100%
  );
}
/* Subtle diagonal line texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

/* Hero content — support both flat and BEM naming */
.hero-content,
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--white);
}
.hero-content h1,
.hero__content h1 {
  color: var(--white);
  font-size: clamp(34px, 5.5vw, 64px);
  margin-bottom: 22px;
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-content p,
.hero__content p,
.hero-subtitle,
.hero__subtitle {
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0.88;
  max-width: 600px;
}
.hero-content .section-label,
.hero__content .section-label {
  color: var(--orange);
  font-size: 11px;
}
.hero-content .section-label::before,
.hero__content .section-label::before {
  background: var(--orange);
}

/* Short hero for inner pages */
.hero-short,
.hero--short { min-height: 48vh; }
.hero-short h1,
.hero--short h1 { font-size: clamp(28px, 4vw, 50px); }

/* Orange accent bar at bottom of hero */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 2;
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-dark);
  padding: 0;
  position: relative;
  z-index: 1;
}
.stats-bar .container {
  display: flex;
}
.stats-bar .grid {
  width: 100%;
  gap: 0;
}
.stat-item {
  text-align: center;
  color: var(--white);
  padding: 44px 20px;
  position: relative;
  transition: background var(--transition);
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:hover { background: rgba(255,255,255,0.04); }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.65;
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img { width: 100%; height: 230px; object-fit: cover; }
.card-body { padding: 28px; }
.card-title { font-size: 17px; margin-bottom: 10px; }
.card-text  { font-size: 15px; color: var(--text-light); line-height: 1.65; }

/* Service cards */
.service-card {
  text-align: center;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffc84a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(255,166,0,0.12), rgba(255,166,0,0.06));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform var(--transition);
}
.service-card:hover .icon { transform: scale(1.1) rotate(-4deg); }
.service-card .icon svg { width: 32px; height: 32px; fill: var(--orange); }

/* Project cards */
.project-card .card-img { height: 250px; }
.project-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: linear-gradient(90deg, var(--orange), #ffc84a);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* Equipment cards */
.equipment-card .card-img { height: 210px; }
.spec-list { list-style: none; font-size: 13px; margin-top: 14px; }
.spec-list li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.spec-list li:last-child { border: none; }
.spec-list strong { color: var(--navy); }

/* Value cards */
.value-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffc84a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 0;
}
.value-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Job cards */
.job-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,166,0,0.12);
  transform: translateY(-4px);
}
.job-card h3 { font-size: 18px; margin: 0; }
.job-badge {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(38,34,97,0.07);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
}
.job-badge--intern { background: rgba(255,166,0,0.12); color: var(--orange-dark); }
.job-location {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

/* Partner logos */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 120px;
  background: var(--white);
  transition: all var(--transition);
}
.partner-logo:hover { box-shadow: var(--shadow); border-color: var(--orange); }
.partner-logo img {
  max-height: 68px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(30%) opacity(0.8);
  transition: filter var(--transition);
}
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ── Sub-services ───────────────────────────────────────────── */
.sub-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.sub-service {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.sub-service:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.sub-service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(255,166,0,0.15), rgba(255,166,0,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
}
.sub-service-icon::before { content: '▸'; }
.sub-service h4 { font-size: 16px; margin-bottom: 6px; }
.sub-service p  { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }

/* ── Mission/Vision ─────────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mv-card {
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffc84a);
}
.mv-card h3,
.mv-card__heading {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}
.mv-card p { color: rgba(255,255,255,0.82); line-height: 1.8; margin: 0; font-size: 15px; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner,
.section--cta {
  background: linear-gradient(130deg, var(--navy) 0%, var(--navy-light) 60%, #3a2d8f 100%);
  padding: 88px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::after,
.section--cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2,
.section--cta h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p,
.section--cta p { font-size: 17px; opacity: 0.82; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn,
.section--cta .btn { position: relative; z-index: 1; }

/* ── Feature list (careers) ─────────────────────────────────── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 20px 0 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}
.feature-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.contact-item:hover { border-color: var(--orange); }
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}
.contact-info h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.contact-info a  { color: var(--navy); font-size: 15px; font-weight: 600; }
.contact-info a:hover { color: var(--orange); }

/* Contact form */
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,166,0,0.12);
}
.contact-form textarea,
.form-group textarea { resize: vertical; min-height: 148px; }

/* ── Section image (service pages) ─────────────────────────── */
.section-img,
.section--service-overview .service__image img,
.section--story .story__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ── Filter tabs ────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 9px 22px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--navy);
  transition: all var(--transition);
  font-family: inherit;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffc84a, transparent);
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-logo { height: 44px; margin-bottom: 18px; }
.footer-desc { font-size: 14px; line-height: 1.75; max-width: 270px; color: rgba(255,255,255,0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ── Scroll fade-in animations ──────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .sub-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero, section.hero { min-height: 72vh; }
  .hero-short, .hero--short { min-height: 52vh; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .mv-grid { grid-template-columns: 1fr; }
  .sub-services-grid { grid-template-columns: 1fr; }

  .col-right img,
  .story__image img,
  .service__image img,
  .section-img { height: 280px; }

  .navbar-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 8px;
    gap: 0;
  }
  .navbar-nav.open { display: flex; }
  .navbar-inner { flex-wrap: wrap; height: auto; padding: 16px 0; }
  .navbar-toggle { display: flex; }
  .navbar-nav > li { width: 100%; }
  .navbar-nav > li > a { border-radius: 0; padding: 12px 20px; font-size: 14px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    border-radius: 0;
    border-top: none;
    padding-left: 20px;
    display: none;
  }
  .dropdown-menu li a { color: rgba(255,255,255,0.75); }
  .dropdown-menu li a:hover { color: var(--orange); background: transparent; padding-left: 16px; }
  .navbar-nav > li:hover .dropdown-menu { display: none; }
  .navbar-nav > li.open .dropdown-menu { display: block; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
}
