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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 12px;
  font-style: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  min-height: 100dvh;
  color: #475569;
}

/* START CUSTOM SCROLL BAR */

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: rgb(160, 163, 142);
}

*::-webkit-scrollbar-thumb {
  background: #000000;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #000000 rgb(160, 163, 142);
}

/* END CUSTOM SCROLLBAR */

div,
section,
footer,
main {
  position: relative;
}

a {
  transition: .2s;
  color: #0284c7;
  text-decoration: none;
}

button:active,
.button:active,
a:active {
  transform: scale(0.95);
}

button:active,
.button:active,
.click-animate:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}

body,
section,
header,
footer,
main {
  min-width: 1300px;
}

main {
  padding: 0;
  margin: 0;
  width: 100%;
}

a:hover,
.active {
  color: #3c332c;
}

#menu-btn {
  display: none;
}

input,
textarea,
select {
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1em;
}

button,
.button {
  padding: 12px 20px;
  border: none;
  font-weight: 600;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  border-radius: 5px;
  font-size: 1.1em;
  text-transform: capitalize;
  border-radius: 20px;
}

button:hover,
.button:hover {
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
}


.img-bg {
  background-position: center;
  background-size: cover;
}

.img-bg-top {
  background-position: center top;
  background-size: cover;
}

.img-bg-bottom {
  background-position: center bottom;
  background-size: cover;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #0f4c81;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 28px;
}

h1 { font-size: 56px; }
h2 { font-size: 42px; }
h3 { font-size: 34px; }
h4 { font-size: 26px; }
h5 { font-size: 34px; }
h6 { font-size: 18px; }

select option {
  font-family: "Plus Jakarta Sans", sans-serif;
}

p,
li {
  line-height: 1.7;
  position: relative;
  color: #475569;
  font-size: 1rem;
}

p { margin-top: 0; }

.modal {
  display: none;
  padding: 30px;
  min-width: 1000px;
}

.modal h3 {
  font-size: 1.8em;
}

.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.center-align {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.f-button {
  min-width: 0;
}

.blur {
  filter: blur(10px);
}

.scaleDown {
  transform: scale(.8);
}

.max-txt {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.underline {
  text-decoration: underline;
}

strong,
b {
  font-weight: bold;
}

/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}

.gray-txt {
  color: #f2f2f2;
}

.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}

.dark-gray-txt {
  color: #4b4b4b;
}

.dark-gray-bg {
  background-color: #212121;
}

.white-bg {
  background-color: #fff;
}

.white-txt {
  color: #fff;
}

.black-bg {
  background-color: #000;
}

.black-txt {
  color: #000;
}

.sky-blue-bg {
  background-color: #0284c7;
}

.sky-blue-txt {
  color: #0284c7;
}

.blue-bg {
  background-color: #0f4c81;
}

.blue-txt {
  color: #0f4c81;
}


.white-gray-bg-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(242, 242, 242, 1));
}

