:root {
  --flood-primary: #104f91;
  --flood-dark: #073966;
  --flood-light: #eaf3fb;
  --flood-text: #17212b;
  --flood-muted: #64707d;
  --flood-border: #dce4ec;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--flood-text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/*--------------------------------------------------------------
HOLDING PAGE
--------------------------------------------------------------*/

.holding-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 55px 20px;
  background: #ffffff;
}

.holding-page::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -240px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(16, 79, 145, 0.025);
  border-radius: 50%;
  pointer-events: none;
}

.holding-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
}

.holding-page__content {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  padding: 30px 0 30px 30px;
}

/*--------------------------------------------------------------
IMAGE AREA
--------------------------------------------------------------*/

.image-area {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  padding: 38px;
  isolation: isolate;
}

/*--------------------------------------------------------------
IMAGE CARD
--------------------------------------------------------------*/

.image-card {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(16, 79, 145, 0.14);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 40px 80px rgba(7, 57, 102, 0.16),
    0 15px 35px rgba(7, 57, 102, 0.08);
}

.image-card__frame {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: 29px;
  background: #d8e2eb;
}

.image-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.image-card:hover .image-card__image {
  transform: scale(1.025);
}

.image-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(3, 25, 45, 0.45),
      transparent 46%
    ),
    linear-gradient(
      135deg,
      rgba(6, 48, 85, 0.15),
      transparent 58%
    );
  pointer-events: none;
}

/*--------------------------------------------------------------
IMAGE LABEL
--------------------------------------------------------------*/

.image-card__label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(5, 43, 77, 0.74);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(2, 25, 45, 0.2);
}

.image-card__label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.image-card__label-icon i {
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
}

/*--------------------------------------------------------------
DECORATIVE SHAPES
--------------------------------------------------------------*/

.image-shape {
  position: absolute;
  display: block;
  pointer-events: none;
}

/* Large outlined circle */

.image-shape--circle-large {
  top: -8px;
  left: -5px;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(16, 79, 145, 0.07);
  border-radius: 50%;
  z-index: 1;
}

/* Small solid circle */

.image-shape--circle-small {
  top: 76px;
  right: 4px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 30%,
      #3d83c4,
      var(--flood-primary)
    );
  box-shadow:
    0 15px 35px rgba(16, 79, 145, 0.24),
    inset 0 0 0 10px rgba(255, 255, 255, 0.1);
  z-index: 6;
}

/* Large outlined square */

.image-shape--square-large {
  right: -2px;
  bottom: 32px;
  width: 145px;
  height: 145px;
  border: 3px solid rgba(16, 79, 145, 0.18);
  border-radius: 34px;
  transform: rotate(14deg);
  z-index: 1;
}

/* Small blue square */

.image-shape--square-small {
  bottom: -2px;
  left: 18px;
  width: 95px;
  height: 95px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    var(--flood-primary),
    var(--flood-dark)
  );
  transform: rotate(-12deg);
  box-shadow: 0 20px 40px rgba(7, 57, 102, 0.2);
  z-index: 2;
}

/* Dot pattern */

.image-shape--dots {
  top: 170px;
  left: 2px;
  width: 76px;
  height: 120px;
  opacity: 0.38;
  z-index: 2;
  background-image: radial-gradient(
    circle,
    var(--flood-primary) 2px,
    transparent 2.5px
  );
  background-size: 15px 15px;
}


.image-area::after {
  content: "";
  position: absolute;
  right: 68px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  border: 8px solid rgba(16, 79, 145, 0.17);
  border-radius: 50%;
  z-index: 6;
}

/*--------------------------------------------------------------
LOGO
--------------------------------------------------------------*/

.brand__logo {
  width: min(335px, 75vw);
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
}

/*--------------------------------------------------------------
TEXT
--------------------------------------------------------------*/

