/*
Theme Name: Bastar Mill Stores
Theme URI: https://bastarmillstores.com
Author: Trendy Web Works
Author URI: https://trendywebworks.in
Description: A custom responsive WordPress theme developed by Trendy Web Works.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bastar-mill-stores
Tags: custom-logo, custom-menu, featured-images, blog, e-commerce, responsive-layout
*/

:root {
  --blue: #001a29;
  --blue-dark: #333333;
  --green: #fe9900;
  --ink: #001a29;
  --text: #74787c;
  --line: #001a291a;
  --soft: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 36, 58, 0.14);
  --radius: 20px;
  --body-font: "Inter", sans-serif;
  --heading-font: "ClashGrotesk-Variable", "Inter", sans-serif;
}

@font-face {
  font-family: "ClashGrotesk-Variable";
  src: url("fonts/ClashGrotesk-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--text);
  line-height: 1.6em;
}

.container {
  width: min(1300px, calc(100% - 30px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 100px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1em;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 9px 16px 9px 31px;
}

.section-kicker::before {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  content: "";
}

.section-head {
  display: grid;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2,
.section-copy h2,
.why h2,
.quote h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.section-copy {
  display: grid;
  align-content: center;
}

.section-copy p+p {
  margin-top: 16px;
}

.btn,
.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  width: max-content;
  padding: 17px 50px 17px 20px;
}

.btn::before,
.header-cta::before {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(0 42%, 60% 42%, 60% 16%, 100% 50%, 60% 84%, 60% 58%, 0 58%);
  transform: translateY(-50%);
  transition: transform 180ms ease;
  content: "";
}

.btn:hover::before,
.header-cta:hover::before {
  transform: translateY(-50%) rotate(45deg);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(18, 34, 52, 0.16);
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(11, 38, 61, 0.08);
}

.topbar {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.topbar p,
.topbar a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  gap: 20px;
}

.topbar-inner div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-inner span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
  gap: 12px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.brand-text small {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
}

.nav-menu a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--green);
}

.header-cta {
  padding: 17px 50px 17px 20px;
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0;
  background: var(--blue);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(270deg, transparent 10.45%, rgba(0, 26, 41, 0.9) 72.29%);
  content: "";
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.25fr);
  align-items: end;
  gap: 60px;
}

.hero-copy h1 {
  max-width: 720px;
  color: var(--white);
  font-size: 60px;
  line-height: 1.1em;
  font-weight: 500;
}

.hero-copy p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 14px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 12px;
}

.hero-points span,
.about-checks span,
.sector-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.hero .hero-points span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card,
.experience-badge {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 168px;
  min-height: 126px;
  place-content: center;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-stat-panel {
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 20px;
}

.hero-stat-panel .hero-card {
  position: static;
}

.hero-stat-panel p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  text-align: right;
}

.hero-card strong,
.experience-badge strong,
.why-cards strong {
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.hero-card span,
.experience-badge span {
  color: var(--text);
  font-weight: 500;
}

.brand-strip {
  overflow: hidden;
  padding: 28px 0;
  background: var(--green);
}

.brand-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: slideBrands 26s linear infinite;
}

.brand-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0 34px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.about {
  background: var(--white);
}

.about-grid,
.project-grid,
.quote-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.image-stack {
  position: relative;
}

.image-stack img,
.project-image img {
  width: 100%;
  height: 560px;
  border-radius: 8px 48px 8px 48px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-badge {
  right: 28px;
  bottom: -30px;
  width: 240px;
  min-height: 152px;
  padding: 20px;
}

.experience-badge strong {
  font-size: 22px;
}

.about-checks,
.sector-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 12px;
}

.services {
  background: var(--soft);
}

.services-overview {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.product-grid article,
.process-grid article,
.testimonial-client-box,
.testimonial-item,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 34px;
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.09);
  content: "";
}

