/* =========================================
   ORAREY SERVICES — Main Stylesheet
   Modern, Professional, Responsive
   ========================================= */

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

/* ---------- Design Tokens ---------- */
:root {
  --primary: #0b3d5e;
  --primary-light: #144f7a;
  --primary-dark: #071e2f;
  --accent: #1ab8b8;
  --accent-dark: #139999;
  --accent-light: #e4f8f8;
  --accent-grad: linear-gradient(135deg, #1ab8b8 0%, #139999 100%);
  --primary-grad: linear-gradient(135deg, #071e2f 0%, #0b3d5e 100%);

  --text: #1a2b3c;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --bg-light: #f5f8fb;
  --border: #e1e8f0;
  --border-light: #f0f4f8;

  --shadow-xs: 0 1px 4px rgba(11, 61, 94, .06);
  --shadow-sm: 0 2px 10px rgba(11, 61, 94, .08);
  --shadow: 0 4px 24px rgba(11, 61, 94, .12);
  --shadow-lg: 0 8px 40px rgba(11, 61, 94, .16);
  --shadow-acc: 0 4px 20px rgba(26, 184, 184, .30);

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;
  --r-pill: 100px;

  --t: .28s ease;
  --t-slow: .5s ease;

  --font-body: 'Inter', sans-serif;
  --font-head: 'Poppins', sans-serif;
  --max-w: 1200px;
  --sec-py: 88px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--sec-py) 0;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}

/* .section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
} */

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-pill);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--t);
  line-height: 1;
}

.btn--primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: var(--shadow-acc);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 184, 184, .45);
}

.btn--white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn--outline-acc {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

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

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: var(--t);
}

.nav.scrolled {
  background: rgba(7, 30, 47, .96);
  backdrop-filter: blur(14px);
  padding: 13px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .18);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: .4px;
  line-height: 1;
}

.nav__logo-sub {
  font-size: .65rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1.3;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  position: relative;
  padding-bottom: 3px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--t);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  background: var(--accent-grad) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .875rem;
  box-shadow: var(--shadow-acc);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 184, 184, .45);
}

.nav__cta::after {
  display: none !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-grad);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('../assets/banner.jpg') center/cover no-repeat;
  opacity: .18;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 184, 184, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 184, 184, .06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero__glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 184, 184, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 184, 184, .12);
  border: 1px solid rgba(26, 184, 184, .3);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 26px;
}

.hero__badge i {
  font-size: 10px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero__title .accent {
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .45);
  font-size: .75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .4;
  }

  50% {
    opacity: 1;
  }
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--accent);
  padding: 15px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 600;
  font-size: .9375rem;
  white-space: nowrap;
}

.trust-bar__item i {
  opacity: .85;
  font-size: 1rem;
}

.trust-bar__sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, .35);
}

/* =========================================
   VALUES
   ========================================= */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--accent);
  font-size: 28px;
  transition: var(--t);
}

.value-card:hover .value-card__icon {
  background: var(--accent);
  color: #fff;
}

.value-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.value-card__text {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.72;
}

/* =========================================
   STATS
   ========================================= */
.stats {
  background: var(--primary-grad);
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 28px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .14);
}

.stat-item__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .68);
  font-weight: 500;
}


/* =========================================
   SERVICES CARDS
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.svc-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.svc-card__img {
  height: 195px;
  position: relative;
  overflow: hidden;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.06);
}

.svc-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 30, 47, .55));
}

.svc-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
}

.svc-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.svc-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.svc-card__text {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: .9375rem;
}

.svc-card__link i {
  transition: transform var(--t);
}

.svc-card__link:hover i {
  transform: translateX(4px);
}

/* =========================================
   ABOUT CTA BAND
   ========================================= */
.about-band {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--primary-grad);
}

.about-band__glow {
  position: absolute;
  right: -10%;
  top: -50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 184, 184, .1) 0%, transparent 70%);
}

.about-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-band__label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.about-band__title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.about-band__text {
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.72;
}

.about-band__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why__features {
  display: grid;
  gap: 20px;
}

