:root {
  --main-color: #001f32;
  --bg-color: #d3e0e5;
  --font-semi-bold: 500;
  --font-bold: 600;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--bg-color);
}

.navbar {
  background-color: transparent !important;

  .logo {
    max-width: 250px;
  }

  .nav-item {
    padding: 10px 0;
    margin: 0 10px;

    .nav-link {
      position: relative;
      font-size: 20px;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      content: "";
      position: absolute;
      width: 50%;
      height: 2px;
      background-color: var(--main-color);
      top: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      content: "";
      position: absolute;
      width: 50%;
      height: 2px;
      background-color: var(--main-color);
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
    }
  }
}

.header {
  .header-container {
    position: relative;
    border-radius: 40px;
    padding: 50px;
    background-image: url("../images/section-1.png");
    background-size: cover; /* No stretching */
    background-position: center;
    background-repeat: no-repeat; /* No repeating */
    min-height: 80vh;
  }
  .header-title {
    color: #ffffff;
  }
  .header-para {
    color: #ffffff;
  }
  .header-btn {
    position: absolute;
    display: inline;
    padding: 8px;
    bottom: 25px;
    right: 25px;
    color: var(--main-color);
    font-weight: var(--font-bold);
    border-radius: 10px;
    border: none;
    background-color: #ffffff;
  }
}

.redefined {
  .redefined-header {
    position: relative;
    font-size: 40px;
    text-align: center;
    font-weight: var(--font-semi-bold);
    color: var(--main-color);
    &::after {
      content: "";
      position: absolute;
      height: 1px;
      width: 100%;
      left: 0;
      right: 0;
      bottom: -15px;
      background-color: var(--main-color);
    }
  }

  .redefined-para {
    text-align: center;
    padding: 0 150px;
    color: var(--main-color);
  }

  .redefined-list {
    padding-left: 200px;
    padding-right: 150px;
    color: var(--main-color);
  }

  .items {
    display: flex;
    justify-content: space-between;
    padding: 30px 150px;

    div {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30%;
      padding: 20px;
      background: linear-gradient(90deg, var(--main-color) 0%, #4a6772 100%);
      border-radius: 20px;
      color: #ffffff;
      box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.15);
    }
  }

  .carousel {
    background-color: var(--main-color);
    border-radius: 40px;
    padding: 30px;

    .carousel-header {
      position: relative;
      display: flex;
      color: #ffffff;
      text-align: center;
      font-weight: var(--font-semi-bold);
      font-size: 40px;

      &::after {
        content: "";
        position: absolute;
        height: 1px;
        width: 100%;
        left: 0;
        right: 0;
        bottom: -15px;
        background-color: #ffffff;
      }
    }
  }
}

.carousel-container {
  position: relative;
}

.amenities-carousel {
  padding: 0 50px;
}

.amenity-item {
  text-align: center;
  padding: 0 15px;
  outline: none;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 60px;
  height: 60px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.amenity-title {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
}

/* Slick Arrow Styling */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}

.slick-prev {
  left: 10px;
}

.slick-next {
  right: 10px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 24px;
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container {
    padding: 30px 10px;
  }

  .amenities-carousel {
    padding: 0 40px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .icon-wrapper svg {
    width: 50px;
    height: 50px;
  }

  .amenity-title {
    font-size: 14px;
  }
}

.map {
  .map-header {
    text-align: center;
    font-size: 40px;
    color: var(--main-color);
    font-weight: var(--font-bold);
  }

  .map-list {
    list-style: none;
    margin-top: 10px;
    padding: 0;
    li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 8px;
    }
    li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid #666;
    }
  }

  .brand {
    position: absolute;
    bottom: 0px;
    text-align: center;
    transform: translate(-50%, 0);
    width: 200px;
  }
}

