@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #0a0f1a;
  --ink-mid: #1c2535;
  --ink-soft: #3a4558;
  --muted: #6b7a94;
  --gold: #b8832a;
  --gold-lt: #d4a44c;
  --gold-pale: #f5eddc;
  --gold-pale2: #fef9f0;
  --off: #f8f6f2;
  --white: #ffffff;
  --border: #e4e0d8;
  --border-dark: rgba(255,255,255,0.1);
  --sky: #f0f6ff;
  --border-dk: rgba(255,255,255,0.10);
  --success: #2d7a4f;
}


html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease,transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease,transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease,transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.d1 {
  transition-delay: .06s!important;
}

.d2 {
  transition-delay: .14s!important;
}

.d3 {
  transition-delay: .22s!important;
}

.d4 {
  transition-delay: .30s!important;
}

.f-display {
font-family: "Lato", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  transition: background 0.4s, box-shadow 0.4s;
  background: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}


.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
width: 190px;
}

.logo-hex {
  width: 36px;
  height: 36px;
  background: var(--gold);
  clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-hex span {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.logo-wordmark {
  line-height: 1.1;
}

.logo-wordmark strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  transition: color 0.4s;
}

.logo-wordmark small {
  color : #000;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color 0.4s;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
color: #000;
  text-decoration: none;
    font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #b88439;
}

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}


/* DROPDOWN */
.nav-links li.dropdown {
  position: relative;
}

.nav-links li.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 260;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  list-style: none;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu a:hover {
  background: var(--gold-pale2);
  color: var(--gold);
  padding-left: 24px;
}

nav.scrolled .nav-cta {
  color: var(--sky);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: #000;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner1.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.5;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom{


    to {
        transform: scale(1);
        opacity: 0.42;
    }


}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(8 14 26) 0%, rgb(8 14 26 / 0%) 55%, rgb(8 14 26 / 0%) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 6% 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}

.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow span {
  color: var(--gold-lt);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Lato", sans-serif;
  font-size: 70px;
  font-weight: 600;
  color: #fff;
  line-height: 1.03;
  margin-bottom: 28px;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.85;
  color: #fff;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

@keyframes fadeUp{


    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }


}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 14px 36px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s,transform .15s,box-shadow .2s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,53,.35);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 13px 36px;
  border-radius: 3px;
  border: 1.5px solid #fff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s,background .2s,transform .15s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(196, 154, 53, 0.1);
  transform: translateY(-2px);
  color: var(--gold);
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gold);
  display: flex;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}

@keyframes fadeIn{


    to {
        opacity: 1;
    }


}

.hstat {
  padding: 22px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-family: "Lato", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 3px;
}

.hstat-lbl {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

section {
  padding: 110px 6%;
}

.s-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.s-eyebrow-line {
  width: 26px;
  height: 1.5px;
  background: var(--gold);
}

.s-eyebrow span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.s-title {
font-family: "Lato", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 20px;
}

.s-title.light {
  color: #fff;
}

.s-body {
  font-size: 16px;
  line-height: 1.85;
  color : #000;
}

.s-body.light {
color : #fff;
}

.services-sec {
  background: var(--white);
  padding-top: 120px;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.svc {
  background: var(--white);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.svc::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
  z-index: 0;
}

.svc:hover::before {
  opacity: 0.35;
  transform: scale(1.05);
}

.svc > * {
  position: relative;
  z-index: 1;
}

.d1::before {
  background-image: url('../images/pipeline.jpg');
}

.d4::before {
  background-image: url('../images/preventive-maintenance.jpg');
}

.d2::before {
  background-image: url('../images/structures.jpg');
}

.d3::before {
  background-image: url('../images/facility.jpg');
}

.svc:hover {
  background: #0a0f1a;
}

.svc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(10, 15, 26, 0.03);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
  user-select: none;
  transition: color 0.3s;
}

.svc:hover .svc-num {
  color: rgba(255, 255, 255, 0.06);
}

.svc-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: 6px;
  transition: background 0.3s, transform 0.3s;
}