.service-card.featured {
  background: var(--green);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured a,
.service-card.featured .service-icon {
  color: var(--white);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
}

.service-card h3,
.product-grid h3,
.process-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.service-card a {
  display: inline-flex;
  margin-top: 26px;
  color: var(--green);
  font-weight: 600;
}

.service-page-grid .service-card {
  min-height: 360px;
}

.products {
  background: var(--white);
}

.product-nav-band {
  position: sticky;
  z-index: 20;
  top: 128px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.product-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  padding: 0 16px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.product-nav-list a:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.product-catalog-intro {
  background: var(--white);
}

.product-catalog-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 54px;
}

.catalog-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-highlights article {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  padding: 28px;
}

.catalog-highlights strong {
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.catalog-highlights span {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.product-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
}

.sticky-copy {
  position: sticky;
  top: 160px;
  align-self: start;
}

.sticky-copy .btn {
  margin-top: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-grid article {
  min-height: 260px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(254, 153, 0, 0.18), transparent 28%);
}

.product-grid article:nth-child(2),
.product-grid article:nth-child(3) {
  transform: translateY(34px);
}

.product-grid h3 {
  color: var(--blue);
}

.product-category-section {
  background: var(--white);
}

.product-category-section.alt {
  background: var(--soft);
}

.product-category-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.product-category-head h2 {
  max-width: 820px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
}

.catalog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.catalog-card-body {
  padding: 28px;
}

.catalog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  border-radius: 100px;
  background: var(--soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 0 12px;
}

.catalog-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.catalog-card dl {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.catalog-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.catalog-card dd {
  margin: 0 0 8px;
  color: var(--text);
  line-height: 1.5;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.catalog-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 0 14px;
}

.catalog-actions a:first-child {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 64px;
}

.product-spec-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("assets/images/bms-about-warehouse.png") center/cover;
}

.process.product-process {
  background:
    linear-gradient(135deg, rgba(0, 26, 41, 0.95), rgba(0, 26, 41, 0.88)),
    url("assets/images/bms-about-warehouse.png") center/cover;
}

.product-quote {
  background: var(--green);
}

.why {
  padding: 90px 0;
  background: var(--blue-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 54px;
}

.why h2 {
  color: var(--white);
}

.why .section-kicker {
  color: var(--ink);
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.why-cards article {
  display: grid;
  min-height: 150px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.why-cards strong {
  color: var(--green);
}

.why-cards span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.project-band {
  background: var(--soft);
}

.project-image img {
  border-radius: 48px 8px 48px 8px;
}

.projects-showcase {
  background: var(--white);
}

.project-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px 0 44px;
}

.project-filter-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  padding: 0 16px;
}

.project-filter-list a:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
}

.project-card a {
  position: relative;
  display: grid;
  min-height: 460px;
  align-content: end;
  overflow: hidden;
  padding: 30px;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.project-card a::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 26, 41, 0.88));
  content: "";
}

.project-card span,
.project-card h3,
.project-card p {
  position: relative;
  z-index: 2;
}

.project-card span {
  width: max-content;
  margin-bottom: 14px;
  border-radius: 100px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
}

.project-card h3 {
  color: var(--white);
  font-size: 26px;
}

.project-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

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

.project-impact-band {
  background: var(--soft);
}

.project-impact-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: center;
  gap: 54px;
}

.project-impact-grid h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.impact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.impact-list article,
.result-grid article,
.project-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
}

.impact-list article {
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 28px;
}

.impact-list strong,
.result-grid span {
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 500;
}

