/* HTML setup START */
html {
  background: #ffffff;
}

h1 {
  font-size: 50px;
  font-weight: 500;
}

h2 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

p {
  font-size: 22px;
}

body,
form,
fieldset,
ol,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  vertical-align: bottom;
}

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

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: "Geologica", sans-serif;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 25px;
  }

  h4 {
    font-size: 23px;
  }

  p {
    font-size: 20px;
  }
}
/* HTML setup END */

.teletower-lt {
  position: fixed;
  background: #ffffff;
  top: 0;
  right: 10%;
  padding: 0.8rem 1.5rem;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.teletower-lt > div {
  position: absolute;
  background: #c51f40;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
}

.teletower-lt > img {
  width: 0.4rem;
}

/* Header START */
header {
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  height: 10rem;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s;
}

.header {
  width: 80%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header.sticky {
  padding-top: 15px;
  padding-bottom: 15px;
  height: 5rem;
  background-color: white;
  z-index: 1000;
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
}

header.sticky > .header > img {
  width: 150px;
  transition: width 0.3s;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.header > img {
  width: 210px;
}

.navbar > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4rem;
  font-size: 22px;
  font-weight: 300;
}

.language-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
}

.language-selector > p {
  font-size: 18px;
}

.languages-arrow {
  rotate: 90deg;
  width: 0.5rem;
  margin-left: 0.4rem;
}

.language-selector-list {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #ffffff;
  top: 190%;
  right: 0;
  cursor: initial;
  display: none;
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 3px 6px,
    rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.language-selector-list.active {
  display: flex;
}

.language-selector-list > a {
  padding: 0.8rem 1.4rem;
  cursor: pointer;
}

.language-selector-list > a:first-child {
  border-bottom-width: 0.5px;
  border-bottom-color: #70707054;
  border-bottom-style: solid;
}

.language-selector-list > a > p {
  font-size: 16px;
  font-weight: 500;
}

.mobile-hamburger {
  display: none;
}

.mobile-dropdown-wrapper {
  display: none;
}

@media (max-width: 1160px) {
  .teletower-lt {
    display: none;
  }

  header {
    height: 7rem;
    z-index: 9998;
  }

  header.sticky {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .navbar {
    display: none;
  }

  .header > img {
    width: 130px;
  }

  header.sticky > .header > img {
    width: 110px;
    transition: width 0.3s;
  }

  .mobile-hamburger {
    width: 70px;
    aspect-ratio: 1;
    background-color: #c51f40;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: width 0.3s;
  }

  .mobile-hamburger > img {
    width: 50%;
  }

  header.sticky > .header > .mobile-hamburger {
    width: 60px;
  }

  .mobile-dropdown-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #00000081;
    z-index: 9999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 0s ease-in-out;
  }

  .mobile-dropdown {
    width: 65%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .mobile-dropdown-wrapper.active {
    transform: translateX(0);
  }

  .mobile-dropdown.active {
    transform: translateX(0);
  }

  .mobile-dropdown > .close {
    width: 1.5rem;
    aspect-ratio: 1;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
  }

  .mobile-dropdown-top {
    flex: 8;
    width: 100%;
    background-color: #c51f40;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-dropdown-top > img {
    width: 10rem;
    margin-bottom: 4rem;
  }

  .mobile-dropdown-top > nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-dropdown-top > nav > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 2rem;
    font-size: 20px;
    font-weight: 300;
  }

  .mobile-dropdown-bottom {
    flex: 5;
    width: 100%;
    background-color: #e6eaed;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }

  .mobile-dropdown-bottom-first {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .mobile-dropdown-bottom-first > div:last-child {
    gap: 1rem;
    font-size: 17px;
    color: #797979;
    font-weight: 300;
  }

  .dropdown-languages {
    display: flex;
    gap: 1.5rem;
  }

  .dropdown-languages > a {
    height: 47px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
  }

  .dropdown-languages > a:first-child {
    color: white;
    background-color: #c51f40;
  }

  .dropdown-languages > a:last-child {
    color: #797979;
    background-color: white;
  }

  .mobile-dropdown-bottom-first > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .mobile-dropdown-bottom > .developer-reference {
    font-weight: 300;
    color: #797979;
  }

  .mobile-dropdown-bottom > .developer-reference > p {
    font-size: 16px;
  }

  .mobile-dropdown-bottom > .developer-reference > a > img {
    opacity: 0.6;
  }
}
/* Header END */

/* Landing Section START */
.section-landing {
  background: #e6eaed;
  width: 100%;
  padding-top: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 5rem;
}

.landing-area-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  align-items: center;
  justify-content: center;
}

.landing-intro {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.landing-intro > .text {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.landing-intro > .text > h1 {
  max-width: 421px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.landing-intro > .text > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #c51f40;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-weight: 300;
  box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.6);
}

.landing-intro > .text > a > img {
  margin-left: 0.5rem;
  width: 1.5rem;
}

.landing-intro > .image {
  width: 70%;
  position: relative;
  align-self: flex-end;
}

.engineer {
  position: absolute;
  left: -5%;
  bottom: 0;
  width: 80%;
}

.landing-info {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  width: 100%;
  position: relative;
  padding: 3rem 2.8rem 2rem 2.5rem;
}

.landing-info > .red-line {
  background: #c51f40;
  width: 1rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.landing-info > .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 25px;
  color: #c51f40;
  margin-bottom: 1rem;
  font-weight: 500;
}

.landing-info > .mid {
  font-weight: 500;
  margin-bottom: 1.7rem;
}

.landing-info > .bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  font-weight: 200;
}

.landing-info > .bottom > p {
  min-height: 6.5rem;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.landing-info > .bottom > a {
  background: #c51f40;
  color: #ffffff;
  padding: 1.5rem;
  position: relative;
  font-weight: 300;
  min-width: 200px;
  flex-shrink: 0;
  align-self: flex-end;
  line-height: 1.5;
}

.landing-info > .bottom > a > p {
  margin: 0;
  padding-right: 2rem;
}

.landing-info > .bottom > a > img {
  width: 1rem;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.landing-info-switcher {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  justify-content: center;
  align-items: center;
}

.landing-info-switcher > div.active {
  background: #c51f40;
}

.landing-info-switcher > div {
  width: 0.8rem;
  aspect-ratio: 1;
  background: #c6c6c6;
  cursor: pointer;
}

.landing-info-switcher > div:hover {
  cursor: pointer;
}

.landing-extrainfo {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 7.1rem;
  justify-content: space-between;
  gap: 10%;
  position: relative;
}

.landing-extrainfo > .gray-line {
  height: 100%;
  width: 1px;
  background: #000000;
  opacity: 0.3;
  position: absolute;
  inset: 0;
  left: 53%;
}

.landing-extrainfo-first > div > h2 {
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.landing-extrainfo-first > div > p {
  font-weight: 200;
}

.landing-extrainfo-first {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 1;
}

.landing-extrainfo-first > img {
  width: 14rem;
  margin-right: 3rem;
}

.landing-extrainfo-first > div {
  align-self: flex-start;
}

.landing-extrainfo-second {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  flex: 1;
}

.landing-extrainfo-second > h2 {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.landing-extrainfo-second > p {
  font-weight: 200;
}

@media (max-width: 2500px) {
  .landing-info > .bottom {
    min-height: 180px;
  }
}

@media (max-width: 2500px) {
  .landing-info > .bottom {
    min-height: 190px;
  }
}

@media (max-width: 1400px) {
  .landing-info > .bottom {
    min-height: 220px;
  }
}

@media (max-width: 1300px) {
  .landing-extrainfo-first {
    flex-direction: column-reverse;
  }

  .landing-info > .bottom {
    min-height: 220px;
  }

  .landing-intro > .text {
    height: 19rem;
    justify-self: flex-start;
  }

  .landing-intro > .text > h1 {
    font-size: 40px;
  }

  .landing-extrainfo-first > img {
    margin-top: 2rem;
  }

  .section-landing {
    padding-top: 13rem;
  }
}

@media (max-width: 1200px) {
  .landing-info > .bottom {
    min-height: 300px;
  }
}
/* Mobile */
@media (max-width: 1000px) {
  .section-landing {
    background: #e6eaed;
    width: 100%;
    padding-top: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 5rem;
  }

  .landing-info > .bottom {
    align-items: center;
  }

  .landing-info > .bottom > p {
    min-height: 8rem;
  }

  .landing-intro {
    flex-direction: column;
    overflow-x: hidden;
  }

  .landing-intro > .text {
    margin-bottom: 6rem;
    align-self: self-start;
    padding-left: 2rem;
    height: auto;
  }

  .landing-intro > .image {
    width: 100%;
    margin-right: -10%;
  }

  .landing-area-wrapper {
    width: 100%;
  }

  .landing-info {
    padding: 2.5rem 0rem;
  }

  .landing-info > .top {
    padding: 0rem 2rem;
  }

  .landing-info > .mid {
    padding: 0rem 2rem;
  }

  .landing-info > .bottom {
    flex-direction: column;
    padding: 0rem 2rem;
  }

  .landing-info > .red-line {
    display: none;
  }

  .landing-info-switcher {
    gap: 0.5rem;
  }

  .landing-info-switcher > div {
    width: 1.2rem;
  }

  .landing-info > .bottom > a > img {
    bottom: 15px;
    right: -1rem;
  }

  .landing-info > .bottom > a {
    background: #c51f40;
    color: #ffffff;
    padding: 1.2rem 0rem;
    position: relative;
    font-weight: 300;
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
    align-self: center;
  }

  .landing-info > .bottom > a * {
    padding: 0rem 2rem;
  }

  .landing-extrainfo {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    justify-content: center;
    position: relative;
  }

  .landing-extrainfo-first {
    flex-direction: column;
    border-bottom-width: 1px;
    border-bottom-color: #00000043;
    border-bottom-style: solid;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .landing-extrainfo-first > img {
    margin-bottom: 3rem;
    margin-top: 0;
  }

  .landing-extrainfo > .gray-line {
    display: none;
  }

  @media (max-width: 900px) {
    .landing-info > .bottom {
      min-height: 360px;
    }
  }

  @media (max-width: 550px) {
    .landing-info > .bottom {
      min-height: 480px;
    }
  }

  @media (max-width: 450px) {
    .landing-info > .bottom {
      min-height: 600px;
    }
  }

  @media (max-width: 350px) {
    .landing-info > .bottom {
      min-height: 650px;
    }
  }
}

/* Landing Section END */

/* Features Section START */
.section-features {
  width: 100%;
  background: #e6eaed;
  padding: 0;
}

.features-area-wrapper {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 0;
}

.features-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

.feature-hero {
  background: white;
  padding: 3rem;
  position: relative;
}

.red-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #e30613;
}

.feature-hero h2 {
  color: #1a1a1a;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.feature-hero p {
  color: #333;
  line-height: 1.8;
  font-size: 22px;
  font-weight: 200;
  padding-left: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-card h3 {
  color: #1a1a1a;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.feature-card p {
  color: #555;
  line-height: 1.7;
  font-size: 22px;
  font-weight: 200;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  color: #555;
  line-height: 1.7;
  font-size: 22px;
  font-weight: 200;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-card ul li:before {
  content: "•";
  color: #e30613;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.features-values {
  position: relative;
  padding-top: 3rem;
}

.gray-separator {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: #d0d0d0;
}

.features-values h2 {
  color: #1a1a1a;
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-align: center;
}

.values-intro {
  text-align: center;
  color: #666;
  font-size: 22px;
  font-weight: 200;
  margin-bottom: 3rem;
  font-style: italic;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.value-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.value-marker {
  width: 8px;
  height: 8px;
  background: #e30613;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.value-content h4 {
  color: #1a1a1a;
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.value-content p {
  color: #666;
  font-size: 22px;
  font-weight: 200;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-hero {
    padding: 2.5rem;
  }

  .feature-hero h2,
  .feature-hero p {
    padding-left: 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-features {
    padding: 0;
  }

  .features-area-wrapper {
    width: 90%;
    padding: 3rem 0;
  }

  .features-main {
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .feature-hero {
    padding: 2rem;
  }

  .feature-hero h2 {
    font-size: 25px;
    padding-left: 1.25rem;
  }

  .feature-hero p {
    font-size: 20px;
    padding-left: 1.25rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .features-values h2 {
    font-size: 25px;
  }
}
/* Features Section END */

/* Construction Section START */
.section-construction {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-construction > h1 {
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

/* Gallery Container */
.gallery-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Main Featured Image */
.gallery-main {
  width: 100%;
}

.gallery-main__image-wrapper {
  position: relative;
  width: 100%;
  height: 550px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: grab;
  touch-action: pan-y pinch-zoom;
}

.gallery-main__image-wrapper:active {
  cursor: grabbing;
}

.gallery-main__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.15s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Overlay with title and button */
.gallery-main__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2.5rem 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-main__overlay .tower-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-main__contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #c51f40;
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(197, 31, 64, 0.4);
}

.gallery-main__contact:hover {
  background: #a01832;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 31, 64, 0.5);
}

.gallery-main__contact img {
  width: 1.4rem;
  height: auto;
}

/* Navigation Arrows */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.gallery-nav img {
  width: 1rem;
  height: auto;
}

.gallery-nav--prev {
  left: 1.5rem;
}

.gallery-nav--prev img {
  transform: rotate(180deg);
}

.gallery-nav--next {
  right: 1.5rem;
}

.gallery-fullscreen {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
}

.gallery-fullscreen:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  color: #c51f40;
}

.gallery-fullscreen svg {
  width: 20px;
  height: 20px;
}

/* Thumbnail Strip */
.gallery-thumbnails {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.gallery-thumb:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: #c51f40;
  box-shadow: 0 4px 12px rgba(197, 31, 64, 0.3);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1000px) {
  .section-construction {
    padding: 4rem 0;
  }

  .section-construction > h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .gallery-main__image-wrapper {
    height: 450px;
  }

  .gallery-main__overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem 1.5rem;
  }

  .gallery-main__overlay .tower-title {
    font-size: 1.5rem;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-nav--prev {
    left: 1rem;
  }

  .gallery-nav--next {
    right: 1rem;
  }

  .gallery-fullscreen {
    width: 38px;
    height: 38px;
    top: 1rem;
    right: 1rem;
  }

  .gallery-fullscreen svg {
    width: 18px;
    height: 18px;
  }

  .gallery-thumb {
    width: 70px;
    height: 52px;
  }

  .gallery-thumbnails {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-construction > h1 {
    font-size: 1.6rem;
  }

  .gallery-container {
    width: 95%;
  }

  .gallery-main__image-wrapper {
    height: 400px;
    border-radius: 6px;
  }

  .gallery-main__overlay .tower-title {
    font-size: 1.25rem;
  }

  .gallery-main__contact {
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
  }

  .gallery-nav {
    width: 36px;
    height: 36px;
  }

  .gallery-nav--prev {
    left: 0.75rem;
  }

  .gallery-nav--next {
    right: 0.75rem;
  }

  .gallery-fullscreen {
    width: 34px;
    height: 34px;
    top: 0.75rem;
    right: 0.75rem;
  }

  .gallery-fullscreen svg {
    width: 16px;
    height: 16px;
  }

  .gallery-thumbnails {
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }

  .gallery-thumb {
    width: 50px;
    height: 38px;
    border-width: 2px;
  }
}
/* Construction Section END */

/* Map Section START */
.section-map {
  width: 100%;
  height: 60rem;
  position: relative;
}

.map-header {
  height: 10rem;
  width: 100%;
  background: #0000007c;
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.map-header > h1 {
  color: white;
  font-weight: 500;
}

.map-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.map-legend > div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  gap: 1rem;
}

.map-legend > div > img {
  width: 60px;
  aspect-ratio: 1;
}

#map {
  width: 100%;
  height: 100%;
}

/* Map Info Window Styling */
.mapInfoWindow {
  width: 391px;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.mapInfoWindow-top {
  background-color: #c51f40;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.mapInfoWindow-top > h4 {
  color: #ffffff;
}

.mapInfoWindow-top > p {
  color: #ffffff;
  font-size: 16px;
}

.mapInfoWindow-top > img {
  width: 0.8rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  cursor: pointer;
}

.mapInfoWindow-middle {
  background-color: #e6eaed;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  position: relative;
}

.mapInfoWindow-middle > p {
  font-size: 16px;
  padding: 1rem 0rem 1rem 2.5rem;
}

.mapInfoWindow-middle > div {
  background-color: #5ab472; /* Green for Active */
  height: 100%;
  padding: 1rem 2.5rem 1rem 2.5rem;
}

.mapInfoWindow-middle > div.active {
  background-color: #5ab472; /* Green for Active */
}

.mapInfoWindow-middle > div.planned {
  background-color: #ff9933; /* Orange for Planned */
}

.mapInfoWindow-middle > div.rollout {
  background-color: #d7b700; /* Yellow for Rollout in Progress */
}

.mapInfoWindow-middle > div > p {
  font-size: 16px;
  color: #ffffff;
}

.mapInfoWindow-bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.mapInfoWindow-bottom-address {
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
  border-bottom-color: #7070703b;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.3rem;
}

.mapInfoWindow-bottom-address > p:first-child {
  font-size: 16px;
  padding: 1rem 2.5rem 0rem 2.5rem;
}

.mapInfoWindow-bottom-address > p:last-child {
  font-size: 18px;
  padding: 0rem 2.5rem 1rem 2.5rem;
  color: #58595b;
}

.mapInfoWindow-bottom-coords {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  padding: 1.5rem 0rem;
}

.mapInfoWindow-bottom-coords > div {
  display: flex;
  flex-direction: row;
  padding: 0rem 2.5rem;
  justify-content: space-between;
  align-items: center;
}

.mapInfoWindow-bottom-coords > div > p {
  font-size: 18px;
}

.mapInfoWindow-bottom-coords > div > p:last-child {
  color: #58595b;
}

@media (max-width: 1000px) {
  .map-header {
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }

  .map-legend {
    gap: 1rem;
  }

  .map-legend > div > img {
    width: 40px;
    aspect-ratio: 1;
  }

  .map-legend > div > p {
    font-size: 18px;
  }
}
/* Map Section END */

/* Contacts Section START */
.section-contacts {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.contacts__white-part {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 35%;
  padding-top: 7rem;
  padding-bottom: 5rem;
  padding-left: 10%;
  padding-right: 5%;
}

.contacts__white-part > h1 {
  font-weight: 500;
  margin-bottom: 24px;
}

.contacts__white-part > p {
  font-weight: 200;
  margin-bottom: 54px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 1rem;
  border-left-width: 7px;
  border-left-color: #c51f40;
  border-left-style: solid;
  gap: 1rem;
}

.contact-info-box > h2 {
  margin-bottom: 3px;
  font-weight: 500;
}

.contact-info-box > div {
  display: flex;
  justify-content: start;
  align-items: center;
}

.contact-info-box > div > p {
  font-weight: 300;
}

.contact-info-box > div > img {
  width: 1.5rem;
  margin-right: 1rem;
}

.contact-info-box:last-child {
  margin-top: 3rem;
}

.contacts__gray-part {
  background: #e6eaed;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 65%;
  justify-content: start;
  padding-top: 7rem;
  padding-bottom: 5rem;
  padding-left: 5%;
}

.contact-form {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.contact-form > input {
  width: 90%;
  margin-bottom: 0.5rem;
  font-size: 22px;
  outline: none;
  border: none;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  padding: 0.9rem 5%;
}

.contact-form > textarea {
  width: 90%;
  margin-bottom: 0.5rem;
  font-size: 22px;
  outline: none;
  border: none;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
  padding: 0.8rem 5%;
  margin-bottom: 1.9rem;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  font-size: 22px;
  font-weight: 300;
}

.custom-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #ffffff;
}

/* Custom Selector START */
/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 25px;
  right: 20px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-color: #000 transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #000 transparent;
  top: 15px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #000;
  padding: 0.8rem 5%;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* Custom Selector END */

/* Honeypot field - hidden from users but visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__privacy {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 2rem;
}

.contact-form__privacy > p {
  font-weight: 300;
  font-size: 18px;
}

.contact-form__privacy > p > span {
  text-decoration: underline;
}

.contact-form__privacy > input {
  margin-right: 1.5rem;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 40px;
  aspect-ratio: 1;
  background-color: white;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked::before {
  content: "";
  width: 60%;
  aspect-ratio: 1;
  background-color: #c51f40;
  position: absolute;
  top: 20%;
  left: 20%;
  transition: all 0.2s ease;
}

.contact-form > button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #c51f40;
  color: #ffffff;
  padding: 0.8rem 1rem;
  font-weight: 300;
  box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.6);
  width: 100%;
  gap: 0.8rem;
  font-size: 22px;
}

.contact-form > button:hover {
  cursor: pointer;
}

@media (max-width: 1400px) {
  .contact-form {
    width: 80%;
  }
}

@media (max-width: 1000px) {
  .section-contacts {
    flex-direction: column;
    align-items: center;
  }

  .contacts__white-part {
    width: 90%;
    padding-top: 3rem;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-info-box {
    padding-top: 1rem;
    padding-left: 0;
    border-top-width: 7px;
    border-left-width: 0;
    width: 95%;
    border-top-color: #c51f40;
    border-top-style: solid;
  }

  .contacts__gray-part {
    align-items: center;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 4rem;
    padding-left: 0;
  }

  .contacts__gray-part > h2 {
    width: 90%;
    text-align: start;
  }

  .contact-form {
    width: 90%;
  }
}
/* Contacts Section END */

/* Partners Section START */
.section-partners {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section-partners > h1 {
  width: 80%;
  text-align: start;
  margin-bottom: 2.5rem;
}

.section-partners > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 80%;
  gap: 3rem 4rem;
  transition: all 0.3s;
}

.section-partners > div > img {
  height: 3rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.section-partners > div > img:hover {
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

@media (max-width: 1000px) {
  .section-partners {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section-partners > div {
    gap: 2rem 3rem;
  }

  .section-partners > div > img {
    height: 2.5rem;
    max-width: 8rem;
  }
}
/* Partners Section END */

/* Footer START */
footer {
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #70707051;
  padding-top: 85px;
  padding-bottom: 74px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-wrapper > img {
  align-self: center;
  width: 167px;
  height: auto;
}

.footer-col {
  font-weight: 300;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 0.8rem;
}

.footer-wrapper {
  width: 80%;
  gap: 3%;
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}

.developer-reference {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.developer-reference > p {
  font-size: 18px;
}

.developer-reference > a > img {
  width: 74px;
  margin-left: 0.6rem;
}

.mobile-footer {
  display: none;
}
@media (max-width: 1160px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-wrapper {
    display: none;
  }

  .mobile-footer {
    display: flex;
    font-size: 16px;
    font-weight: 300;
    color: #58595b;
  }
}
/* Footer END */