.svc:hover .svc-icon {
  background: #fff;
  transform: scale(1.08);
}

.svc-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
}


.svc h3 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color 0.35s;
}

.svc:hover h3 {
  color: #fff;
}

.svc p {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  transition: color 0.35s;
}

.svc:hover p {
  color: #fff;
}

.about-sec {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.about-img {
  position: relative;
  min-height: 640px;
  background-image: url('../images/our-story.jpg');
  background-size: cover;
  background-position: center;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--ink));
}

.about-img-badge {
  position: absolute;
  bottom: 48px;
  left: 44px;
  z-index: 2;
  background: var(--gold);
  padding: 20px 28px;
}

.about-img-badge .big {
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
}

.about-img-badge .sm {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 15, 26, 0.6);
}

.about-copy {
  padding: 90px 70px 90px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy .s-title {
  margin-bottom: 24px;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}

.afeat {
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 20px;
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.afeat:hover {
  border-color: rgba(196, 154, 53, 0.35);
  background: rgba(196, 154, 53, 0.05);
  transform: translateY(-2px);
}

.afeat-ic {
  margin-bottom: 12px;
}

.afeat-ic svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.afeat strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.afeat span {
  font-size: 16px;
  color: #fff;
}

.numbers-sec {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ncard {
  background: var(--white);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  overflow: hidden;
}

.ncard:last-child {
  border-right: none;
}

.ncard::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, var(--gold-pale), transparent);
  transition: height 0.5s ease;
}

.ncard:hover::before {
  height: 100%;
}

.ncard-num {
  font-family: "Lato", sans-serif;
  font-size: 72px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  transition: transform 0.3s;
}

.ncard:hover .ncard-num {
  transform: scale(1.06);
}

.ncard-lbl {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
}

.ncard-desc {
  font-size: 16px;
  color : #000;
  margin-top: 8px;
  line-height: 1.6;
  position: relative;
}

.why-sec {
  background: var(--off);
}

.why-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.why-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(13, 20, 34, 0.12);
}

.why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.why-img:hover img {
  transform: scale(1.04);
}

.why-img-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.wcard {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.wcard::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.wcard:hover {
  border-color: rgba(196, 154, 53, 0.3);
  box-shadow: 0 8px 36px rgba(13, 20, 34, 0.08);
  transform: translateY(-3px);
}

.wcard:hover::before {
  transform: scaleY(1);
}

.wcard-ic {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s, transform 0.3s;
}

.wcard:hover .wcard-ic {
  background: rgba(196, 154, 53, 0.2);
  transform: scale(1.1);
}

.wcard-ic svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.wcard h3 {
  font-family: "Lato", sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.wcard p {
  font-size: 16px;
  line-height: 1.8;
  color : #000;
}

.gallery-sec {
  background: var(--white);
  padding: 100px 6%;
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 260px;
  gap: 6px;
}

.gimg {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gimg:hover img {
  transform: scale(1.06);
}

.gimg-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(13, 20, 34, 0.85), transparent);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.gimg:hover .gimg-label {
  opacity: 1;
}

.g1 {
  grid-column: span 5;
}

.g2 {
  grid-column: span 4;
}

.g3 {
  grid-column: span 3;
}

.g4 {
  grid-column: span 3;
}

.g5 {
  grid-column: span 5;
}

.g6 {
  grid-column: span 4;
}

.clients-sec {
  background: var(--ink);
  padding: 100px 0;
}

.clients-head {
  text-align: center;
  padding: 0 6%;
  margin-bottom: 64px;
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
}

.carousel-wrap::before,
.carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}

.carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--ink), transparent);
}

.carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--ink), transparent);
}

.carousel-border {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: marquee 100s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes marquee{


    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }


}