.impact-list span {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.projects-quote,
.project-detail-quote {
  background: var(--green);
}

.contact-info-section,
.contact-form-section {
  background: var(--white);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.contact-card-grid article {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
  padding: 30px;
}

.contact-card-grid span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.contact-card-grid h3 {
  margin-top: 34px;
  font-size: 24px;
}

.contact-card-grid p,
.contact-card-grid a {
  color: var(--text);
  overflow-wrap: anywhere;
}

.contact-map-section {
  padding: 0 0 120px;
  background: var(--white);
}

.contact-map-wrap {
  overflow: hidden;
  border-radius: 8px 48px 8px 48px;
  box-shadow: var(--shadow);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.contact-form-section {
  background: var(--soft);
}

.contact-form-grid,
.contact-social-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
}

.contact-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-action-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  padding: 0 18px;
  box-shadow: 0 12px 30px rgba(13, 42, 66, 0.07);
}

.contact-action-list a:first-child {
  background: var(--green);
  color: var(--white);
}

.contact-page-form {
  box-shadow: var(--shadow);
}

.contact-social-band {
  padding: 100px 0;
  background: var(--blue-dark);
}

.contact-social-grid h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.contact-social-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-social-links a {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.project-single-overview,
.project-story {
  background: var(--white);
}

.project-single-grid {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  align-items: start;
  gap: 36px;
}

.project-main-image img {
  width: 100%;
  height: 620px;
  border-radius: 8px 48px 8px 48px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.project-info-card {
  position: sticky;
  top: 160px;
  padding: 34px;
}

.project-info-card h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.project-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.project-info-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-info-card dd {
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.5;
}

.project-results {
  background: var(--soft);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.result-grid article {
  min-height: 260px;
  padding: 32px;
}

.result-grid h3 {
  margin: 40px 0 14px;
  font-size: 24px;
}

.related-projects {
  background: var(--white);
}

.project-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card-grid.compact .project-card a {
  min-height: 360px;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 110px;
  background:
    linear-gradient(90deg, rgba(0, 26, 41, 0.92), rgba(0, 26, 41, 0.72)),
    url("assets/images/bms-hero-water-power.png") center/cover;
}

.inner-hero::after {
  position: absolute;
  right: -7vw;
  bottom: -12vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.2fr);
  align-items: end;
  gap: 60px;
}

.inner-hero-copy h1 {
  max-width: 860px;
  color: var(--white);
  font-size: 60px;
  line-height: 1.08em;
}

.inner-hero-copy p:not(.section-kicker) {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.inner-hero-card {
  display: grid;
  gap: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.inner-hero-card strong {
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 52px;
  font-weight: 500;
  line-height: 1;
}

.inner-hero-card span {
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

.about-story {
  background: var(--white);
}

.about-timeline {
  padding: 70px 0;
  background: var(--soft);
}

.timeline-grid,
.mission-grid,
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.timeline-grid article,
.mission-grid article,
.values-grid article,
.team-list article,
.choose-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(13, 42, 66, 0.07);
}

.timeline-grid article {
  min-height: 240px;
  padding: 28px;
}

.timeline-grid span,
.choose-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
}

.timeline-grid h3,
.mission-grid h3,
.values-grid h3,
.choose-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.mission-vision {
  background: var(--white);
}

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

.mission-grid article {
  min-height: 360px;
  padding: 40px;
}

.mission-grid article:nth-child(2) {
  background: var(--green);
}

.mission-grid article:nth-child(2) h3,
.mission-grid article:nth-child(2) p,
.mission-grid article:nth-child(2) .service-icon {
  color: var(--white);
}

.values-section {
  background: var(--soft);
}

.values-layout,
.leadership-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.values-grid article {
  min-height: 210px;
  padding: 30px;
}

.values-grid article::before {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 38px;
  border-radius: 100px;
  background: var(--green);
  content: "";
}

.leadership-band {
  padding: 110px 0;
  background: var(--blue-dark);
}

.leadership-grid {
  align-items: center;
}

.leadership-grid h2 {
  color: var(--white);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.leadership-grid p:not(.section-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.team-list {
  display: grid;
  gap: 16px;
}

.team-list article {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 0.66fr);
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.08);
}

.team-list span {
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-list strong {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.why-choose-about {
  background: var(--white);
}

.choose-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.choose-grid article {
  min-height: 290px;
  padding: 28px;
}

.about-quote {
  background: var(--green);
}

.service-detail-section {
  background: var(--white);
}

.service-detail-section.water-detail,
.service-industries {
  background: var(--soft);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.service-detail-grid.reverse {
  grid-template-columns: 1fr 0.92fr;
}

.service-detail-image img {
  width: 100%;
  height: 560px;
  border-radius: 8px 48px 8px 48px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail-content h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1em;
}

.service-detail-content p:not(.section-kicker) {
  margin-top: 20px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.service-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  padding: 0 18px 0 42px;
  position: relative;
}

.service-list span::before {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  content: "";
}

.service-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 42px;
}

.service-panel h3 {
  margin-bottom: 24px;
  font-size: 30px;
}

.service-panel ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  color: var(--text);
  line-height: 1.6;
  padding-left: 28px;
}

.service-panel li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.dark-panel {
  background: var(--blue-dark);
}

.dark-panel h3 {
  color: var(--white);
}

.service-sector-list span {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.process.service-process {
  background:
    linear-gradient(135deg, rgba(0, 26, 41, 0.95), rgba(0, 26, 41, 0.88)),
    url("assets/images/bms-project-solar-pump.png") center/cover;
}

.service-quote {
  background: var(--green);
}

.process {
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(0, 26, 41, 0.95), rgba(0, 26, 41, 0.9)),
    url("assets/images/bms-hero-water-power.png") center/cover;
}

.section-head.light h2 {
  color: var(--white);
}

.section-head.light .section-kicker {
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-grid article {
  min-height: 240px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.96);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--green);
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 500;
}

.our-testimonials {
  background: var(--soft);
}

.testimonials-grid {
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
}

.testimonial-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-content-header .btn {
  margin-top: 30px;
}

.testimonial-client-box {
  max-width: 360px;
  padding: 30px;
  border-radius: 14px;
}

.testimonial-client-header {
  margin-bottom: 20px;
}

.testimonial-client-header ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.testimonial-client-header li:first-child {
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 1em;
}

.stars,
.testimonial-item-rating {
  color: var(--green);
  letter-spacing: 0;
}

.testimonial-client-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.satisfy-client-images {
  display: flex;
  align-items: center;
}

.satisfy-client-images span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.satisfy-client-images span+span {
  margin-left: -10px;
}

.satisfy-client-images .add-more {
  background: var(--ink);
}

.testimonial-client-content p {
  max-width: 180px;
  color: var(--ink);
  font-weight: 500;
  line-height: normal;
}

.testimonial-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-item {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 40px;
  border-radius: 14px;
}

.testimonial-item-rating {
  font-size: 20px;
}

.testimonial-item-content p {
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4em;
}

.testimonial-author-content {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 30px;
}

.testimonial-author-content h2 {
  font-size: 22px;
}

.testimonial-author-content p {
  margin-top: 5px;
}

.testimonial-footer-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 24px 30px;
  border-radius: 14px;
  background: var(--white);
}

.testimonial-footer-text p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.testimonial-footer-text a {
  color: var(--green);
}

.testimonial-footer-text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 500;
}

.quote {
  padding: 100px 0;
  background: var(--green);
}

.quote h2,
.quote .section-kicker {
  color: var(--white);
}

.quote .section-kicker {
  color: var(--ink);
}

.quote .section-kicker::before {
  background: var(--green);
}

.quote-grid {
  align-items: start;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.main-footer {
  padding: 120px 0 0;
  background: var(--blue);
}

.main-footer-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 80px;
}

.about-footer {
  max-width: 330px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: var(--white);
}

.about-footer-content p,
.footer-links p,
.footer-contact-item-content p,
.footer-copyright-text p {
  color: var(--white);
  margin-bottom: 0;
}

.footer-social-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}

.footer-social-links h2,
.footer-links h2 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 25px;
}

