/* ===========================================================
   Royal Engineers – styles.css
   Designed to match elevator.com.bd reference layout
   =========================================================== */

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --brand: #e84118;
  /* primary red-orange accent */
  --brand-dark: #c0310f;
  --gold: #f6b800;
  /* secondary amber / CTA */
  --gold-dark: #d9a200;
  --navy: #0b1629;
  /* dark sections & footer */
  --navy-2: #112240;
  --ink: #1a1a1a;
  --muted: #5a6374;
  --line: #e4ebf0;
  --surface: #ffffff;
  --surface-2: #f5f7fa;
  --shadow: 0 12px 32px rgba(0, 0, 0, .10);
}

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

body {
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: var(--brand-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ─── TOP BAR ───────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: #c8d6e0;
  font-size: 13px;
  padding: 9px 0;
}

.topbar a {
  color: #c8d6e0;
}

.topbar a:hover {
  color: #fff;
}

.topbar .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-info span,
.topbar-info a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-info i {
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  font-size: 12px;
  color: #c8d6e0;
  transition: background .2s, color .2s;
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ─── HEADER ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .10);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 28px;
}

/* Logo / Brand */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark img {
  height: 80px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  display: block;
}

.brand-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  border-radius: 10px 3px 10px 3px;
  font-size: 0;
  flex-shrink: 0;
}

.brand-symbol::before {
  content: "";
  width: 30px;
  height: 18px;
  border-left: 8px solid #fff;
  border-top: 8px solid #fff;
  transform: skewX(-14deg);
}

.brand-text {
  line-height: 1.1;
}

.brand-text strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.brand-text em {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

/* Header contacts (desktop) */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.header-contact-item .hci-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  font-size: 17px;
  flex-shrink: 0;
}

.header-contact-item span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}

.header-contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--brand-dark);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: .25s;
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.main-menu {
  background: var(--navy);
}

.main-menu .container {
  display: flex;
  align-items: stretch;
}

.main-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 52px;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  transition: color .2s, background .2s;
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
}

.nav-link:hover,
.nav-item:hover>.nav-link {
  color: var(--gold);
  background: rgba(255, 255, 255, .06);
}

.nav-link.active {
  color: var(--gold);
}

/* Dropdown toggle arrow */
.nav-link.dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  margin-left: 3px;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  z-index: 999;
  list-style: none;
  padding: 8px 0;
}

.nav-item:hover>.dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 18px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  transition: background .18s, color .18s;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: #fff8e1;
  color: var(--brand);
}

/* Quote nav link */
.nav-link.quote-link {
  color: var(--navy);
  background: var(--gold);
}

.nav-link.quote-link:hover {
  color: var(--navy);
  background: var(--gold-dark);
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero-wrap {
  overflow: hidden;
  background: var(--navy);
}

.swiper.hero-swiper {
  width: 100%;
}

.hero-slide {
  min-height: calc(100vh - 52px - 77px);
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(5, 10, 22, .87) 0%, rgba(5, 14, 30, .72) 55%, rgba(0, 0, 0, .26) 100%),
    var(--hero-bg, url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=85"));
  background-size: cover;
  background-position: center;
}

.hero-content {
  padding: 7rem 0 5rem;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.hero-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #e0e8f0;
  margin-bottom: 10px;
}

.hero-content h3 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 900px;
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-service-tags span {
  background: rgba(255, 255, 255, .12);
  border-left: 3px solid var(--gold);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 30px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s;
  border: 2px solid var(--brand);
}

.btn-hero-primary:hover {
  background: var(--brand-dark);
  color: #fff;
  border-color: var(--brand-dark);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 30px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .55);
  transition: background .2s, border-color .2s;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5);
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ─── SECTIONS ──────────────────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--surface-2);
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 3px;
  background: var(--brand);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title.white {
  color: #fff;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
}

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-head-split>div {
  max-width: 620px;
}

.section-head {
  margin-bottom: 40px;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 46px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s, color .2s, border-color .2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

/* Bootstrap compatibility stubs */
.btn-outline-primary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
  border-radius: 4px;
}

.btn-outline-primary:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn-light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-light:hover {
  background: #f0f0f0;
  color: var(--ink);
  border-color: #f0f0f0;
}

/* ─── WHY CHOOSE US CARDS ───────────────────────────────── */
.info-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 28px 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  transition: transform .22s, box-shadow .22s;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card i {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 14px;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0;
}