.cpill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  min-height: 120px;
  border-right: 1px solid var(--border-dark);
  flex-shrink: 0;
  transition: background 0.2s;
  cursor: default;
  margin: 20px;
}

.cpill:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cpill-name {
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  line-height: 1.3;
}

.cpill-sub {
  font-size: 9.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
  text-align: center;
}

.contact-sec {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.contact-img {
  position: relative;
  min-height: 700px;
  background-image: url('https://images.unsplash.com/photo-1565022536102-f7645c84354a?w=900&q=80');
  background-size: cover;
  background-position: center;
}

.contact-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 14, 26, 0.88), rgba(8, 14, 26, 0.52));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 52px;
}

.contact-info h2 {
  font-family: "Lato", sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 40px;
}

.cdetail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.cdetail-ic {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(196, 154, 53, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}

.cdetail:hover .cdetail-ic {
  background: rgba(196, 154, 53, 0.3);
}

.cdetail-ic svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.cdetail strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cdetail span {
  font-size: 13px;
  color: #fff;
}

.img {
  width: 100%;
}

.contact-form-wrap {
  padding: 80px 64px;
  background: var(--gold-pale2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap .s-eyebrow {
  margin-bottom: 14px;
}

.contact-form-wrap .s-title {
  font-size: clamp(28px, 2.5vw, 42px);
  margin-bottom: 40px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color : #000;
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 13px 16px;
  color: var(--sky);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 53, 0.1);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #bbb;
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  background: var(--ink);
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.form-submit:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(13, 20, 34, 0.18);
}

footer {
  background: var(--ink);
  padding: 36px 6%;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.foot-top {
  display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.foot-brand .logo-wordmark strong {
  font-size: 16px;
}

.foot-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-top: 18px;
}

.foot-col h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}


.foot-brand h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}


.foot-col ul {
  list-style: none;
}

.foot-col li {
  margin-bottom: 12px;
}

.foot-col a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--gold-lt);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bottom p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  margin-top: 18px;
}

.foot-bottom p a {
  color: #fff;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse{



    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(196, 154, 53, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(196, 154, 53, 0);
    }


}

*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.d5 {
  transition-delay: .38s!important;
}

.d6 {
  transition-delay: .46s!important;
}

.nav-links a:hover,.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active {
  font-weight: 600;
  color: var(--gold);
}

.page-hero {
  padding: 160px 6% 90px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/services-banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-hero h1 {
  font-family: "Lato", sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 600;
  color: #fff;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.page-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  max-width: 480px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp .9s ease .6s forwards;
}

@keyframes fadeUp{

from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}

}

.svc-tabs {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  padding: 0 6%;
  overflow-x: auto;
  scrollbar-width: none;
}

.svc-tabs::-webkit-scrollbar {
  display: none;
}

.stab {
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 500;
  color : #000;
  letter-spacing: .04em;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .2s,border-color .2s;
  text-decoration: none;
}

.stab:hover {
  color: var(--ink);
}

.stab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.svc-section {
  padding: 100px 6%;
  position: relative;
}

.svc-number {
font-family: "Lato", sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: rgba(13,20,34,.03);
  position: absolute;
  top: 60px;
  right: 6%;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.fab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.fab-img {
  position: relative;
  background-image: url('../images/design.jpg');
  background-size: cover;
  background-position: center;
  min-height: 560px;
}

.fab-img-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--gold);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.fab-img-badge svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.fab-img-badge span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.fab-steps {
  background: var(--white);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fab-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background .25s;
}

.fab-step:first-child {
  padding-top: 0;
}

.fab-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fab-step-num {
font-family: "Lato", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
  margin-top: 2px;
}

.fab-step-body h3 {
font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.fab-step-body p {
  font-size: 16px;
  line-height: 1.8;
  color : #000;
}

.erection-sec {
  background: #0d1422;
}

.erection-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.erection-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.erection-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 480px;
  transition: transform .6s ease;
}