.eyebrow {
  color: var(--flood-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.display-title {
  color: var(--flood-dark);
  font-size: clamp(3.3rem, 5vw, 6rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 650px;
  color: var(--flood-muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
}

/*--------------------------------------------------------------
SERVICES
--------------------------------------------------------------*/

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(16, 79, 145, 0.18);
  border-radius: 50rem;
  background: rgba(16, 79, 145, 0.055);
  color: var(--flood-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

/*--------------------------------------------------------------
CONTACT
--------------------------------------------------------------*/

.contact-card {
  border: 1px solid var(--flood-border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(14, 44, 70, 0.055);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(16, 79, 145, 0.26);
  box-shadow: 0 16px 36px rgba(14, 44, 70, 0.1);
}

.contact-card__label {
  color: var(--flood-primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card address,
.contact-link {
  color: var(--flood-text);
  font-size: 0.94rem;
  font-style: normal;
  line-height: 1.65;
}

.contact-link {
  width: fit-content;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus {
  color: var(--flood-primary);
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/

.site-footer {
  border-top: 1px solid var(--flood-border);
  color: var(--flood-muted);
  font-size: 0.75rem;
  line-height: 1.55;
}

.site-footer__regards {
  white-space: nowrap;
}

/*--------------------------------------------------------------
RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 1399.98px) {
  .image-area {
    padding: 30px;
  }

  .image-card__frame,
  .image-card__image {
    min-height: 620px;
  }

  .holding-page__content {
    padding-left: 15px;
  }
}

@media (max-width: 1199.98px) {
  .holding-page {
    padding-inline: 10px;
  }

  .image-card__frame,
  .image-card__image {
    min-height: 560px;
  }

  .holding-page__content {
    padding-left: 0;
  }

  .image-shape--circle-large {
    width: 155px;
    height: 155px;
  }
}

@media (max-width: 991.98px) {
  .holding-page {
    padding-top: 25px;
    padding-bottom: 45px;
  }

  .image-area {
    max-width: 850px;
    padding: 35px;
  }

  .image-card__frame,
  .image-card__image {
    min-height: 480px;
    max-height: 560px;
  }

  .holding-page__content {
    max-width: 850px;
    padding-top: 15px;
  }

  .display-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 575.98px) {
  .holding-page {
    padding: 8px 4px 30px;
  }

  .image-area {
    padding: 22px 8px 30px;
  }

  .image-card {
    padding: 7px;
    border-radius: 25px;
  }

  .image-card__frame {
    min-height: 300px;
    border-radius: 19px;
  }

  .image-card__image {
    min-height: 300px;
    max-height: 360px;
  }

  .image-card__label {
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
    border-radius: 13px;
    font-size: 0.66rem;
  }

  .image-card__label-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .image-shape--circle-large {
    top: -2px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-width: 16px;
  }

  .image-shape--circle-small {
    top: 6px;
    right: 2px;
    width: 45px;
    height: 45px;
  }

  .image-shape--square-large {
    right: -6px;
    bottom: 12px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  .image-shape--square-small {
    bottom: 4px;
    left: 4px;
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .image-shape--dots,
  .image-area::before,
  .image-area::after {
    display: none;
  }

  .holding-page__content {
    padding-top: 10px;
  }

  .brand__logo {
    width: min(275px, 82vw);
  }

  .display-title {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .service-badge {
    min-height: 35px;
    padding: 7px 11px;
    font-size: 0.78rem;
  }

  .contact-card {
    border-radius: 14px;
  }
}

/*--------------------------------------------------------------
ANIMATION
--------------------------------------------------------------*/

@media (prefers-reduced-motion: no-preference) {
  .image-card {
    animation: image-enter 0.75s ease both;
  }

  .holding-page__content {
    animation: content-enter 0.75s 0.12s ease both;
  }

  .image-shape--circle-small {
    animation: float-circle 5s ease-in-out infinite;
  }

  .image-shape--square-small {
    animation: float-square 6s ease-in-out infinite;
  }

  @keyframes image-enter {
    from {
      opacity: 0;
      transform: translateX(-22px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes content-enter {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float-circle {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes float-square {
    0%,
    100% {
      transform: rotate(-12deg) translateY(0);
    }

    50% {
      transform: rotate(-7deg) translateY(-8px);
    }
  }
}