/* ─── SERVICE CARDS ─────────────────────────────────────── */
.service-card,
.project-card,
.news-card,
.product-card {
  background: #fff;
  border-radius: 6px;
  border: 0;
  border-bottom: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
  transition: transform .22s, box-shadow .22s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover,
.project-card:hover,
.news-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img,
.project-card img,
.news-card img,
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.card-visual {
  height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7e8cc 0%, #f3d490 100%);
}

.card-visual i {
  font-size: 3.4rem;
  color: var(--brand);
}

.card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  font-size: 1.07rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-body h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: .93rem;
  flex: 1;
}

.card-body a.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  margin-top: 14px;
  letter-spacing: .5px;
}

.card-body a.read-more:hover {
  color: var(--brand-dark);
}

.card-body small {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
}

/* Bootstrap compat */
.service-card a,
.project-card a,
.news-card a,
.product-card a {
  color: var(--brand);
  font-weight: 800;
}

/* ─── COUNTER BAND ──────────────────────────────────────── */
.counter-band {
  background: linear-gradient(120deg, #0d1e35 0%, #122540 60%, #1a3a52 100%);
  padding: 60px 0;
  color: #fff;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  background: rgba(255, 255, 255, .05);
  height: 100%;
}

.counter-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.counter-item strong {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.counter-item .counter-suffix {
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 900;
}

.counter-item p {
  color: #b0c4d4;
  margin: 8px 0 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

/* ─── PRODUCT GRID ──────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.product-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 160px;
  padding: 18px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  gap: 10px;
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
}

.product-tile:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
  color: var(--ink);
}

.product-tile img {
  max-height: 80px;
  object-fit: contain;
}

.product-tile i {
  font-size: 2.4rem;
  color: var(--brand);
}

.product-tile span {
  display: block;
  line-height: 1.3;
}

/* ─── ABOUT SECTION ─────────────────────────────────────── */
.about-media {
  position: relative;
  min-height: 420px;
}

.about-photo {
  width: 100%;
  height: 420px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .15)),
    url("https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.about-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: 170px;
  min-height: 130px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.about-badge strong {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.about-badge span {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  margin-top: 6px;
}

.intro-tagline {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 16px;
}

/* ─── BRAND/COMPONENTS SECTION ──────────────────────────── */
.brand-showcase {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}

.brand-showcase .section-title {
  color: #fff;
}

.brand-showcase p {
  color: #99adc0;
  line-height: 1.85;
}

.brand-video-panel {
  min-height: 300px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .72)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  border: 5px solid rgba(255, 255, 255, .1);
}

.brand-video-panel .play-btn {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.7rem;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.brand-video-panel .play-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.components-section {
  background: var(--surface-2);
  padding: 80px 0;
}

.component-card {
  background: #fff;
  border-bottom: 4px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  height: 100%;
  transition: transform .22s, box-shadow .22s;
}

.component-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.component-visual {
  height: 200px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .64), rgba(0, 0, 0, .38)),
    url("https://images.unsplash.com/photo-1581092160607-ee22731c13f8?auto=format&fit=crop&w=800&q=80");
  background-size: cover;
  background-position: center;
  color: var(--gold);
  font-size: 3rem;
}

.component-card h3 {
  padding: 18px 20px 6px;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ink);
  text-transform: uppercase;
}

.component-card p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: .92rem;
}

/* ─── PROMISE BAND ──────────────────────────────────────── */
.promise-band {
  background: var(--gold);
  padding: 40px 0;
  text-align: center;
}

.promise-band h2 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
}

/* ─── STRENGTH BAND ─────────────────────────────────────── */
.strength-band {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}

.strength-band .section-title {
  color: #fff;
}

.strength-band .section-lead {
  color: #99adc0;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.strength-item {
  min-height: 140px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, .05);
  border-radius: 0 6px 6px 0;
}

.strength-item strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.strength-item span {
  color: #99adc0;
  font-size: .93rem;
}

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

.testimonials-section .section-title {
  color: #fff;
}

.testimonial-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 26px;
  height: 100%;
}

.testimonial-card p {
  color: #c8d6e5;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card strong {
  color: #fff;
  display: block;
  font-weight: 800;
}

.testimonial-card span {
  color: #7a9ab5;
  font-size: .9rem;
}