.erection-img:hover img {
  transform: scale(1.04);
}

.erection-img-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}

.erection-copy .s-eyebrow span {
  color: var(--gold-lt);
}

.erection-copy p {
  font-size: 16px;
  line-height: 1.9;
color : #fff;
  margin-bottom: 32px;
}

.erection-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.erection-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #fff;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  transition: border-color .2s,background .2s;
}

.erection-bullets li:hover {
  border-color: rgba(196,154,53,.3);
  background: rgba(196,154,53,.05);
}

.erection-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(20% 50%,45% 75%,80% 25%);
  margin-top: 2px;
}

.maint-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}

.maint-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.mcard {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.mcard:hover {
  background: var(--gold-pale2);
}

.mcard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg,var(--gold),var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.mcard:hover::after {
  transform: scaleX(1);
}

.mcard-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background .3s,transform .3s;
}

.mcard:hover .mcard-icon {
  background: rgba(196,154,53,.2);
  transform: scale(1.1);
}

.mcard-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.7;
}

.mcard h3 {
font-family: "Lato", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.mcard p {
  font-size: 16px;
  line-height: 1.8;
  color : #000;
}

.maint-note {
  margin-top: 48px;
  background: linear-gradient(135deg,var(--ink) 0%,var(--ink-mid) 100%);
  border-radius: 6px;
  padding: 36px 44px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.maint-note-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(196,154,53,.18);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.maint-note-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.maint-note p {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
}

.maint-note p strong {
  color: #fff;
  font-weight: 500;
}

.amc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
}

.amc-img {
  position: relative;
  min-height: 640px;
  background-image: url('../images/maintenance.jpg');
  background-size: cover;
  background-position: center;
}

.amc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,transparent 50%,var(--white));
}

.amc-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amc-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.amc-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 28px;
  transition: border-color .25s,box-shadow .25s,transform .2s;
  position: relative;
  overflow: hidden;
}

.amc-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s ease;
}

.amc-card:hover {
  border-color: rgba(196,154,53,.3);
  box-shadow: 0 8px 36px rgba(13,20,34,.07);
  transform: translateY(-2px);
}

.amc-card:hover::before {
  transform: scaleY(1);
}

.amc-card h3 {
font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.amc-card p {
    font-size: 16px;
  line-height: 1.8;
  color : #000;
}

.stats-band {
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.06);
}