.footer-social-links ul,
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-social-links ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
}

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

.footer-links-box {
  width: calc(100% - 410px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 2.604vw;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
}

.footer-links {
  max-width: 37%;
}

.footer-links ul {
  padding-left: 20px;
  list-style: disc;
}

.footer-links li {
  color: var(--white);
  line-height: 1.5em;
  margin-bottom: 15px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links li::marker {
  color: var(--green);
}

.footer-links a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-links a:hover,
.footer-contact-item-content h3 a:hover {
  color: var(--green);
}

.footer-newsletter-form p {
  margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
  position: relative;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-form .form-control {
  width: calc(100% - 34px);
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  color: var(--white);
  font: inherit;
  padding: 6px 20px 20px 0;
}

.footer-newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.newsletter-btn:hover {
  background: var(--white);
  color: var(--ink);
  transform: rotate(45deg);
}

.footer-contact-items-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 60px;
}

.footer-contact-item {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(33.33% - 53.33px);
  gap: 15px;
}

.footer-contact-item::before {
  position: absolute;
  top: 0;
  right: -40px;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.footer-contact-item:last-child::before {
  display: none;
}

.footer-contact-item .icon-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box {
  background: var(--white);
  color: var(--ink);
}

.footer-contact-item-content {
  width: calc(100% - 65px);
}

.footer-contact-item-content p {
  margin-bottom: 5px;
}

.footer-contact-item-content h3 {
  color: var(--white);
  font-size: 22px;
  overflow-wrap: anywhere;
}

.footer-contact-item-content h3 a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}

.footer-copyright-text {
  margin-top: 40px;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-actions {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: grid;
  min-width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
}

.floating-actions a:nth-child(2) {
  background: var(--blue);
}

.floating-actions a:nth-child(3) {
  background: var(--soft);
  color: var(--ink);
}

.split-slide {
  display: block;
  overflow: hidden;
}

.split-slide>span {
  display: block;
  transform: translateY(112%);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.split-slide.is-visible>span {
  transform: translateY(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(24px);
  transition: opacity 750ms ease, transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-copy .section-kicker,
.hero-copy>p:not(.section-kicker),
.hero-actions,
.hero-points,
.hero-stat-panel {
  animation: heroFadeUp 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy .section-kicker {
  animation-delay: 120ms;
}

.hero-copy>p:not(.section-kicker) {
  animation-delay: 520ms;
}

.hero-actions {
  animation-delay: 680ms;
}

.hero-points {
  animation-delay: 820ms;
}

.hero-stat-panel {
  animation-delay: 920ms;
}

.brand-track span {
  animation: brandPulse 4.5s ease-in-out infinite;
  animation-delay: calc(var(--brand-index, 0) * 120ms);
}

.service-card:hover,
.product-grid article:hover,
.testimonial-item:hover,
.process-grid article:hover,
.timeline-grid article:hover,
.values-grid article:hover,
.team-list article:hover,
.choose-grid article:hover,
.service-panel:hover,
.catalog-card:hover,
.catalog-highlights article:hover,
.project-card:hover,
.impact-list article:hover,
.result-grid article:hover,
.project-info-card:hover,
.contact-card-grid article:hover,
.contact-action-list a:hover,
.contact-social-links a:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 26, 41, 0.12);
}

.service-card,
.product-grid article,
.testimonial-item,
.process-grid article,
.timeline-grid article,
.values-grid article,
.team-list article,
.choose-grid article,
.service-panel,
.catalog-card,
.catalog-highlights article,
.project-card,
.impact-list article,
.result-grid article,
.project-info-card,
.contact-card-grid article,
.contact-action-list a,
.contact-social-links a {
  transition: transform 300ms ease, box-shadow 300ms ease;
}

@keyframes slideBrands {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandPulse {

  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .split-slide>span,
  .reveal-up,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}


@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .nav-menu {
    gap: 18px;
  }

  .hero-grid,
  .inner-hero-grid,
  .about-grid,
  .project-grid,
  .quote-grid,
  .testimonials-grid,
  .product-layout,
  .product-catalog-layout,
  .product-feature-grid,
  .project-impact-grid,
  .project-single-grid,
  .contact-form-grid,
  .contact-social-grid,
  .why-grid,
  .values-layout,
  .leadership-grid,
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .testimonial-card-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-grid,
  .choose-grid,
  .catalog-grid,
  .project-card-grid,
  .impact-list,
  .result-grid,
  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-highlights {
    grid-template-columns: 1fr;
  }

  .project-info-card {
    position: static;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 30px, 680px);
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    min-height: 42px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 150px 0;
  }

  .section-head h2,
  .section-copy h2,
  .why h2,
  .quote h2,
  .leadership-grid h2,
  .service-detail-content h2,
  .product-category-head h2,
  .project-impact-grid h2,
  .contact-social-grid h2 {
    font-size: 38px;
  }

  .product-nav-band {
    top: 76px;
  }

  .contact-map-section {
    padding-bottom: 60px;
  }

  .product-category-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .inner-hero-grid,
  .about-grid,
  .project-grid,
  .quote-grid,
  .testimonials-grid {
    gap: 42px;
  }

  .testimonial-client-box {
    max-width: none;
  }

  .testimonial-item {
    min-height: 360px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

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

  .inner-hero-copy h1 {
    font-size: 44px;
  }

  .image-stack img,
  .project-image img,
  .service-detail-image img,
  .project-main-image img {
    min-height: 0;
    height: 420px;
  }

  .hero-stat-panel {
    justify-items: start;
  }

  .hero-stat-panel p {
    text-align: left;
  }

  .hero-card {
    width: 138px;
    min-height: 108px;
  }

  .hero-card strong {
    font-size: 38px;
  }

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

  .main-footer {
    padding-top: 60px;
  }

  .main-footer-box {
    align-items: flex-start;
    gap: 30px;
  }

  .about-footer,
  .footer-links-box {
    width: 100%;
    max-width: none;
  }

  .footer-links-box {
    padding: 30px;
  }

  .footer-contact-items-list {
    gap: 30px;
  }

  .footer-contact-item {
    width: 100%;
  }

  .footer-contact-item::before {
    display: none;
  }

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

  .product-grid article:nth-child(2),
  .product-grid article:nth-child(3) {
    transform: none;
  }

}

@media (max-width: 560px) {

  .section-head h2,
  .section-copy h2,
  .why h2,
  .quote h2,
  .leadership-grid h2,
  .service-detail-content h2,
  .project-impact-grid h2,
  .contact-social-grid h2 {
    font-size: 26px;
  }

  .hero {
    padding: 100px 0;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .inner-hero-copy h1 {
    font-size: 30px;
  }

  .inner-hero-card {
    padding: 24px;
  }

  .inner-hero-card strong {
    font-size: 40px;
  }

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

  .hero-actions .btn,
  .sticky-copy .btn {
    width: 100%;
  }

  .image-stack img,
  .project-image img,
  .service-detail-image img,
  .project-main-image img {
    height: 340px;
    border-radius: 28px 8px 28px 8px;
  }

  .hero-stat-panel {
    display: none;
  }

  .experience-badge {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .why-cards,
  .quote-form,
  .timeline-grid,
  .values-grid,
  .choose-grid,
  .service-list,
  .catalog-grid,
  .project-card-grid,
  .project-card-grid.compact,
  .impact-list,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid,
  .contact-social-links {
    grid-template-columns: 1fr;
  }

  .product-category-head h2 {
    font-size: 26px;
  }

  .catalog-card img {
    height: 210px;
  }

  .contact-map-wrap iframe {
    height: 360px;
  }

  .project-card a {
    min-height: 340px;
    padding: 24px;
  }

  .project-card h3 {
    font-size: 22px;
  }

  .team-list article {
    grid-template-columns: 1fr;
  }

  .footer-links-box {
    padding: 20px;
  }

  .footer-links {
    max-width: 100%;
    width: 100%;
  }

  .footer-contact-item {
    align-items: flex-start;
  }

  .footer-copyright-text {
    padding: 30px 0;
  }

  .service-card,
  .product-grid article,
  .process-grid article,
  .quote-form,
  .mission-grid article,
  .values-grid article,
  .choose-grid article,
  .timeline-grid article,
  .service-panel,
  .catalog-card-body,
  .catalog-highlights article,
  .impact-list article,
  .result-grid article,
  .project-info-card,
  .contact-card-grid article {
    padding: 24px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-actions a {
    min-width: 48px;
    height: 48px;
  }
}