/* ─── CONSULTANCY SECTION ──────────────────────────────── */
.consultancy-section {
  background:
    linear-gradient(90deg, rgba(5, 10, 22, .93), rgba(5, 10, 22, .80)),
    url("https://images.unsplash.com/photo-1554435493-93422e8d1c8b?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.consultancy-section .section-title {
  color: #fff;
}

.consultancy-section .section-lead {
  color: #b0c4d4;
}

.consultancy-form {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  padding: 28px;
}

.consultancy-form .form-control,
.consultancy-form .form-select {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  color: #fff;
  min-height: 44px;
}

.consultancy-form .form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

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

.consultancy-form .btn-gold {
  width: 100%;
  justify-content: center;
}

/* ─── QUALITY BAND ──────────────────────────────────────── */
.quality-band {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .90), rgba(0, 0, 0, .72)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.quality-band .section-title {
  color: #fff;
}

.quality-progress {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.quality-progress-item {
  position: relative;
  padding-bottom: 14px;
  font-weight: 800;
}

.quality-progress-item>div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.quality-progress-item span {
  color: #ccc;
}

.quality-progress-item strong {
  color: var(--gold);
}

.quality-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, .18);
  border-radius: 4px;
  overflow: hidden;
}

.quality-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--brand));
  border-radius: 4px;
  transition: width 1.2s ease;
}

.quality-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.quality-stat {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  padding: 24px;
  gap: 8px;
}

.quality-stat i {
  font-size: 2.2rem;
  color: var(--gold);
}

.quality-stat strong {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.quality-stat span {
  color: #aac0d4;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
}

/* ─── BRAND / CLIENT STRIP ──────────────────────────────── */
.brand-strip {
  padding: 60px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.logo-row span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font-weight: 800;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}

.logo-row span:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.logo-row span img {
  max-height: 52px;
  object-fit: contain;
}

/* ─── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 52px 0;
  color: #fff;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band .section-title {
  color: #fff;
  margin: 0;
}

.cta-band .eyebrow {
  color: var(--gold);
}

.cta-band .eyebrow::before {
  background: var(--gold);
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── CONTACT TILES ─────────────────────────────────────── */
.contact-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
}

.contact-tile:hover {
  box-shadow: var(--shadow);
  border-color: var(--brand);
  color: var(--ink);
}

.contact-tile i {
  font-size: 1.8rem;
  color: var(--brand);
}

.contact-tile span {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

/* ─── STATUS PILL ───────────────────────────────────────── */
.status-pill {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ─── PAGE HEADER ───────────────────────────────────────── */
.page-header {
  min-height: 300px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 10, 22, .90), rgba(5, 10, 22, .68)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  color: #fff;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-header .lead {
  color: #b0c4d4;
  max-width: 680px;
}

.breadcrumb-nav {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #99b2c5;
  background: rgba(255, 255, 255, .07);
  padding: 6px 12px;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.breadcrumb-nav a {
  color: #fff;
}

.breadcrumb-nav i {
  color: var(--gold);
  font-size: 10px;
}

/* ─── GALLERY ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.gallery-item {
  display: block;
  min-height: 180px;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: none;
  background: var(--surface-2);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── TEAM CARD ─────────────────────────────────────────── */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  transition: box-shadow .2s;
}

.team-card:hover {
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-2);
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

/* ─── FORMS ─────────────────────────────────────────────── */
.form-control,
.form-select {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  font-size: 14px;
  width: 100%;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232, 65, 24, .12);
}

textarea.form-control {
  height: auto;
  min-height: 130px;
  padding: 12px 14px;
  resize: vertical;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -8px;
}

.row>[class*="col-"] {
  padding: 8px;
}

.col-12 {
  width: 100%;
}

.col-6 {
  width: 50%;
}

.col-md-4,
.col-md-6 {
  width: 100%;
}

/* ─── CONTACT SECTION ───────────────────────────────────── */
.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-panel a i {
  color: var(--brand);
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 6px;
}

/* ─── BLOG / NEWS ───────────────────────────────────────── */
.side-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.side-link:hover {
  color: var(--brand);
}

/* ─── JOBS ──────────────────────────────────────────────── */
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .05);
  transition: box-shadow .2s;
}

.job-card:hover {
  box-shadow: var(--shadow);
}

.job-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.job-card p {
  color: var(--muted);
  margin: 0;
  font-size: .93rem;
}

.job-list {
  display: grid;
  gap: 12px;
}

/* ─── MESSAGES ──────────────────────────────────────────── */
.messages-wrap {
  margin: 16px 0;
}

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error,
.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.alert-dismissible {
  position: relative;
  padding-right: 42px;
}

.btn-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: inherit;
  opacity: .7;
}

