  /* =========================================================
       ROOT
    ========================================================= */

  :root {
      --navy-950: #061c25;
      --navy-900: #082b37;
      --navy-800: #0b3d4b;

      --teal-700: #087f7d;
      --teal-500: #0b9b95;
      --teal-300: #62dfca;

      --gold: #d8c3a5;
      --gold-light: #eadcc5;

      --cream: #f4f1e8;
      --white: #ffffff;

      --text-dark: #09242d;
      --text-muted: rgba(244, 241, 232, 0.68);
      --dark-muted: rgba(9, 36, 45, 0.65);

      --line: rgba(244, 241, 232, 0.14);
      --dark-line: rgba(9, 36, 45, 0.16);

      --ease: cubic-bezier(0.16, 1, 0.3, 1);
  }


  /* =========================================================
       RESET
    ========================================================= */

  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      background: var(--navy-950);
      color: var(--cream);
      font-family: "Manrope", sans-serif;
      overflow-x: hidden;
  }

  body.menu-open {
      overflow: hidden;
  }

  a {
      color: inherit;
      text-decoration: none;
  }

  button,
  input,
  textarea,
  select {
      font: inherit;
  }

  button {
      cursor: pointer;
  }

  img {
      display: block;
      max-width: 100%;
  }

  ::selection {
      background: var(--teal-300);
      color: var(--navy-950);
  }


  /* =========================================================
       ACCESSIBILITY
    ========================================================= */

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
      outline: 2px solid var(--teal-300);
      outline-offset: 4px;
  }


  /* =========================================================
       GLOBAL
    ========================================================= */

  .mono {
      font-family: "DM Mono", monospace;
  }

  .container {
      width: min(1380px, 90vw);
      margin: auto;
  }

  .eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;

      color: var(--teal-300);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
  }

  .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
  }

  .section-title {
      font-size: clamp(48px, 8vw, 118px);
      line-height: 0.86;
      letter-spacing: -0.07em;
      font-weight: 800;
  }

  .muted {
      color: var(--text-muted);
  }

  .outline {
      color: transparent;
      -webkit-text-stroke: 1px rgba(244, 241, 232, 0.72);
  }


  /* =========================================================
       CUSTOM CURSOR
    ========================================================= */

  .cursor {
      position: fixed;
      width: 12px;
      height: 12px;

      border: 1px solid var(--teal-300);
      border-radius: 50%;

      pointer-events: none;
      z-index: 9999;

      transform: translate(-50%, -50%);
      mix-blend-mode: difference;
  }

  .cursor-label {
      position: fixed;

      pointer-events: none;
      z-index: 9998;

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.1em;

      color: var(--cream);
      opacity: 0;

      transform: translate(15px, 15px);
  }

  @media (max-width: 900px) {

      .cursor,
      .cursor-label {
          display: none;
      }
  }
/* =========================================
   PRELOADER
========================================= */

.preloader {

    position:
        fixed;

    inset:
        0;

    z-index:
        9999;

    background:
        var(--black);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    color:
        white;

    transition:
        opacity .7s ease,
        visibility .7s ease;
}

.preloader.hidden {

    opacity:
        0;

    visibility:
        hidden;
}

.loader-logo {

    font-family:
        Manrope;

    font-weight:
        800;

    font-size:
        32px;

    letter-spacing:
        5px;
}

.loader-line {

    width:
        180px;

    height:
        2px;

    background:
        #333;

    margin:
        25px 0 15px;

    overflow:
        hidden;
}

.loader-line span {

    display:
        block;

    height:
        100%;

    width:
        40%;

    background:
        var(--teal-500);

    animation:
        loader 2.3s infinite;
}

.preloader p {

    color:
        #777;

    font-size:
        12px;

    letter-spacing:
        2px;

    text-transform:
        uppercase;
}

@keyframes loader {

    0% {
        transform:
            translateX(-100%);
    }

    100% {
        transform:
            translateX(450%);
    }

}
#main-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
}

