:root {
  --sand: #e8d5b0;
  --rust: #c25b28;
  --rust-dark: #9a4118;
  --steel: #2c3e50;
  --steel-mid: #3d5166;
  --concrete: #6b7280;
  --cream: #faf6ee;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.35);
  --gray: #aaa;
}

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

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;

  background: var(--cream);
  color: var(--steel);
  overflow-x: hidden;
  /* display: flex;
  flex-direction: column; */
}
/* main {
  flex: 1;
} */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ──────────────────────────── Nav ──────────────────────────── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(44, 62, 80, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--rust);
}

.nav-logo {
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 3px;
  text-decoration: none;
}
.nav-logo span {
  color: var(--rust);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--sand);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--rust);
  color: var(--white) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 2px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--rust-dark) !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* Animate into X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 150;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ──────────────────────────── PAGES ──────────────────────────── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ──────────────────────────── HOME ──────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      160deg,
      rgba(20, 32, 44, 0.93) 0%,
      rgba(20, 32, 44, 0.8) 55%,
      rgba(20, 32, 44, 0.6) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  position: relative;
  overflow: hidden;
}

/* animated diagonal lines */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(194, 91, 40, 0.04) 60px,
    rgba(194, 91, 40, 0.04) 62px
  );
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tag {
  display: inline-block;
  background: var(--rust);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.1s ease both;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.2s ease both;
}
.hero h1 em {
  color: var(--rust);
  font-style: normal;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.35s ease both;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 1rem 2.2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.25s,
    transform 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-primary:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.2rem;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* stats bar */
.stats-bar {
  background: var(--steel);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 5vw;
}
.stat-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-size: 3rem;
  color: var(--rust);
  line-height: 1;
  display: block;
  font-weight: 600;
}
.stat-label {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

/* about strip */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.about-img {
  background: url("https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=900&q=80")
    center/cover;
  position: relative;
}
.about-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--cream));
}
.about-text {
  padding: 5rem 4vw 5rem 3vw;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-tag {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.about-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--steel);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--concrete);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-strip .section-tag {
  color: var(--rust);
}
.check-list {
  list-style: none;
  margin: 0rem 0 2rem;
}
.check-list li {
  color: var(--steel-mid);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 600;
}
.check-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--rust);
}

/* featured services preview */
.home-services {
  background: var(--steel);
  padding: 4rem 5vw;
  text-align: center;
}
.home-services h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 54px;
}
.home-services h2 span {
  display: block;
}
.home-services > p {
  color: var(--white);
  max-width: 520px;
  margin: 0 auto 0.8rem;
  font-size: 1rem;
  line-height: 1.7;
}
.home-services .description {
  margin-top: 1.2rem;
  color: var(--gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
  margin-top: 3rem;
}

.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 2rem;
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.svc-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--rust);
  transition: width 0.4s;
}
.svc-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(194, 91, 40, 0.4);
}
.svc-card:hover::before {
  width: 100%;
}

.svc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  display: block;
  color: var(--rust);
}
.svc-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--rust);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
}
.svc-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* CTA banner */
.cta-banner {
  background: var(--rust);
  padding: 4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: 1px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
}
.btn-white {
  background: var(--white);
  color: var(--rust);
  padding: 1rem 2.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: "Inter", sans-serif;
}
.btn-white:hover {
  background: var(--sand);
}