/* ─── FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: #8aa5bb;
  padding: 64px 0 0;
}

.site-footer h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.site-footer p {
  font-size: .93rem;
  line-height: 1.75;
  color: #7a9ab5;
}

.site-footer a {
  display: block;
  color: #7a9ab5;
  font-size: .92rem;
  margin-bottom: 8px;
  transition: color .2s;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7a9ab5;
  font-size: 15px;
  margin-bottom: 0;
  transition: background .2s, border-color .2s, color .2s;
}

.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 48px;
  padding: 18px 0;
  font-size: 13px;
  color: #4a6070;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  display: inline;
  color: #4a6070;
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ─── FLOATING ACTIONS ──────────────────────────────────── */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
  color: #fff;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: var(--brand);
}

.floating-btn.top {
  background: var(--navy-2);
}

/* ─── FEATURE PANEL ─────────────────────────────────────── */
.feature-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-panel div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.feature-panel strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.feature-panel span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  margin-top: 4px;
}

/* ─── RESULT / SEARCH ───────────────────────────────────── */
.search-large {
  display: flex;
  gap: 8px;
  max-width: 680px;
}

.search-large input {
  flex: 1;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  font-size: 14px;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  transition: border-color .2s;
}

.result-list a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.comment-box {
  border-left: 4px solid var(--brand);
  background: var(--surface-2);
  border-radius: 0 6px 6px 0;
  padding: 14px;
  margin-bottom: 10px;
}

.filter-bar,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-bar a,
.tag-list a {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
}

.filter-bar a.active,
.tag-list a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ─── SIDE FACTS ────────────────────────────────────────── */
.side-facts {
  display: grid;
  gap: 12px;
}

.side-facts div {
  border-left: 4px solid var(--gold);
  background: var(--surface-2);
  padding: 14px;
  border-radius: 0 6px 6px 0;
}

.side-facts span {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.side-facts strong {
  display: block;
  font-weight: 800;
}

/* ─── DETAIL IMAGE ──────────────────────────────────────── */
.detail-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 24px;
}