.visiualize {
  min-height: 90vh;

  .visiualize-inner {
    background-image: url("../images/section-2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
  }

  .container {
    padding: 0 100px;
    flex: 1;
    display: flex !important;
  }

  .visiualize-header {
    color: #ffffff;
    font-size: 40px;
    font-weight: var(--font-bold);
  }

  p {
    color: #acc4ce;
  }
}

.options {
  background-color: #ffffff;
  padding: 80px 50px;

  .left-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 115px;
    h2 {
      color: var(--main-color);
      font-size: 40px;
    }
  }
  .right-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left: solid 2px var(--main-color);

    button {
      margin-top: 20px;
      color: var(--main-color);
      font-weight: var(--font-bold);
      border: solid 1px var(--main-color);
      border-radius: 40px;
    }
  }
}

.consultation-section {
  background-color: #ffffff;
  padding-bottom: 50px;

  .container {
    background: linear-gradient(135deg, var(--main-color) 0%, #4a6772 100%);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }

  .consultation-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: 20px;
  }

  .consultation-subtitle {
    color: #e8eef1;
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .form-control {
    background: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 15px;
    height: auto;
  }

  .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    border: none;
  }

  .form-control::placeholder {
    color: #999;
  }

  textarea.form-control {
    border-radius: 25px;
    min-height: 120px;
    resize: none;
  }

  .submit-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .submit-btn:hover {
    background: #ffffff;
    color: #2c4f5e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  }

  .submit-btn:active {
    transform: translateY(0);
  }
}

.footer {
  position: relative;
  background-color: #ffffff;
  background-image: url("../images/footer-bg.png");
  background-size: cover; /* No stretching */
  background-position: top;
  background-repeat: no-repeat; /* No repeating */
  min-height: 100vh;

  .footer-brand {
    width: 750px;
  }

  .footer-body {
    padding: 0 0 0 400px;

    .btn {
      white-space: nowrap;
      color: #ffffff;
      border-radius: 15px;
      border: 1px solid #ffffff;
    }

    span {
      color: #ffffff;
    }

    .mail,
    .phone {
      margin-left: -20px;
    }

    .mail a {
      text-decoration: none;
      color: white;
    }

    .vertical-line {
      margin-left: 20px;
      height: 25px;
      background-color: #ffffff;
      width: 2px;
    }
  }

  i {
    margin: 0 8px;
    color: #ffffff;
    font-size: 35px;
    cursor: pointer;
  }

  .footer-icons {
    margin-top: 50px;
  }

  .disclaimer {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .footer {
    .footer-body {
      padding: 0 0 0 150px;
    }
  }
}

/* Smaller than lg (<992px) */
@media (max-width: 991.98px) {
  /* Styles for medium devices */

  .brand {
    bottom: -5px !important;
    width: 150px !important;
  }
  .redefined {
    .redefined-para {
      padding: 0 50px;
    }
    .redefined-list {
      padding: 0 50px;
    }
    .items {
      padding: 30px 50px;
    }
  }

  .footer {
    .footer-brand {
      width: 450px;
    }
  }

  .footer {
    .footer-body {
      padding: 0 100px;
    }
  }
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .consultation-title {
    font-size: 26px;
  }

  .consultation-subtitle {
    font-size: 14px;
  }

  .form-control {
    padding: 12px 20px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 2px;
  }

  /* Styles for small devices */
  .brand {
    bottom: 0px !important;
    width: 100px !important;
  }
  .redefined {
    .items {
      display: flex;
      flex-direction: column;

      div {
        width: 100%;
        margin: 10px 0;
      }
    }
  }

  .options {
    .left-cont {
      padding: 0 50px;
      margin-bottom: 50px;
    }
    .right-cont {
      border: none;
    }
  }

  .footer {
    .footer-brand {
      width: 450px;
    }
  }
}

@media (max-width: 575.98px) {
  /* Styles for very small devices */
  .brand {
    bottom: -5px !important;
    width: 100px !important;
  }

  .visiualize {
    min-height: 60vh;

    .visiualize-inner {
      background-size: cover;
      background-position: bottom;
      background-repeat: no-repeat;
      min-height: 60vh;
      padding: 20px 0;
      display: flex;
      flex-direction: column;
    }
    .container {
      padding: 20px;
    }
  }

  .options {
    padding: 20px;
    .left-cont {
      padding: 0px;
      margin-bottom: 50px;
    }
  }

  .footer {
    .footer-brand {
      width: 250px;
    }
    .footer-body {
      padding: 20px;
    }
  }
}