.transparent-gray-bg-gradient {
  background: linear-gradient(to right, transparent 50%, #dedede);
}

.black-gradient-bg {
  background: linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
  background: -moz-linear-gradient(to bottom, transparent 40%, rgb(0, 0, 0, 0.8) 60%);
}

.black-gradient-right {
  background: linear-gradient(to right, #000 50%, transparent 50%);
  background: -moz-linear-gradient(to right, #000 50%, transparent 50%);
}


/* Animations */
.scale-down {
  transform: scale(.9);
  filter: opacity(0) blur(5px);
  transition: transform 1.2s, filter 1.2s;
}

.scale-up {
  transform: scale(1.05);
  filter: opacity(0) blur(5px);
  transition: transform 1.2s, filter 1.2s;
}

.scale-normal {
  transform: scale(1) !important;
  filter: opacity(1) blur(0) !important;
}

.invisible {
  filter: opacity(0) blur(5px);
  transition: filter 1s;
}

.visible {
  filter: opacity(1) blur(0) !important;
}

.hide-left {
  transition: left 1.2s, filter 1.2s;
  left: -10vw;
  filter: opacity(0) blur(5px);
}

.reveal-left {
  left: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.hide-right {
  transition: right 1.2s, filter 1.2s;
  right: -10vw;
  filter: opacity(0) blur(5px);
}

.reveal-right {
  right: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.hide-bottom {
  transition: top 1.2s, filter 1.2s;
  top: 70px;
  filter: opacity(0) blur(5px);
}

.hide {
  display: none;
}

.reveal-bottom {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.rotateOut {
  transform: rotate(360deg) scale(0);
}

.slide-left {
  left: 0;
  filter: opacity(1);
}

.parallax {
  will-change: transform;
}

.showMenu {
  top: 0 !important;
  filter: opacity(1) blur(0) !important;
}

.zoom {
  will-change: transform;
  transition: transform 0.1s ease-out;
  /* Smooth transition */
}

.slideIn {
  right: 0 !important;
  filter: blur(0) opacity(1) !important;
}

.fadeIn {
  filter: blur(0) opacity(1) !important;
  z-index: 6 !important;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgb(1, 128, 145, 0.5);
  }

  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(1, 128, 145, 0.5);
  }

  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

.fancybox__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  overflow: visible;
}

.home {

  .hero {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 5% 10%;
    overflow: hidden;
    column-gap: 5%;
    z-index: 1;
    background: linear-gradient(135deg, #fefbf2 0%, #faedc8 40%, #e8c86a 75%, #c89a18 100%);

    .left {
      width: 50%;

      h1 {
        font-size: 6em;
        text-wrap: balance;
      }

      p {
        text-wrap: balance;
        margin-bottom: 50px;
        font-size: 1.2rem;
      }

      .buttons {
        display: flex;
        align-items: center;
        gap: 20px;

        button {
          border-radius: 4px;
          display: flex;
          align-items: center;
          font-size: 1.4em;
          gap: 10px;
          padding: 16px 32px;

          svg {
            height: 18px;
            width: 18px;
            display: flex;
          }
        }

        .secondary-button {
          border: 1px #e2e8f0 solid;
        }
      }

    }

    .right {
      flex: 1;
      width: 100%;
      height: 500px;
      border-radius: 30px;
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;

      >div {
        position: absolute;
        bottom: -30px;
        left: -30px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;

        .flex {
          display: flex;
          align-items: center;
          gap: 20px;
          margin-bottom: 10px;
          font-size: 1rem;
          font-weight: 600;

          .bg-emerald-100 {
            background-color: rgba(209, 250, 229, 0.5);
            padding: 8px;
            border-radius: 4px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
              stroke: #059669;
              background-color: rgba(209, 250, 229, 0.5);
              background-color: rgba(209, 250, 229, 0.5);
            }
          }
        }

        .text-2xl {
          font-size: 1.4rem;
          font-weight: 700;
          color: #0f4c81;
        }
      }
    }

  }

  .sec1-gold {
    background: linear-gradient(135deg, #fdf8f0 0%, #f5ead6 60%, #ede0c4 100%);
  }

  .sec1 {
    padding: 80px 10%;
    z-index: 2;
    display: flex;
    align-items: center;
    column-gap: 5%;

    .left {
      width: 47.5%;
      border-radius: 30px;
      overflow: hidden;
      height: 500px;
      background-color: #f2f2f2;
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    }

    .right {
      width: 47.5%;

      h2 {
        font-size: 34px;
        line-height: 1.15;
        text-wrap: balance;
      }

      .flexBox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 60px;

        .item {
          .title {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1rem;
          }

          .desc {
            font-weight: 400;
            font-size: .9rem;
          }
        }
      }
    }
  }

  .sec2 {
    padding: 80px 10%;
    z-index: 2;
    display: flex;
    align-items: center;
    column-gap: 5%;

    .bento {
      width: 47.5%;
      border-radius: 30px;
      overflow: visible;
      display: flex;
      align-items: center;
      gap: 30px;

      .flexbox {
        display: flex;
        flex-direction: column;
        gap: 20px;
        flex: 1;

        .item-big {
          height: 256px;
          border-radius: 2rem;
          background-color: #f2f2f2;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.2) 0px 10px 15px -3px, rgba(0, 0, 0, 0.2) 0px 4px 6px -4px;
        }

        .item-small {
          border-radius: 2rem;
          padding: 2rem;

          .number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
          }

          .desc {
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: .9rem;
          }
        }

        .bigger {
          height: 320px;
        }
      }
    }

    .left {
      width: 47.5%;

      .flexBox {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;

        .flex {
          display: flex;
          align-items: flex-start;
          gap: 15px;

          .number {
            width: 48px;
            height: 48px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
          }

          .info {
            .title {
              font-weight: 700;
              font-size: 1rem;
            }

            .desc {
              font-weight: 400;
              font-size: .9rem;
              margin-top: 5px;
              text-wrap: balance;
            }
          }

        }
      }
    }
  }

  .sec3 {
    padding: 80px 10%;
    text-align: center;

    .flexBox {
      display: flex;
      align-items: center;
      gap: 5%;
      margin-top: 100px;

      .right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 50%;

        .item {
          background-color: #f8fafc;
          padding: 30px;
          border-radius: 30px;
          text-align: left;
          border: 1px solid #f1f5f9;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;

          h4 {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1rem;
            margin-bottom: 20px;

            svg {
              color: #0284c7;
            }
          }

          ul {
            list-style-type: none;
            padding-left: 5px;
            display: flex;
            flex-direction: column;
            row-gap: 12px;

            li {
              display: flex;
              align-items: flex-start;
              gap: 15px;

              svg {
                color: #0284c7;
                height: 16px;
                width: 13.2333px;
              }

              span {
                font-size: .85rem;
                margin-top: -4px;
              }
            }
          }
        }
      }

      .left {
        width: 45%;
        text-align: left;

        .svg-box {
          background-color: rgba(2, 132, 199, 0.2);
          padding: 8px;
          border-radius: 4px;
          width: 40px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 30px;

          svg {
            color: #0284c7;
          }
        }

        .line {
          width: 100%;
          height: 1px;
          background-color: #f1f5f9;
          margin-top: 20px;
          margin-bottom: 20px;
        }

        .tx1 {
          font-size: 1rem;
          text-transform: uppercase;
          color: #94a3b8;
          font-weight: 700;
        }

        .tx2 {
          font-size: 1rem;
          color: #1e293b;
          font-weight: 700;
        }
      }
    }
  }

  .sec4 {
    padding: 80px 10%;
    background-color: #f8fafc;

    .sec4-intro {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 60px;

      .sec4-label {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 12px;
      }

      h3 {
        margin-bottom: 14px;
      }

      p {
        color: #64748b;
        font-size: 1rem;
        margin: 0;
      }
    }

    .sec4-panels {
      display: flex;
      gap: 28px;

      .sec4-panel {
        flex: 1;
        border-radius: 28px;
        padding: 50px 44px;
        position: relative;
        overflow: hidden;

        .panel-num {
          font-size: 5rem;
          font-weight: 800;
          line-height: 1;
          margin-bottom: 28px;
          opacity: 0.12;
          position: absolute;
          top: 28px;
          right: 36px;
          color: inherit;
        }

        .panel-icon-circle {
          width: 56px;
          height: 56px;
          border-radius: 50%;
          background-color: rgba(255, 255, 255, 0.15);
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 28px;

          svg {
            color: #fff;
          }
        }

        h4 {
          font-size: 28px;
          line-height: 1.2;
          margin-bottom: 16px;
        }

        p {
          font-size: 0.95rem;
          line-height: 1.7;
          margin-bottom: 36px;
          opacity: 0.85;
        }

        .panel-items {
          display: flex;
          flex-direction: column;
          gap: 14px;

          .panel-item {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 0.9rem;
            font-weight: 600;

            .item-check {
              width: 26px;
              height: 26px;
              border-radius: 50%;
              background-color: rgba(255, 255, 255, 0.2);
              display: flex;
              align-items: center;
              justify-content: center;
              flex-shrink: 0;
            }
          }
        }
      }

      /* Navy panel */
      .navy-panel {
        background: linear-gradient(145deg, #0f4c81, #0a3459);
        color: #fff;

        h4, p, span { color: #fff; }

        .panel-num { color: #fff; }

        .item-check svg { stroke: #fff; }
      }

      /* Light panel */
      .light-panel {
        background: #fff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 20px 50px -12px rgba(0,0,0,0.08);
        color: #0f4c81;

        h4 { color: #0f4c81; }
        p { color: #475569; opacity: 1; }
        span { color: #1e293b; }

        .panel-num { color: #0f4c81; opacity: 0.07; }

        .panel-icon-circle.gold-circle {
          background-color: rgba(200, 154, 24, 0.12);
          svg { color: #c89a18; }
        }

        .item-check.gold-check {
          background-color: rgba(200, 154, 24, 0.12);
          svg { stroke: #c89a18; }
        }
      }
    }
  }

  .sec5 {
    width: 94%;
    margin: 5% auto;
    padding: 80px 7%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5%;

    .left,
    .right {
      flex: 1;
    }

    .left {

      h5,
      p {
        color: #fff;
      }

      .subtitle {
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 20px;
        text-transform: uppercase;
      }

      p {
        color: rgba(255, 255, 255, 0.7);

        span.bold {
          display: block;
          font-weight: 900;
          color: #fff;
          font-size: 1.2rem;
        }
      }

      .list-wrap {
        display: flex;
        align-items: center;
        gap: 40px;
        margin-top: 30px;

        .flex {
          display: flex;
          align-items: center;
          gap: 15px;

          span {
            font-weight: 700;
            font-size: 1.05rem;
          }
        }
      }
    }

    .right {
      border: 8px #fff solid;
      min-height: 520px;
      border-radius: 50px;
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.1) 0px 8px 10px -6px;
    }
  }

  .contact {
    padding: 100px 10%;
    background: linear-gradient(135deg, #fefbf2 0%, #faedc8 50%, #e8c86a 100%);
  }
}


.para-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.spacer {
  height: 40px;
}



.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.flex-standard {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5%;
  flex-wrap: nowrap;
}

.flex-standard>.left,
.flex-standard>.right {
  width: 47.5%;
}


.button-flex {
  display: flex;
  align-items: center;
  column-gap: 20px;
}


/* ── GLOBAL EYEBROW LABEL ────────────────────────────────────────────── */
.eyebrow,
.hero-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0284c7;
  margin-bottom: 14px;
}

/* ── HERO ENHANCEMENTS ───────────────────────────────────────────────── */
.home .hero .left .hero-eyebrow {
  background: rgba(15, 76, 129, 0.1);
  color: #0f4c81;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  border: 1px solid rgba(15, 76, 129, 0.18);
}

.home .hero .left h1 .hero-accent {
  color: #0f4c81;
  position: relative;

  &::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #c89a18, #e8c86a);
    border-radius: 2px;
  }
}

.home .hero .left p {
  color: rgba(15, 26, 40, 0.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px -6px rgba(15, 76, 129, 0.45);

  &:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(15, 76, 129, 0.5);
  }
}

.btn-hero-secondary {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(15, 76, 129, 0.3);
  background: rgba(255, 255, 255, 0.6);
  color: #0f4c81;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);

  &:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 76, 129, 0.5);
  }
}

/* ── SEC1 ENHANCEMENTS ───────────────────────────────────────────────── */
.home .sec1 {
  .left {
    border: 4px solid rgba(200, 154, 24, 0.2);
    transition: border-color 0.4s;

    &:hover { border-color: rgba(200, 154, 24, 0.45); }
  }

  .right {
    h2 {
      padding-left: 18px;
      border-left: 4px solid #c89a18;
    }

    .flexBox .item {
      background: #fafafa;
      border: 1px solid #f1f5f9;
      border-radius: 16px;
      padding: 20px;
      border-left: 3px solid #0284c7;
      transition: box-shadow 0.25s, transform 0.25s;

      &:hover {
        box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
      }

      .title { font-size: 1rem; }
      .desc { color: #64748b; }
    }
  }
}

/* ── SEC2 ENHANCEMENTS ───────────────────────────────────────────────── */
.home .sec2 {
  background: linear-gradient(160deg, #f8fafc, #f1f5f9);

  .left {
    > p {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #334155;
      font-style: italic;
      border-left: 3px solid #c89a18;
      padding-left: 18px;
      margin-bottom: 32px;
    }

    .flexBox .flex {
      background: #fff;
      border-radius: 16px;
      padding: 18px 20px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 16px -4px rgba(0,0,0,0.06);
      transition: transform 0.25s, box-shadow 0.25s;

      &:hover {
        transform: translateX(4px);
        box-shadow: 0 8px 24px -6px rgba(0,0,0,0.1);
      }

      .number {
        background: linear-gradient(135deg, #0f4c81, #0284c7);
        font-size: 0.9rem;
      }

      .info .title { font-size: 0.95rem; }
    }
  }

  .bento {
    .item-small {
      &.sky-blue-bg { background: linear-gradient(135deg, #0284c7, #0369a1) !important; }
      &.blue-bg { background: linear-gradient(135deg, #0f4c81, #0a3459) !important; }

      .number { font-size: 2.4rem; }
    }
  }
}

/* ── SEC3 ENHANCEMENTS ───────────────────────────────────────────────── */
.home .sec3 {
  background: #fff;

  > h4.sky-blue-txt {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  > p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 560px;
    margin: 0 auto;
    text-wrap: balance;
  }

  .flexBox {
    align-items: center;

    .left {
      h5 {
        font-size: 34px;
        line-height: 1.2;
        margin-top: 14px;
        margin-bottom: 14px;
      }

      > p { font-size: 0.95rem; color: #475569; line-height: 1.75; }

      .svg-box {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(2,132,199,0.15), rgba(2,132,199,0.05));
      }
    }

    .right .item {
      transition: transform 0.25s, box-shadow 0.25s;

      &:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 40px -10px rgba(0,0,0,0.14);
        border-color: rgba(2, 132, 199, 0.2);
      }

      h4 { color: #0f4c81; }
    }
  }
}

/* ── SEC5 ENHANCEMENTS ───────────────────────────────────────────────── */
.home .sec5 {
  background: linear-gradient(135deg, #0f4c81 0%, #0a3459 60%, #071e35 100%);

  .left {
    .subtitle {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #c89a18;
      background: rgba(200, 154, 24, 0.12);
      border: 1px solid rgba(200, 154, 24, 0.3);
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
    }

    h5 { font-size: 36px; }

    p span.text-brand-400 {
      color: rgba(200, 154, 24, 0.9) !important;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      font-weight: 600;
    }
  }

  .right {
    border: 6px solid rgba(200, 154, 24, 0.3) !important;
    box-shadow: 0 0 0 1px rgba(200, 154, 24, 0.1), 0 40px 60px -20px rgba(0,0,0,0.4) !important;
    transition: border-color 0.4s;

    background-position: center -70px;
      &:hover { border-color: rgba(200, 154, 24, 0.55) !important; }
}
}

/* ── CONTACT REDESIGN ────────────────────────────────────────────────── */
.home .contact {

  .contact-inner {
    display: flex;
    align-items: center;
    gap: 8%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .contact-left {
    flex: 1;
    text-align: left;

    h3 {
      font-size: 38px;
      line-height: 1.2;
      margin-bottom: 20px;
      text-wrap: balance;
    }

    > p {
      font-size: 1.05rem;
      color: rgba(15, 26, 40, 0.65);
      margin-bottom: 36px;
      line-height: 1.75;
    }

    .btn-contact {
      display: flex;
      width: fit-content;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 12px 32px -8px rgba(15, 76, 129, 0.45);

      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px -10px rgba(15, 76, 129, 0.5);
      }
    }
  }

  .contact-right {
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .contact-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px -4px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;

    &:hover {
      transform: translateX(6px);
      box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.13);
    }

    .c-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: linear-gradient(135deg, #0f4c81, #0284c7);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;

      svg { color: #fff; }
    }

    .c-info {
      .c-label {
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #94a3b8;
        margin-bottom: 5px;
      }

      .c-value {
        font-size: 1rem;
        font-weight: 700;
        color: #0f4c81;
      }
    }
  }
}

/* ── CONTACT MODAL ─────────────────────────────────────────────────────── */

.contact-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.contact-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.contact-modal-card {
  background: #fff;
  border-radius: 28px;
  padding: 52px 52px 44px;
  width: 100%;
  max-width: 720px;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;

  svg { color: #475569; }
}

.modal-close:hover { background: #e2e8f0; }

.modal-header {
  margin-bottom: 36px;

  .modal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f4c81, #0284c7);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;

    svg { color: #fff; }
  }

  h5 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #0f4c81;
  }

  p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
  }
}

.modal-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.modal-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;

  label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    letter-spacing: 0.3px;
    text-transform: uppercase;
  }

  input,
  select,
  textarea {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;

    &:focus {
      outline: none;
      border-color: #0284c7;
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
      background: #fff;
    }
  }

  textarea { resize: vertical; min-height: 110px; }
}

.modal-field.full-field { margin-bottom: 28px; }

.modal-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.modal-status {
  font-size: 0.9rem;
  flex: 1;

  .status-ok { color: #16a34a; font-weight: 600; }
  .status-err { color: #dc2626; font-weight: 600; }
}

.modal-submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;

  &:hover:not(:disabled) { opacity: 0.88; }
  &:disabled { opacity: 0.6; cursor: not-allowed; }
}

@keyframes modalSpin {
  to { transform: rotate(360deg); }
}

/* ── GSAP initial states — prevent flash before animations fire */
.hero .left h1,
.hero .left p,
.hero .right {
  will-change: transform, opacity;
}

.sec1 .left,
.sec1 .right h2,
.sec1 .right > p,
.sec1 .right .flexBox .item,
.sec2 .left > *,
.sec2 .bento .item-big,
.sec2 .bento .item-small,
.sec3 > h4,
.sec3 > p,
.sec3 .flexBox .left > *,
.sec3 .right .item,
.sec4 .sec4-intro > *,
.sec4 .navy-panel,
.sec4 .light-panel,
.sec4 .panel-item,
.sec5 .left > *,
.sec5 .right,
.contact .contact-left > *,
.contact .contact-card {
  will-change: transform, opacity;
}

/* Lenis */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}