.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--border-light);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.why-feat:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.why-feat__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
}

.why-feat__title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: .9375rem;
}

.why-feat__text {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.65;
}

.why__visual {
  position: relative;
}

.why__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.why__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why__pill {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--accent);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-acc);
  text-align: center;
}

.why__pill-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.why__pill-label {
  font-size: .75rem;
  opacity: .85;
  margin-top: 3px;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
  background: var(--accent-grad);
  padding: 60px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner__text {
  color: rgba(255, 255, 255, .85);
  font-size: .9375rem;
}

.cta-banner__btn {
  flex-shrink: 0;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--primary-grad);
  position: relative;
  overflow: hidden;
}

.page-hero__bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1920&q=70') center/cover no-repeat;
  opacity: .12;
}

.page-hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 184, 184, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 184, 184, .05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26, 184, 184, .12);
  border: 1px solid rgba(26, 184, 184, .3);
  color: var(--accent);
  padding: 5px 15px;
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-hero__text {
  color: rgba(255, 255, 255, .72);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.75;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb i {
  font-size: 9px;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story__img-wrap {
  position: relative;
}

.story__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__exp {
  position: absolute;
  top: -22px;
  right: -22px;
  background: var(--accent);
  color: #fff;
  padding: 22px;
  border-radius: var(--r);
  box-shadow: var(--shadow-acc);
  text-align: center;
}

.story__exp-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.story__exp-text {
  font-size: .75rem;
  opacity: .85;
  margin-top: 4px;
  line-height: 1.3;
}

.story__text p {
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 16px;
}

.story__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.story__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  font-size: .9375rem;
}

.story__list li i {
  color: var(--accent);
  font-size: 13px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-grad);
}

.mv-card__icon {
  width: 58px;
  height: 58px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  margin-bottom: 18px;
}

.mv-card__title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.mv-card__text {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: .9375rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.cert-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
  transform: translateY(-4px);
}

.cert-card__icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.cert-card__title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: .9375rem;
}

.cert-card__text {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--t);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__img {
  height: 220px;
  overflow: hidden;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}

.team-card:hover .team-card__img img {
  transform: scale(1.05);
}

.team-card__body {
  padding: 22px;
}

.team-card__name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: .875rem;
  color: var(--accent);
  font-weight: 600;
}


/* =========================================
   CONTACT PAGE
   ========================================= */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

.contact-info-cards {
  display: grid;
  gap: 18px;
}

.ci-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.ci-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
}

.ci-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 17px;
}

.ci-card__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent);
  margin-bottom: 4px;
}

.ci-card__val {
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
  font-size: .9375rem;
}

.contact-form-box {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-sub {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .9375rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: var(--t);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 184, 184, .12);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.form-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-grad);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 184, 184, .4);
}

.form-btn:disabled {
  opacity: .68;
  cursor: not-allowed;
  transform: none;
}

.form-msg {
  margin-top: 14px;
  padding: 12px 15px;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 500;
  display: none;
}

.form-msg.success {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-msg.error {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.map-wrap {
  margin-top: 52px;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .68);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.footer__logo-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.footer__about {
  font-size: .9375rem;
  line-height: 1.72;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 9px;
}

.footer__soc {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  transition: var(--t);
}

.footer__soc:hover {
  background: var(--accent);
  color: #fff;
}

.footer__col-title {
  font-family: var(--font-head);
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer__links {
  display: grid;
  gap: 10px;
}

.footer__link {
  font-size: .9375rem;
  color: rgba(255, 255, 255, .58);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--t);
}

.footer__link:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__link i {
  font-size: .7rem;
  color: var(--accent);
}

.footer__contact-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: .9375rem;
}

.footer__contact-item i {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .875rem;
}

.footer__bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: .875rem;
  color: rgba(255, 255, 255, .42);
}

.footer__copy a {
  color: var(--accent);
}

.footer__btm-links {
  display: flex;
  gap: 20px;
}

.footer__btm-link {
  font-size: .875rem;
  color: rgba(255, 255, 255, .42);
}