.sband {
  padding: 56px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.sband:last-child {
  border-right: none;
}

.sband:hover {
  background: rgba(196,154,53,.05);
}

.sband-num {
font-family: "Lato", sans-serif;
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg,var(--gold),var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.sband-lbl {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.sband-desc {
  font-size: 13px;
  color: rgba(255,255,255,.28);
  margin-top: 8px;
  line-height: 1.5;
}

.cta-band {
  padding: 100px 6%;
  background: linear-gradient(135deg,var(--gold-pale) 0%,var(--white) 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.cta-band h2 {
font-family: "Lato", sans-serif;
  font-size: clamp(34px,4vw,54px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.015em;
  max-width: 540px;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-wm strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-wm small {
  color: rgba(255,255,255,0.38);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold-lt);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(184,131,42,0.05) 0, rgba(184,131,42,0.05) 1px, transparent 1px, transparent 100px),
    repeating-linear-gradient(0deg,  rgba(184,131,42,0.05) 0, rgba(184,131,42,0.05) 1px, transparent 1px, transparent 100px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.eyebrow span {
  color: var(--gold-lt);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: var(--gold);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 6%;
  height: 48px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .sep {
  color: #fff;
  margin: 0 4px;
}

.breadcrumb span.current {
  color: #fff;
  font-weight: 600;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: calc(100vh - 340px);
}

.contact-left {
  background: var(--ink);
  padding: 72px 52px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s ease 0.3s both;
}

.contact-left::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(184,131,42,0.12);
  border-radius: 50%;
}

.contact-left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(184,131,42,0.06);
  border-radius: 50%;
}

.cl-section {
  margin-bottom: 52px;
}

.cl-section:last-child {
  margin-bottom: 0;
}

.cl-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cl-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(184,131,42,0.2);
}

.address-block {
  margin-bottom: 28px;
}

.address-block h3 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.address-block p {
    font-size: 16px;
  line-height: 1.9;
  color : #fff;
  font-weight: 300;
}

.address-block p strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.divider-thin {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 28px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(184,131,42,0.12);
  border: 1px solid rgba(184,131,42,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
}

.ci-text {
  padding-top: 2px;
}

.ci-text label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.ci-text a, .ci-text span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.ci-text a:hover {
  color: var(--gold-lt);
}

.hours-grid {
  display: grid;
  gap: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hour-row span:first-child {
  font-size: 13px;
  color : #fff;
}

.hour-row span:last-child {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.hour-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45,122,79,0.15);
  border: 1px solid rgba(45,122,79,0.3);
  border-radius: 40px;
  padding: 4px 12px;
  margin-top: 16px;
}

.hour-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ecf77;
  animation: blink 2s infinite;
}

@keyframes blink{
 0%,100%{opacity:1} 50%{opacity:0.35} 
}

.hour-badge span {
    font-size: 16px;
  font-weight: 500;
  color: #3ecf77;
}

.map-preview {
  margin-top: 36px;
  border: 1px solid rgba(184,131,42,0.2);
  border-radius: 4px;
  overflow: hidden;
  height: 160px;
  background: rgba(255,255,255,0.03);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
}

.map-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.2);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 10px;
  display: block;
  margin: 0 auto 10px;
}

.map-placeholder p {
  font-size: 16px;
  color: rgba(255,255,255,0.25);
}

.map-placeholder a {
  font-size: 11.5px;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.map-placeholder a:hover {
  color: var(--gold-lt);
}

.contact-right {
  background: var(--off);
  padding: 72px 64px;
  animation: fadeUp 0.7s ease 0.45s both;
}

.form-header {
  margin-bottom: 48px;
}

.form-header .eyebrow {
  margin-bottom: 14px;
}

.form-header h2 {
  font-family: "Lato", sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 16px;
  line-height: 1.75;
  color : #000;
}

.frow {
  margin-bottom: 22px;
}

.fgrid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.fgrid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}

.frow label, .fgrid-2 label, .fgrid-3 label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color : #000;
  margin-bottom: 8px;
}

.required-star {
  color: var(--gold);
  margin-left: 2px;
}

.frow input, .frow select, .frow textarea,
.fgrid-2 input, .fgrid-2 select,
.fgrid-3 input, .fgrid-3 select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.frow input:focus, .frow select:focus, .frow textarea:focus,
.fgrid-2 input:focus, .fgrid-2 select:focus,
.fgrid-3 input:focus, .fgrid-3 select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,131,42,0.1);
}

.frow input::placeholder, .frow textarea::placeholder,
.fgrid-2 input::placeholder, .fgrid-3 input::placeholder {
  color: #c0bdb8;
}

.frow textarea {
  resize: vertical;
  min-height: 120px;
}

.frow select option {
  background: #fff;
  color: var(--ink);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 40px;
}

.select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--border);
}

.checkbox-row span {
    font-size: 16px;
  color: var(--ink-soft);
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.form-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color : #000;
  white-space: nowrap;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note {
  font-size: 12.5px;
  color : #000;
  line-height: 1.6;
  max-width: 320px;
}

.form-note svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
}

.btn-submit {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 15px 44px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--ink-mid);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.2s;
}

.btn-submit:hover svg {
  transform: translateX(3px);
}