#main-content.loaded {
    opacity: 1;
    visibility: visible;
}
  /* =========================================================
       NAVIGATION
    ========================================================= */

  .nav {
      position: fixed;
      top: 0;
      left: 0;

      width: 100%;
      height: 82px;

      display: flex;
      align-items: center;

      z-index: 1000;

      border-bottom: 1px solid transparent;

      transition:
          background 0.5s ease,
          border-color 0.5s ease;
  }

  .nav.scrolled {
      background: rgba(6, 28, 37, 0.88);
      backdrop-filter: blur(20px);
      border-color: var(--line);
  }

  .nav-inner {
      width: min(1480px, 92vw);
      margin: auto;

      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
  }

  .brand-mark {
      width: 35px;
      height: 35px;
      position: relative;
      border: 1px solid var(--teal-300);
  }

  .brand-mark::before,
  .brand-mark::after {
      content: "";
      position: absolute;
      background: var(--teal-300);
  }

  .brand-mark::before {
      width: 1px;
      height: 100%;
      left: 50%;
  }

  .brand-mark::after {
      height: 1px;
      width: 100%;
      top: 50%;
  }

  /* Company name */
  .brand-name {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
  }

  /* MUICOINS */
  .brand-name strong {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 0.08em;
      color: var(--teal-300);
  }

  /* Building Contracting LLC */
  .brand-name {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: inherit;
  }

  .nav-links {
      display: flex;
      gap: 30px;

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
  }

  .nav-links a {
      color: var(--text-muted);
      transition: color 0.3s ease;
  }

  .nav-links a:hover {
      color: var(--teal-300);
  }

  .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;

      padding: 12px 16px;

      border: 1px solid var(--line);

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.08em;

      transition: 0.3s ease;
  }

  .nav-cta:hover {
      color: var(--navy-950);
      background: var(--teal-300);
      border-color: var(--teal-300);
  }

  .menu-button {
      display: none;

      border: 0;
      background: transparent;
      color: var(--cream);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
  }


  /* =========================================================
       MOBILE MENU
    ========================================================= */

  .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 900;

      display: flex;
      flex-direction: column;
      justify-content: center;

      padding: 8vw;

      background: var(--navy-950);

      opacity: 0;
      visibility: hidden;
      pointer-events: none;

      transition:
          opacity 0.4s ease,
          visibility 0.4s ease;
  }

  .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }

  .mobile-menu a {
      padding: 18px 0;

      border-bottom: 1px solid var(--line);

      font-size: clamp(34px, 9vw, 58px);
      font-weight: 700;
      letter-spacing: -0.05em;
  }

  .mobile-menu .mobile-quote {
      margin-top: 35px;

      display: inline-flex;
      width: fit-content;

      padding: 15px 20px;

      background: var(--cream);
      color: var(--navy-950);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.1em;
  }


  /* =========================================================
       HERO
    ========================================================= */

  .hero {
      min-height: 100vh;

      position: relative;
      overflow: hidden;

      display: flex;
      align-items: flex-end;

      padding: 150px 0 110px;

      background:
          radial-gradient(ellipse at 70% 85%,
              rgba(11, 155, 149, 0.25),
              transparent 42%),
          linear-gradient(180deg,
              var(--navy-800),
              var(--navy-950));
  }

  .hero-grid {
      position: absolute;
      inset: 0;

      opacity: 0.22;

      background-image:
          linear-gradient(rgba(98, 223, 202, 0.12) 1px,
              transparent 1px),
          linear-gradient(90deg,
              rgba(98, 223, 202, 0.12) 1px,
              transparent 1px);

      background-size: 70px 70px;

      mask-image:
          radial-gradient(ellipse at center,
              black,
              transparent 82%);
  }

  .hero-glow {
      position: absolute;

      width: 650px;
      height: 650px;

      right: 5%;
      bottom: -350px;

      border-radius: 50%;

      background:
          radial-gradient(circle,
              rgba(216, 195, 165, 0.2),
              rgba(11, 155, 149, 0.1) 45%,
              transparent 70%);

      filter: blur(25px);
  }

  .sun {
      position: absolute;

      width: 150px;
      height: 150px;

      right: 12%;
      top: 18%;

      border-radius: 50%;

      background:
          radial-gradient(circle,
              rgba(234, 220, 197, 0.92),
              rgba(216, 195, 165, 0.25) 50%,
              transparent 70%);

      opacity: 0.5;
  }

  .hero-content {
      position: relative;
      z-index: 10;

      width: min(1380px, 90vw);
      margin: auto;
  }

  .hero-title {
      margin-top: 25px;

      max-width: 1000px;

      font-size: clamp(58px, 10vw, 150px);
      line-height: 0.78;

      letter-spacing: -0.08em;
      font-weight: 800;
  }

  .hero-title span {
      display: block;
  }

  .hero-description {
      width: min(650px, 90vw);

      margin-top: 35px;

      color: var(--text-muted);

      font-size: 15px;
      line-height: 1.85;
  }

  .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;

      margin-top: 30px;
  }

  .button {
      display: inline-flex;
      align-items: center;
      gap: 15px;

      padding: 15px 20px;

      border: 1px solid var(--line);

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.12em;

      transition:
          background 0.4s var(--ease),
          color 0.4s var(--ease),
          border-color 0.4s var(--ease),
          transform 0.4s var(--ease);
  }

  .button:hover {
      background: var(--teal-300);
      color: var(--navy-950);
      border-color: var(--teal-300);
      transform: translateY(-3px);
  }

  .button.primary {
      background: var(--cream);
      color: var(--navy-950);
      border-color: var(--cream);
  }

  .button.primary:hover {
      background: var(--teal-300);
      border-color: var(--teal-300);
  }

  .hero-location {
      position: absolute;

      right: 6vw;
      bottom: 10vh;

      z-index: 10;

      font-family: "DM Mono", monospace;
      font-size: 9px;
      line-height: 2;

      color: rgba(244, 241, 232, 0.48);
  }

  .hero-location strong {
      color: var(--teal-300);
      font-weight: 400;
  }


  /* =========================================================
       INTRO
    ========================================================= */

  .intro {
      padding: 170px 0;

      background: var(--cream);
      color: var(--text-dark);
  }

  .intro-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 100px;
  }

  .intro .eyebrow {
      color: var(--teal-700);
  }

  .intro-heading {
      margin-top: 30px;

      font-size: clamp(48px, 7vw, 105px);
      line-height: 0.86;
      letter-spacing: -0.07em;
  }

  .intro-copy {
      padding-top: 55px;
  }

  .intro-copy p {
      max-width: 720px;

      color: var(--dark-muted);

      font-size: 16px;
      line-height: 1.9;
  }

  .intro-copy p+p {
      margin-top: 25px;
  }

  .intro-highlight {
      margin-top: 45px;

      padding: 25px 0;

      border-top: 1px solid var(--dark-line);
      border-bottom: 1px solid var(--dark-line);

      font-size: 22px;
      line-height: 1.5;
      font-weight: 600;
      letter-spacing: -0.02em;
  }


  /* =========================================================
       SERVICES
    ========================================================= */

  .services {
      padding: 170px 0;

      background:
          radial-gradient(circle at 80% 30%,
              rgba(11, 155, 149, 0.18),
              transparent 30%),
          var(--navy-900);
  }

  .services-heading {
      margin-top: 30px;
      max-width: 900px;
  }

  .services-grid {
      margin-top: 100px;

      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;

      background: var(--line);

      border: 1px solid var(--line);
  }

  .service-card {
      min-height: 310px;

      padding: 42px;

      background: rgba(6, 28, 37, 0.9);

      position: relative;
      overflow: hidden;

      transition:
          background 0.4s ease,
          transform 0.4s ease;
  }

  .service-card::after {
      content: "";

      position: absolute;

      width: 140px;
      height: 140px;

      right: -50px;
      bottom: -50px;

      border-radius: 50%;

      background: rgba(98, 223, 202, 0.06);

      transition: transform 0.6s var(--ease);
  }

  .service-card:hover {
      background: #0b3541;
  }

  .service-card:hover::after {
      transform: scale(2);
  }

  .service-number {
      color: var(--teal-300);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.15em;
  }

  .service-card h3 {
      margin-top: 25px;

      font-size: clamp(30px, 4vw, 52px);
      line-height: 0.95;

      letter-spacing: -0.06em;
  }

  .service-card p {
      margin-top: 22px;

      max-width: 470px;

      color: var(--text-muted);

      line-height: 1.75;
      font-size: 13px;
  }

  .service-list {
      margin-top: 25px;

      display: flex;
      flex-wrap: wrap;
      gap: 7px;
  }

  .service-list span {
      padding: 7px 9px;

      border: 1px solid var(--line);

      color: rgba(244, 241, 232, 0.58);

      font-family: "DM Mono", monospace;
      font-size: 8px;
      letter-spacing: 0.05em;
  }


  /* =========================================================
       PROCESS
    ========================================================= */

  .process {
      padding: 170px 0;

      background: var(--gold);
      color: var(--text-dark);

      overflow: hidden;
  }

  .process .eyebrow {
      color: var(--teal-700);
  }

  .process-heading {
      margin-top: 30px;

      max-width: 850px;
  }

  .process-track {
      margin-top: 110px;

      display: grid;
      grid-template-columns: repeat(5, 1fr);

      border-top: 1px solid rgba(9, 36, 45, 0.28);
  }

  .process-item {
      padding: 35px 25px 20px 0;

      min-height: 300px;

      border-right: 1px solid rgba(9, 36, 45, 0.18);
  }

  .process-item:not(:first-child) {
      padding-left: 25px;
  }

  .process-item:last-child {
      border-right: 0;
  }

  .process-number {
      color: var(--teal-700);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.15em;
  }

  .process-item h3 {
      margin-top: 30px;

      font-size: 36px;
      line-height: 0.95;

      letter-spacing: -0.05em;
  }

  .process-item p {
      margin-top: 22px;

      color: var(--dark-muted);

      font-size: 12px;
      line-height: 1.8;
  }


  /* =========================================================
       WHY US
    ========================================================= */

  .why-us {
      padding: 170px 0;

      background: var(--cream);
      color: var(--text-dark);
  }

  .why-us .eyebrow {
      color: var(--teal-700);
  }

  .why-grid {
      margin-top: 100px;

      display: grid;
      grid-template-columns: repeat(3, 1fr);

      border-top: 1px solid var(--dark-line);
      border-left: 1px solid var(--dark-line);
  }

  .why-card {
      min-height: 270px;

      padding: 35px;

      border-right: 1px solid var(--dark-line);
      border-bottom: 1px solid var(--dark-line);
  }

  .why-number {
      color: var(--teal-700);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.15em;
  }

  .why-card h3 {
      margin-top: 28px;

      font-size: 27px;
      letter-spacing: -0.04em;
  }

  .why-card p {
      margin-top: 17px;

      color: var(--dark-muted);

      font-size: 12px;
      line-height: 1.8;
  }


  /* =========================================================
       INDUSTRIES
    ========================================================= */

  .industries {
      padding: 170px 0;

      background: var(--navy-950);
  }

  .industries-layout {
      margin-top: 100px;

      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 100px;
  }

  .industries-intro p {
      margin-top: 30px;

      max-width: 450px;

      color: var(--text-muted);

      line-height: 1.8;
  }

  .industry-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
  }

  .industry {
      padding: 25px;

      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);

      font-size: 14px;
      font-weight: 600;

      transition:
          color 0.3s ease,
          background 0.3s ease;
  }

  .industry:hover {
      background: rgba(98, 223, 202, 0.05);
      color: var(--teal-300);
  }


  /* =========================================================
       PARTNERS
    ========================================================= */

  .partners {
      padding: 150px 0;

      background: #0a313d;
  }

  .partners-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 100px;
  }

  .partners-copy p {
      margin-top: 30px;

      color: var(--text-muted);

      max-width: 450px;

      line-height: 1.8;
  }

  .partner-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }

  .partner {
      padding: 23px 0;

      border-bottom: 1px solid var(--line);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.08em;

      color: rgba(244, 241, 232, 0.78);
  }


  /* =========================================================
       VISION / MISSION
    ========================================================= */

  .vision {
      padding: 170px 0;

      background: var(--cream);
      color: var(--text-dark);
  }

  .vision .eyebrow {
      color: var(--teal-700);
  }

  .vision-grid {
      margin-top: 100px;

      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;

      background: var(--dark-line);

      border: 1px solid var(--dark-line);
  }

  .vision-card {
      padding: 55px;

      background: var(--cream);
  }

  .vision-card h3 {
      font-size: 52px;
      line-height: 0.9;

      letter-spacing: -0.06em;
  }

  .vision-card p {
      margin-top: 25px;

      max-width: 600px;

      color: var(--dark-muted);

      line-height: 1.85;
      font-size: 14px;
  }


  /* =========================================================
       VALUES
    ========================================================= */

  .values {
      padding: 150px 0;

      background: var(--navy-900);
  }

  .values-list {
      margin-top: 90px;

      display: flex;
      flex-wrap: wrap;
      gap: 10px;
  }

  .value {
      padding: 18px 22px;

      border: 1px solid var(--line);

      font-family: "DM Mono", monospace;
      font-size: 10px;
      letter-spacing: 0.1em;

      transition:
          background 0.3s ease,
          color 0.3s ease,
          border-color 0.3s ease;
  }

  .value:hover {
      background: var(--teal-300);
      color: var(--navy-950);
      border-color: var(--teal-300);
  }


  /* =========================================================
       CONTACT
    ========================================================= */

  .contact {
      padding: 170px 0;

      position: relative;
      overflow: hidden;

      background:
          radial-gradient(ellipse at 70% 90%,
              rgba(11, 155, 149, 0.3),
              transparent 45%),
          var(--navy-950);
  }

  .contact-grid {
      position: absolute;
      inset: 0;

      opacity: 0.12;

      background-image:
          linear-gradient(rgba(98, 223, 202, 0.3) 1px,
              transparent 1px),
          linear-gradient(90deg,
              rgba(98, 223, 202, 0.3) 1px,
              transparent 1px);

      background-size: 60px 60px;
  }

  .contact-inner {
      position: relative;
      z-index: 2;

      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 100px;
  }

  .contact-heading {
      margin-top: 30px;

      font-size: clamp(55px, 8vw, 110px);
      line-height: 0.83;

      letter-spacing: -0.07em;
  }

  .contact-copy {
      margin-top: 35px;

      max-width: 500px;

      color: var(--text-muted);

      line-height: 1.8;
  }

  .contact-details {
      margin-top: 45px;
  }

  .contact-detail {
      padding: 18px 0;

      border-top: 1px solid var(--line);
  }

  .contact-detail:last-child {
      border-bottom: 1px solid var(--line);
  }

  .contact-detail-label {
      display: block;

      color: var(--teal-300);

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.12em;
  }

  .contact-detail-value {
      display: block;

      margin-top: 8px;

      color: var(--cream);

      font-size: 15px;
  }

  .quote-form {
      padding: 40px;

      border: 1px solid var(--line);

      background: rgba(3, 20, 27, 0.4);
      backdrop-filter: blur(15px);
  }

  .quote-form-title {
      font-size: 30px;
      letter-spacing: -0.04em;
  }

  .quote-form-subtitle {
      margin-top: 10px;

      color: var(--text-muted);

      font-size: 12px;
      line-height: 1.7;
  }

  .form-grid {
      margin-top: 30px;

      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .form-group.full {
      grid-column: 1 / -1;
  }

  .form-group label {
      color: rgba(244, 241, 232, 0.55);

      font-family: "DM Mono", monospace;
      font-size: 8px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      width: 100%;

      padding: 14px;

      border: 1px solid var(--line);
      outline: none;

      background: rgba(255, 255, 255, 0.035);

      color: var(--cream);

      font-size: 13px;

      transition: border-color 0.3s ease;
  }

  .form-group select option {
      color: var(--text-dark);
  }

  .form-group textarea {
      min-height: 130px;
      resize: vertical;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
      border-color: var(--teal-300);
  }

  .form-submit {
      margin-top: 20px;

      width: 100%;

      border: 0;

      padding: 17px;

      background: var(--cream);
      color: var(--navy-950);

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.12em;

      transition: 0.3s ease;
  }

  .form-submit:hover {
      background: var(--teal-300);
  }


  /* =========================================================
       FOOTER
    ========================================================= */

  footer {
      padding: 45px 5vw;

      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;

      gap: 40px;

      border-top: 1px solid var(--line);

      background: var(--navy-950);

      color: var(--text-muted);

      font-family: "DM Mono", monospace;
      font-size: 9px;
      letter-spacing: 0.08em;
  }

  .footer-title {
      color: var(--cream);
      margin-bottom: 12px;
  }

  .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  .footer-links a:hover {
      color: var(--teal-300);
  }

  .footer-bottom {
      grid-column: 1 / -1;

      padding-top: 25px;

      border-top: 1px solid var(--line);

      display: flex;
      justify-content: space-between;
      gap: 20px;
  }


  /* =========================================================
       RESPONSIVE
    ========================================================= */

  @media (max-width: 1000px) {

      .nav-links,
      .nav-cta {
          display: none;
      }

      .menu-button {
          display: block;
      }

      .intro-grid,
      .industries-layout,
      .partners-layout,
      .contact-inner {
          grid-template-columns: 1fr;
          gap: 50px;
      }

      .services-grid {
          grid-template-columns: 1fr;
      }

      .process-track {
          grid-template-columns: 1fr;
      }

      .process-item,
      .process-item:not(:first-child) {
          min-height: auto;

          padding: 35px 0;

          border-right: 0;
          border-bottom: 1px solid rgba(9, 36, 45, 0.18);
      }

      .process-item:last-child {
          border-bottom: 0;
      }

      .why-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .vision-grid {
          grid-template-columns: 1fr;
      }

      .hero-location {
          display: none;
      }
  }


  @media (max-width: 650px) {
      .hero {
          min-height: 780px;
          padding-bottom: 80px;
      }

      .hero-title {
          font-size: 58px;
      }

      .section-title {
          font-size: 55px;
      }

      .intro,
      .services,
      .process,
      .why-us,
      .industries,
      .partners,
      .vision,
      .values,
      .contact {
          padding: 110px 0;
      }

      .intro-copy {
          padding-top: 0;
      }

      .services-grid {
          margin-top: 60px;
      }

      .service-card {
          min-height: auto;
          padding: 30px;
      }

      .why-grid {
          grid-template-columns: 1fr;
      }

      .industry-list,
      .partner-list {
          grid-template-columns: 1fr;
      }

      .vision-card {
          padding: 35px;
      }

      .vision-card h3 {
          font-size: 42px;
      }

      .quote-form {
          padding: 25px;
      }

      .form-grid {
          grid-template-columns: 1fr;
      }

      .form-group.full {
          grid-column: auto;
      }

      footer {
          grid-template-columns: 1fr;
      }

      .footer-bottom {
          grid-column: auto;
          flex-direction: column;
      }

      .brand-name {
          font-size: 11px;
          max-width: 180px;
      }

      .sun {
          width: 90px;
          height: 90px;
          right: 5%;
          top: 15%;
      }
  }

 /* =========================
   WHATSAPP WIDGET
========================= */

.whatsapp-widget {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
}


/* =========================
   FLOATING BUTTON
========================= */

.whatsapp-button {
    width: 62px;
    height: 62px;

    border: none;
    border-radius: 50%;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.whatsapp-button:hover {
    transform: scale(1.08);
    background: #20bd5a;
}


/* =========================
   SMALL WHATSAPP POPUP
========================= */

.whatsapp-popup {
    position: absolute;
    right: 0;
    bottom: 75px;

    width: 320px;
    max-width: calc(100vw - 30px);

    background: #f7fffa;

    border-radius: 0 0 25px 25px;

    overflow: hidden;

    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px) scale(0.95);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


/* Header */

.whatsapp-popup-header {
    height: 58px;

    padding: 0 18px;

    background: #25D366;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.whatsapp-title {
    display: flex;
    align-items: center;
    gap: 7px;

    color: white;

    font-size: 19px;
    font-weight: 700;
}

.whatsapp-title i {
    font-size: 27px;
}


/* Close */

.whatsapp-close {
    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: #218c3e;

    color: white;

    font-size: 25px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Body */

.whatsapp-popup-body {
    padding: 18px 14px 16px;

    min-height: 175px;
}


/* Message */

.whatsapp-message {
    position: relative;

    margin: 0 10px;

    padding: 17px 20px;

    background: white;

    border-radius: 25px;

    color: #333;

    font-size: 17px;
    line-height: 1.5;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}


/* Message tail */

.whatsapp-message::before {
    content: "";

    position: absolute;

    left: -10px;
    bottom: 20px;

    width: 18px;
    height: 18px;

    background: white;

    transform: rotate(45deg);
}


/* Open Chat */

.whatsapp-open-chat {
    margin-top: 25px;

    width: 155px;
    height: 52px;

    border: none;
    border-radius: 30px;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);

    transition: 0.2s ease;
}

.whatsapp-open-chat:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.whatsapp-open-chat i {
    font-size: 27px;
}
@media (max-width: 600px) {

    .whatsapp-widget {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-popup {
        width: calc(100vw - 30px);
        bottom: 75px;

        border-radius: 0 0 30px 30px;
    }

    .whatsapp-popup-header {
        height: 80px;
        padding: 0 20px;
    }

    .whatsapp-title {
        font-size: 22px;
    }

    .whatsapp-title i {
        font-size: 34px;
    }

    .whatsapp-close {
        width: 44px;
        height: 44px;
        font-size: 30px;
    }

    .whatsapp-popup-body {
        min-height: 280px;
        padding: 25px 15px 20px;
    }

    .whatsapp-message {
        font-size: 20px;
        padding: 22px 25px;
    }

    .whatsapp-open-chat {
        height: 70px;
        min-width: 200px;
        font-size: 20px;
    }

    .whatsapp-open-chat i {
        font-size: 38px;
    }

    .whatsapp-button {
        width: 58px;
        height: 58px;
        font-size: 29px;
    }
}
  /* =========================================
   SCROLL REVEAL
========================================= */

  .reveal {

      opacity:
          0;

      transform:
          translateY(35px);

      transition:
          opacity .8s ease,
          transform .8s ease;
  }

  .reveal.visible {

      opacity:
          1;

      transform:
          translateY(0);
  }


  /* =========================================================
       REDUCED MOTION
    ========================================================= */

  @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
          scroll-behavior: auto !important;
          animation: none !important;
          transition: none !important;
      }
  }