.footer__btm-link:hover {
  color: var(--accent);
}

/* =========================================
   QUALITY & HSE
   ========================================= */
.qhse-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.qhse-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 30px 18px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.qhse-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
  transform: translateY(-4px);
}

.qhse-card__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.qhse-card__title {
  font-weight: 600;
  color: var(--primary);
  font-size: .875rem;
  line-height: 1.4;
}

/* =========================================
   EQUIPMENT & TECHNOLOGY
   ========================================= */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.equip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
}

.equip-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
  transform: translateY(-4px);
}

.equip-card__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.equip-card__name {
  font-weight: 700;
  color: var(--primary);
  font-size: .875rem;
  line-height: 1.3;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

.d5 {
  transition-delay: .5s;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  :root {
    --sec-py: 68px;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }

  .why__grid,
  .story__grid,
  .contact__layout,
  .about-band__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-band__actions {
    align-items: flex-start;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qhse-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .equip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --sec-py: 52px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 11px 24px;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin: 8px 24px;
    width: calc(100% - 48px);
    text-align: center;
    justify-content: center;
  }

  .values__grid,
  .services-grid,
  .mv-grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .qhse-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .equip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar__sep {
    display: none;
  }

  .trust-bar__inner {
    gap: 16px;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-form-box {
    padding: 24px;
  }

  .why__pill {
    left: 12px;
    bottom: -16px;
  }

  .story__exp {
    top: -14px;
    right: -14px;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* =========================================
   PAGE HERO — layered background version
   ========================================= */
.page-hero {
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--primary-grad);
}

.page-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 30, 47, .55) 0%, rgba(7, 30, 47, .35) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: .875rem;
  margin-bottom: 18px;
}

.page-hero__breadcrumb a {
  color: var(--accent);
}

.page-hero__breadcrumb i {
  font-size: 9px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.page-hero__title .accent {
  color: var(--accent);
}

.page-hero__sub {
  color: rgba(255, 255, 255, .72);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* accent span (hero title) */
.accent {
  color: var(--accent);
}

/* =========================================
   ABOUT PAGE — Story section
   ========================================= */
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story__visual {
  position: relative;
}

.about-story__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 22px 28px;
  border-radius: var(--r);
  box-shadow: var(--shadow-acc);
  text-align: center;
}

.about-story__badge-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-story__badge-label {
  font-size: .75rem;
  opacity: .85;
  margin-top: 4px;
  line-height: 1.3;
}

.about-story__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .8125rem;
  font-weight: 600;
}

.tag i {
  font-size: .75rem;
}

/* Mission/Vision 3-column */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* =========================================
   ABOUT PAGE — Industries
   ========================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.ind-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--t);
  cursor: default;
}

.ind-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
  transform: translateY(-4px);
}

.ind-card__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.ind-card__name {
  font-weight: 700;
  color: var(--primary);
  font-size: .875rem;
  line-height: 1.3;
}

/* =========================================
   SERVICES PAGE — Detail Sections
   ========================================= */
.svc-detail {
  padding: 72px 0;
  border-bottom: 1px solid var(--border-light);
}

.svc-detail:last-of-type {
  border-bottom: none;
}

.svc-detail--alt {
  background: var(--bg-light);
}

.svc-detail__grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 56px;
  align-items: center;
}

.svc-detail__visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-lg);
}

.svc-detail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-slow);
}

.svc-detail__visual:hover img {
  transform: scale(1.04);
}

.svc-detail__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  background: var(--accent-grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: var(--shadow-acc);
}

.svc-detail__text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  font-size: .9375rem;
}

.svc-detail__list {
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}

.svc-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-size: .9375rem;
  line-height: 1.55;
}

.svc-detail__list li i {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =========================================
   SERVICES PAGE — Process
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.proc-step__num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.proc-step__icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 22px;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}

.proc-step:hover .proc-step__icon {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: var(--shadow-acc);
}

.proc-step__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: .9375rem;
}