.content-card,
.side-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.rich-text {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.rich-text h2,
.rich-text h3 {
  color: var(--ink);
  margin-bottom: 10px;
}

.rich-text p {
  margin-bottom: 16px;
}

/* ─── GRID UTILITIES (Bootstrap compatibility) ─────────── */
.g-3 {
  gap: 12px !important;
}

.g-4 {
  gap: 16px !important;
}

.row.g-3,
.row.g-4 {
  margin: 0;
}

.row.g-3>*,
.row.g-4>* {
  padding: 0;
}

/* ─── UTILITY STUBS (Bootstrap compatibility) ──────────── */
.w-100 {
  width: 100%;
}

.d-block {
  display: block;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 24px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 16px;
}

.mt-4 {
  margin-top: 24px;
}

.me-2 {
  margin-right: 8px;
}

.ms-2 {
  margin-left: 8px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-3 {
  padding-left: 16px;
  padding-right: 16px;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

/* Form labels */
label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

/* Form validation error */
.invalid-feedback {
  display: block;
  color: #dc3545;
  font-size: 12.5px;
  margin-top: 4px;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 18px 0;
}

/* Detail block (product/service detail pages) */
.detail-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.detail-block h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.detail-block:last-child {
  border-bottom: none;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
/* Breakpoints: 1199, 991, 767, 575, 375 */

@media (min-width: 576px) {
  .col-md-4 {
    width: 33.333%;
  }

  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    width: 33.333%;
  }

  .col-md-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.333%;
  }

  .col-lg-5 {
    width: 41.667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.333%;
  }

  .col-lg-8 {
    width: 66.666%;
  }

  .col-lg-9 {
    width: 75%;
  }
}

@media (min-width: 1200px) {
  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.333%;
  }
}

/* ── ≤1199px: Tablet landscape ──────────────────────────── */
@media (max-width: 1199px) {
  .header-contacts {
    display: none;
  }

  .header-inner {
    gap: 16px;
  }
}

/* ── ≤991px: Tablet / mobile nav ────────────────────────── */
@media (max-width: 991px) {
  .section {
    padding: 56px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy);
    padding-bottom: 12px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    height: 46px;
    font-size: 12.5px;
    padding: 0 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--gold);
    margin-left: 16px;
    display: none;
  }

  .nav-item.open>.dropdown-menu {
    display: block;
  }

  .hero-slide {
    min-height: 680px;
  }

  .hero-content {
    padding: 5rem 0 4rem;
  }

  .strength-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-media {
    min-height: 340px;
  }

  .about-photo {
    height: 340px;
  }

  .job-card {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ── ≤767px: Mobile landscape / small tablet ─────────────── */
@media (max-width: 767px) {
  .section {
    padding: 44px 0;
  }

  /* Navigation */
  .header-inner {
    padding: 10px 0;
    gap: 10px;
  }

  /* Grids */
  .feature-panel,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-grid,
  .quality-stats {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  /* Section head */
  .section-head-split {
    flex-direction: column;
  }

  /* Bootstrap col stubs */
  .col-6 {
    width: 100%;
  }

  /* Row */
  .row {
    flex-direction: column;
  }

  .row.g-3,
  .row.g-4 {
    gap: 16px;
  }

  /* About */
  .about-media {
    min-height: 280px;
  }

  .about-photo {
    height: 280px;
  }

  /* Job card */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Footer stacking */
  .footer-bottom {
    text-align: center;
    justify-content: center;
  }

  /* Page header */
  .page-header {
    min-height: 200px;
    padding: 40px 0;
  }

  /* Counter band */
  .counter-band {
    padding: 44px 0;
  }

  /* Brand showcase */
  .brand-showcase {
    padding: 52px 0;
  }

  /* Components section */
  .components-section {
    padding: 52px 0;
  }

  /* Consultancy form 2-col grid -> 1-col */
  .consultancy-section form div[style] {
    grid-template-columns: 1fr !important;
  }

  /* Template-level flex rows (inline style overrides) */
  .site-footer .container>div[style] {
    flex-direction: column !important;
    gap: 32px !important;
  }
}

/* ── ≤575px: Mobile portrait ─────────────────────────────── */
@media (max-width: 575px) {
  .section {
    padding: 36px 0;
  }

  /* Topbar */
  .topbar-info {
    display: none;
  }

  /* Header */
  .brand-text strong {
    font-size: 18px;
  }

  .brand-text em {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .brand-mark img,
  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    padding: 8px 0;
  }

  /* Hero */
  .hero-slide {
    min-height: 520px;
  }

  .hero-content {
    padding: 3.5rem 0 3rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    margin-bottom: 20px;
  }

  .hero-content h2 {
    font-size: 1.1rem;
  }

  .hero-content h3 {
    font-size: 1.2rem;
  }

  .hero-service-tags {
    gap: 7px;
    margin-bottom: 22px;
  }

  .hero-service-tags span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    height: 46px;
    padding: 0 20px;
    font-size: 12.5px;
  }

  /* About */
  .about-media {
    min-height: 220px;
  }

  .about-photo {
    height: 220px;
  }

  .about-badge {
    width: 140px;
    min-height: 110px;
  }

  .about-badge strong {
    font-size: 2.2rem;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Feature panel */
  .feature-panel {
    grid-template-columns: 1fr;
  }

  /* Clients / logo row */
  .logo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Strength grid */
  .strength-grid {
    grid-template-columns: 1fr;
  }

  /* Quality stats */
  .quality-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .quality-stat {
    min-height: 150px;
  }

  /* Section typography */
  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .section-lead {
    font-size: 0.96rem;
  }

  /* Contact tile */
  .contact-tile {
    min-height: 100px;
  }

  /* Footer */
  .footer-bottom {
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }

  .site-footer .container>div[style] {
    flex-direction: column !important;
    gap: 32px !important;
  }

  /* Page header */
  .page-header {
    min-height: 160px;
    padding: 32px 0;
  }

  .page-header h1 {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  /* Panels */
  .consultancy-form {
    padding: 20px 16px;
  }

  .content-card,
  .side-panel,
  .form-panel {
    padding: 18px;
  }

  .contact-panel {
    padding: 20px;
  }

  .map-frame iframe {
    min-height: 240px;
  }

  /* CTA band */
  .cta-band {
    padding: 36px 0;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-band-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Promise band */
  .promise-band {
    padding: 28px 0;
  }

  .promise-band h2 {
    font-size: 1.1rem;
  }

  /* Counter band */
  .counter-band {
    padding: 32px 0;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 44px 0;
  }

  /* Search bar */
  .search-large {
    flex-direction: column;
  }

  .search-large input,
  .search-large .btn {
    width: 100%;
  }

  /* Gallery grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Template inline-style overrides */
  .consultancy-section form div[style] {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }

  .site-footer .container>div[style] {
    flex-direction: column !important;
    gap: 32px !important;
  }
}

/* ── ≤375px: Extra-small phones ─────────────────────────── */
@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .brand-text em {
    display: none;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .product-grid,
  .quality-stats {
    grid-template-columns: 1fr;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 16px;
    gap: 8px;
  }

  .job-card {
    padding: 14px;
  }
}