.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: var(--ink);
  border-left: 3px solid #3ecf77;
  border-radius: 4px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(10,15,26,0.25);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-ic {
  width: 36px;
  height: 36px;
  background: rgba(62,207,119,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-ic svg {
  width: 18px;
  height: 18px;
  stroke: #3ecf77;
  fill: none;
  stroke-width: 2.5;
}

.toast-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.toast-text span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

.frow.error input, .frow.error select, .frow.error textarea,
.fgrid-2.error input, .fgrid-3.error input {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,0.1);
}

.err-msg {
  font-size: 11.5px;
  color: #e05c5c;
  margin-top: 5px;
  display: none;
}

.frow.error .err-msg {
  display: block;
}

.faq-strip {
  background: var(--white);
  padding: 80px 6%;
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-strip .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

.faq-strip h2 {
  font-family: "Lato", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-q span {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}

.faq-q svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s, stroke 0.2s;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
  stroke: var(--gold);
}

.faq-item.open .faq-q span {
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-a p {
  font-size: 14px;
  line-height: 1.8;
  color : #000;
  padding-bottom: 20px;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px;
}

footer p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.25);
}

.foot-links {
  display: flex;
  gap: 24px;
}

.foot-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.foot-links a:hover {
  color: var(--gold-lt);
}

@keyframes fadeUp{

  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }

}

@media only screen and (max-width:1600px){
  
.foot-desc {
  font-size: 14px;
}
}

@media (max-width:960px) {
  .fab-grid,.erection-inner,.maint-header,.amc-layout {
    grid-template-columns: 1fr;
  }
  
  .fab-img {
    min-height: 320px;
  }
  
  .amc-img {
    min-height: 300px;
  }
  
  .maint-cards {
    grid-template-columns: 1fr;
  }
  
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }
  
  .sband {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  
  .cta-band {
    flex-direction: column;
    gap: 40px;
  }
  
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  nav ul {
    display: none;
  }
  
  .svc-tabs {
    gap: 0;
  }
}

@media (max-width:960px) {
  .services-head,
        .about-sec,
        .why-head,
        .contact-sec {
    grid-template-columns: 1fr;
  }
  
  .about-img {
    min-height: 400px;
  }
  
  .about-copy {
    padding: 60px 6%;
  }
  
  .numbers-sec {
    grid-template-columns: 1fr 1fr;
  }
  
  .ncard {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  
  .ncard:nth-child(odd) {
    border-right: 1px solid var(--border);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  
  .g1,
        .g2,
        .g3,
        .g4,
        .g5,
        .g6 {
    grid-column: span 1;
  }
  
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  nav ul {
    display: none;
  }
  
  .hero-stats-bar {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .why-cards {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-right {
    padding: 52px 6%;
  }
  
  .fgrid-2, .fgrid-3 {
    grid-template-columns: 1fr;
  }

  
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* =========================
   RESPONSIVE NAVBAR
========================= */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 300;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */

@media (max-width: 991px) {

  nav {
    padding: 14px 5%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 40px;
    gap: 24px;
    transition: 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
    z-index: 250;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 18px;
    width: 100%;
    display: block;
  }

  .nav-cta {
    width: 100%;
text-align: left;
  }

  body.menu-open {
    overflow: hidden;
  }

    .nav-cta{
color: #fff !important;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0.03em !important;
    transition: color 0.2s;
    background: transparent !important;
    padding: 0 !important;
  }

      .nav-cta:hover{
color: #d4a44c !important;
    background: transparent !important;
  }

  .nav-links li.dropdown > a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-arrow {
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 14px;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 0;
    font-size: 16px;
    color: var(--ink);
  }

  .dropdown-menu a:hover {
    background: transparent;
    color: var(--gold);
    padding-left: 10px;
  }

  .dropdown:hover .dropdown-arrow {
    transform: none;
  }

}

@media (max-width: 575px) {

  .nav-logo img {
    width: 95px;
  }

  .nav-links {
    width: 100%;
  }


}