.proc-step__text {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 52px;
  align-items: flex-start;
}

.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.cinfo-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.cinfo-item__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--accent);
  margin-bottom: 5px;
}

.cinfo-item__text {
  color: var(--text);
  line-height: 1.6;
  font-size: .9375rem;
}

.cinfo-link {
  color: var(--primary);
  font-weight: 600;
}

.cinfo-link:hover {
  color: var(--accent);
}

.contact-social {
  display: flex;
  gap: 9px;
  margin-top: 32px;
}

/* Form card */
.contact-form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form-card__sub {
  color: var(--text-muted);
  font-size: .9375rem;
  margin-bottom: 26px;
}

/* Form inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-req {
  color: var(--accent);
}

.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .9375rem;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: var(--t);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 184, 184, .12);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* Map standalone */
.map-wrap {
  border-radius: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: var(--shadow-acc);
}

.faq-item__q {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9375rem;
  user-select: none;
}

.faq-item__q::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform var(--t);
  flex-shrink: 0;
  margin-left: 12px;
  margin-top: -4px;
}

.faq-item[open] .faq-item__q::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__a {
  padding: 0 22px 18px;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: .9375rem;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

/* =========================================
   RESPONSIVE ADDITIONS
   ========================================= */
@media (max-width: 1024px) {

  .about-story__grid,
  .svc-detail__grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-detail__grid>*:first-child {
    order: 0;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-story__badge {
    right: 12px;
    bottom: -16px;
  }
}

@media (max-width: 768px) {

  .about-story__grid,
  .svc-detail__grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-form-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .svc-detail {
    padding: 48px 0;
  }

  .page-hero {
    padding: 130px 0 70px;
  }
}

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

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

  .page-hero {
    padding: 110px 0 60px;
  }
}

/* =========================================
   FEATHER ICON SVG SIZING
   Feather replaces <i> with <svg width="24" height="24">
   font-size has no effect on SVG — target svg directly
   ========================================= */

/* Buttons */
.btn svg.feather {
  width: 16px;
  height: 16px;
}

/* Hero banner buttons — slightly larger icons */
.hero__actions .btn svg.feather {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

/* Trust bar */
.trust-bar__item svg.feather {
  width: 18px;
  height: 18px;
}

/* Value card icons */
.value-card__icon svg.feather {
  width: 30px;
  height: 30px;
}

/* Why features */
.why-feat__icon svg.feather {
  width: 20px;
  height: 20px;
}

/* QHSE & Equipment cards */
.qhse-card__icon svg.feather,
.equip-card__icon svg.feather,
.ind-card__icon svg.feather {
  width: 32px;
  height: 32px;
}

/* Mission/Vision/Commitment cards */
.mv-card__icon svg.feather {
  width: 26px;
  height: 26px;
}

/* Service card badge */
.svc-card__badge svg.feather {
  width: 20px;
  height: 20px;
}

.svc-card__link svg.feather {
  width: 15px;
  height: 15px;
}

/* Service detail badge */
.svc-detail__badge svg.feather {
  width: 22px;
  height: 22px;
}

/* Process step */
.proc-step__icon svg.feather {
  width: 24px;
  height: 24px;
}

/* Story / svc-detail list check icons */
.story__list li svg.feather,
.svc-detail__list li svg.feather {
  width: 14px;
  height: 14px;
}

/* About story tags */
.tag svg.feather {
  width: 12px;
  height: 12px;
}

/* Breadcrumb separator */
.page-hero__breadcrumb svg.feather {
  width: 11px;
  height: 11px;
}

/* Contact info icons */
.cinfo-item__icon svg.feather,
.ci-card__icon svg.feather {
  width: 20px;
  height: 20px;
}

/* Footer — social bubbles (34×34 circle, icon should be 16px) */
.footer__soc svg.feather {
  width: 16px;
  height: 16px;
}

/* Footer — contact items (address / phone / email / clock) */
.footer__contact-item svg.feather {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Footer — quick/service link chevrons */
.footer__link svg.feather {
  width: 11px;
  height: 11px;
}