/* testimonials */
.testimonials {
  padding: 4rem 5vw;
  background: var(--cream);
}
.testimonials h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--steel);
  margin-bottom: 3rem;
  text-align: center;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testi-card {
  background: var(--white);
  border-top: 4px solid var(--rust);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.testi-card p {
  font-style: italic;
  color: var(--concrete);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.testi-author {
  font-weight: 700;
  color: var(--steel);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.testi-location {
  font-size: 0.8rem;
  color: var(--concrete);
}

/* ──────────────────────────── SERVICES PAGE ──────────────────────────── */
.page-hero {
  padding: 3rem 5vw 3rem;
  background:
    linear-gradient(
      to bottom,
      rgba(20, 32, 44, 0.92) 0%,
      rgba(20, 32, 44, 0.82) 100%
    ),
    url("https://images.unsplash.com/photo-1590682680695-43b964a3ae17?w=1400&q=80")
      center/cover;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  font-size: 55px;
  line-height: 60px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  margin-top: 1rem;
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.7;
}

.services-full {
  padding: 0rem 5vw;
  background: var(--cream);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(44, 62, 80, 0.1);
}
.service-row:last-child {
  border-bottom: none;
}
.service-row.reverse {
  direction: rtl;
}
.service-row.reverse > * {
  direction: ltr;
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-img-wrap:hover img {
  transform: scale(1.04);
}
.service-img-wrap::after {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  left: 1rem;

  font-size: 5rem;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
  pointer-events: none;
}

.service-info .section-tag {
  color: var(--rust);
  margin-bottom: 0;
}
.service-info h3 {
  font-size: 2.2rem;
  color: var(--steel);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.service-info p {
  color: var(--concrete);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}
.service-features {
  list-style: none;
  margin-top: 1rem;
}
.service-features li {
  font-size: 0.95rem;
  color: var(--steel-mid);
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-weight: 600;
}
.service-features li::before {
  /* content: "●";
  position: absolute;
  left: 0;
  color: var(--rust);
  font-size: 0.5rem;
  top: 0.5rem; */
  content: "▸";
  position: absolute;
  left: 0px;
  color: var(--rust);
}

/* process section */
.process {
  background: var(--steel);
  padding: 4rem 5vw;
  text-align: center;
}
.process h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 3.5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  /* content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--rust), transparent);
  z-index: 0; */
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}
.step-num {
  font-size: 3rem;
  color: var(--rust);
  display: block;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h4 {
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.step p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ──────────────────────────── CONTACT PAGE ──────────────────────────── */
.contact-page {
  background: var(--cream);
}

.contact-hero {
  padding: 3rem 5vw;
  background:
    linear-gradient(
      to bottom right,
      rgba(20, 32, 44, 0.93),
      rgba(20, 32, 44, 0.82)
    ),
    url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=80")
      center/cover;
}
.contact-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  font-size: 55px;
  text-align: center;
}
.contact-hero .section-tag {
  text-align: center;
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 550px;
  line-height: 1.7;
  margin: 0 auto;
  text-align: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 0;
  min-height: 600px;
}

.contact-sidebar {
  background: var(--steel);
  padding: 4rem 3.5vw;
}
.contact-sidebar h3 {
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.4rem;
  background: var(--rust);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item h4 {
  color: var(--sand);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.contact-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hours-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem;
  margin-top: 2rem;
}
.hours-block h4 {
  color: var(--sand);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hours-row:last-child {
  border-bottom: none;
}
.hours-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.hours-row span:last-child {
  color: var(--sand);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  padding: 4rem 4vw;
}
.contact-form-wrap h3 {
  font-size: 2rem;
  color: var(--steel);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}
.contact-form-wrap > p {
  color: var(--concrete);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--steel);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e2e8f0;
  padding: 0.8rem 1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.95rem;
  color: var(--steel);
  background: var(--cream);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rust);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  margin-top: 1.5rem;
  background: var(--rust);
  color: var(--white);
  padding: 1rem 3rem;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.submit-btn:hover {
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.success-msg {
  display: none;
  background: #d4edda;
  border-left: 4px solid #28a745;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #155724;
  font-weight: 600;
}

/* ──────────────────────────── FOOTER ──────────────────────────── */
footer {
  background: #1a2530;
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--rust);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul a:hover {
  color: var(--sand);
}
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ──────────────────────────── FLOATING PARTICLES ──────────────────────────── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--rust);
  border-radius: 50%;
  opacity: 0;
  animation: float var(--dur) var(--delay) ease-in infinite;
}
@keyframes float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) scale(1.5);
  }
}
.error-msg {
  display: none;
  background: #ffe7e0;
  border-left: 4px solid #d9534f;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #7d1f15;
  font-weight: 600;
}
.success-msg {
  display: none;
  background: #d4edda;
  border-left: 4px solid #28a745;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  color: #155724;
  font-weight: 600;
}
/* ──────────────────────────── error page ──────────────────────────── */

.notfound {
  padding: 120px 0;
}
.notfound__content {
  text-align: center;
}
.notfound__content--title {
  position: relative;
  color: #717171;
  font-size: 120px;
  letter-spacing: 1px;
  font-weight: 800;
  line-height: 120px;
  margin-bottom: 0.1em;
  display: inline-block;
}
.notfound__content--title > span {
  position: absolute;
  text-transform: uppercase;
  font-size: 24px;
  color: #717171;
  letter-spacing: -1px;
  line-height: 1;
  right: -55px;
  top: 30px;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
}
.notfound__content--texture {
  color: #344753;
  font-size: 18px;
  line-height: 28px;
}

/* ──────────────────────────── RESPONSIVE ──────────────────────────── */
@media only screen and (min-width: 1400px) {
  nav {
    padding: 0 15vw;
  }
  .hero {
    padding: 0 15vw;
    min-height: 80vh;
  }
  .stats-grid {
    padding: 0 15vw;
  }
  .about-text {
    max-width: 720px;
  }
  .home-services,
  .cta-banner,
  .testimonials {
    padding: 4rem 15vw;
  }
  footer {
    padding: 4rem 15vw 2rem;
  }
  .page-hero {
    padding: 3rem 15vw 3rem;
  }
  .services-full {
    padding: 0rem 15vw;
  }
  .process {
    padding: 4rem 15vw;
  }
  .contact-hero {
    padding: 3rem 15vw;
  }
}

@media only screen and (max-width: 900px) {
  /* .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  } */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-strip {
    grid-template-columns: 1fr;
  }
  .about-img {
    height: 300px;
  }
  .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0.5rem;
  }
  .about-text {
    padding: 3rem 4vw 3rem 3vw;
  }
  .home-services .description {
    margin-top: 0.2rem;
  }
  .home-services h2 {
    line-height: 46px;
  }
  .home-services {
    background: var(--steel);
    padding: 3rem 5vw;
  }
  .svc-card {
    padding: 1.5rem 2rem;
  }
  .cta-banner h2 {
    max-width: 400px;
  }
  .cta-banner {
    padding: 3rem 5vw;
  }
  .stat-item:nth-child(2) {
    border-right: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .testimonials {
    padding: 3rem 5vw;
  }
  footer {
    padding: 3rem 5vw 2rem;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: clamp(2.5rem, 7vw, 6rem);
  }
  .service-row {
    padding: 3rem 0;
  }
  .process {
    padding: 3rem 5vw;
  }
  /* .nav-links {
    display: none;
  } */

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(12px);
    padding-top: 100px;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 180;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    text-align: center;
  }
  .hero {
    min-height: 75vh;
  }
  .page-hero p {
    margin-top: 0rem;
  }
}

@media only screen and (max-width: 560px) {
  .hero {
    min-height: 80vh;
  }
  .process-steps {
    grid-template-columns: repeat(1, 1fr);
  }
  .process h2 {
    margin-bottom: 1.5rem;
    font-size: 35px;
    line-height: 40px;
    max-width: 300px;
    margin: 0 auto 1.5rem;
  }
  .cta-banner h2 {
    margin: 0 auto 0.8rem;
    font-size: 35px;
    line-height: 40px;
  }
  .hero-tag {
    font-size: 0.55rem;
  }
  .hero h1 {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 0.5rem;
  }
  .hero p {
    font-size: 16px;
    max-width: 650px;
    margin-bottom: 1.5rem;
  }
  .stat-num {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.6rem;
  }
  .about-text p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .about-text h2 {
    margin-bottom: 0.5rem;
    font-size: 35px;
    line-height: 40px;
  }
  .home-services h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .home-services > p {
    margin: 0 auto 0.5rem;
  }
  .services-grid {
    margin-top: 2rem;
  }
  .home-services h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .svc-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  .testimonials h2 {
    margin-bottom: 1.5rem;
    max-width: 314px;
    font-size: 35px;
    line-height: 40px;
  }
  .footer-bottom p {
    text-align: center;
  }
  .page-hero h1 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
  }
  .page-hero p {
    font-size: 1em;
    line-height: 24px;
    margin-bottom: 0;
    max-width: 321px;
  }
  .service-row {
    padding: 2rem 0;
    gap: 1rem;
  }
  .service-info .section-tag {
    font-size: 0.8rem;
    line-height: 1.7;
  }
  .service-info h3 {
    font-size: 35px;
    line-height: 40px;
    color: var(--steel);
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
  }
  .step-num {
    margin-bottom: 0.8rem;
    font-size: 30px;
    /* line-height: 40px; */
    font-weight: 700;
  }
  .contact-hero h1 {
    font-size: 35px;
  }
  .contact-hero p {
    font-size: 1em;
    line-height: 24px;
  }
  .contact-sidebar h3 {
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 1rem;
  }
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-icon {
    font-size: 1rem;
    background: var(--rust);
    width: 38px;
    height: 38px;
  }
  .contact-item {
    margin-bottom: 1.5rem;
  }
  .contact-form-wrap {
    padding: 3rem 4vw;
  }
  .footer-grid{
    gap:1.5rem;
  }
}
