/* CSS for section section:Hero */
.hero-section {
  width: 100%;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(77, 77, 77, 0.25);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding-left: 44px;
  padding-right: 44px;
  box-sizing: border-box;
}

.logo {
  width: 198px;
  height: 61px;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 29px;
  height: 5px;
  background-color: #0063a6;
  border-radius: 5px;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 753px;
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.hero-overlay-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  pointer-events: auto;
}

.hero-card-left {
  flex: 0 1 auto;
  max-width: 420px;
  width: 100%;
}

.banner-card {
  --banner-accent: #c59d5f;
  --banner-divider: #444444;
  background: rgba(18, 18, 18, 0.9);
  border-radius: 20px;
  padding: 30px 28px 32px;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.banner-card__tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--banner-accent);
  margin: 0 0 12px;
}

.banner-card__location {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px;
}

.banner-card__pin {
  flex-shrink: 0;
  color: #ffffff;
}

.banner-card__title {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: #ffffff;
}

.banner-card__subtitle {
  font-family: var(--font-subheading);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.45;
}

.banner-card__divider {
  height: 1px;
  background-color: var(--banner-divider);
  margin: 22px 0 20px;
}

.banner-card__features {
  font-family: var(--font-body);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.banner-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: #f5f5f5;
}

.banner-card__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--banner-accent);
}

.banner-card__btn {
  width: 100%;
  margin-top: 22px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact-card {
  position: relative;
  flex: 0 0 380px;
  max-width: 380px;
  background-color: rgba(45, 45, 45, 0.92);
  border-radius: 16px;
  padding: 28px 24px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0 0 8px;
  text-transform: capitalize;
}

.hero-form-input {
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  background-color: #3a3a3a;
  border: 1px solid #5a5a5a;
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}

.hero-form-input::placeholder {
  color: #b0b0b0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.hero-form-input:focus {
  border-color: #8a8a8a;
}

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

.hero-phone-row {
  display: flex;
  width: 100%;
}

.hero-otp-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.hero-form-input--phone,
.hero-form-input--otp {
  flex: 1;
  min-width: 0;
}

.hero-phone-input-wrap {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.hero-phone-input-wrap .iti {
  width: 100%;
  display: block;
}

.hero-phone-input-wrap .iti__tel-input {
  width: 100%;
  padding-right: 16px;
}

.hero-phone-input-wrap .iti__country-container {
  border-right: 1px solid #5a5a5a;
}

.hero-phone-input-wrap .iti__selected-country {
  background-color: #3a3a3a;
  border-radius: 8px 0 0 8px;
}

.hero-phone-input-wrap .iti__selected-country-primary:hover,
.hero-phone-input-wrap .iti__selected-country-primary:focus {
  background-color: #454545;
}

.hero-phone-input-wrap .iti__selected-dial-code {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
}

.hero-phone-input-wrap .iti__arrow {
  border-top-color: #ffffff;
}

.hero-phone-input-wrap .iti__dropdown-content {
  background-color: #2d2d2d;
  border: 1px solid #5a5a5a;
  border-radius: 8px;
  color: #ffffff;
}

.hero-phone-input-wrap .iti__search-input {
  background-color: #3a3a3a;
  border: 1px solid #5a5a5a;
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-body);
}

.hero-phone-input-wrap .iti__country {
  color: #ffffff;
  font-family: var(--font-body);
}

.hero-phone-input-wrap .iti__country.iti__highlight {
  background-color: #0063a6;
}

.hero-phone-input-wrap .iti--disabled .iti__selected-country {
  opacity: 0.65;
  cursor: not-allowed;
}

.hero-verify-btn {
  font-family: var(--font-body);
  flex: 0 0 auto;
  min-width: 88px;
  padding: 0 16px;
  border: none;
  border-radius: 8px;
  background-color: #1a4f8a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.hero-verify-btn:hover:not(:disabled) {
  background-color: #0063a6;
}

.hero-verify-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-form-feedback {
  margin: -4px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #f0c674;
}

.hero-form-feedback.is-error {
  color: #ff8a8a;
}

.hero-form-feedback.is-success {
  color: #8fd48f;
}

.hero-submit-btn {
  font-family: var(--font-body);
  width: 100%;
  margin-top: 6px;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background-color: #7a4f32;
  color: #e8e8e8;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.hero-submit-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hero-submit-btn:not(:disabled):hover {
  background-color: #8f5f3d;
}

.hero-whatsapp-btn {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.hero-whatsapp-btn:hover {
  transform: scale(1.05);
}

.is-hidden {
  display: none !important;
}

.hero-footer-container {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-footer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 100px;
  color: #ffffff;
}

.rera-text {
  font-size: 16px;
  text-align: center;
}

.artistic-text {
  position: absolute;
  right: 100px;
  bottom: 0;
  font-size: 11px;
}

@media (max-width: 1440px) {
  .header-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .artistic-text {
    right: 20px;
  }
}

@media (max-width: 1200px) {
  .hero-overlay-inner {
    gap: 20px;
  }

  .hero-card-left,
  .banner-card {
    max-width: 340px;
  }

  .hero-contact-card {
    flex-basis: 340px;
    max-width: 340px;
  }
}

@media (max-width: 992px) {
  .hero-image-container {
    height: auto;
    min-height: 920px;
  }

  .hero-picture,
  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-overlay {
    top: 100px;
    bottom: 50px;
    align-items: flex-start;
    overflow-y: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
  }

  .hero-overlay-inner {
    flex-direction: column;
    align-items: center;
  }

  .hero-card-left,
  .banner-card {
    max-width: 100%;
  }

  .hero-contact-card {
    flex: 1 1 auto;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    display: block;
  }

  .hero-image-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1080 / 1456;
  }

  .hero-picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .hero-overlay {
    position: relative;
    top: auto;
    bottom: auto;
    margin-top: -40px;
    padding: 0 0 24px;
    align-items: stretch;
    overflow: visible;
    pointer-events: auto;
  }

  .hero-overlay-inner {
    gap: 0;
  }

  .banner-card {
    max-width: 100%;
    padding: 24px 20px 26px;
    border-radius: 20px 20px 0 0;
  }

  .hero-contact-card {
    padding: 22px 18px 28px;
    border-radius: 0 0 16px 16px;
    max-width: 100%;
    width: 100%;
  }

  .hero-footer-container {
    position: relative;
    padding: 12px 0 20px;
    background-color: #0a1628;
  }

  .hero-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    text-align: center;
  }

  .artistic-text {
    position: static;
  }
}

/* CSS for section section:About */
.about-container {
  display: flex;
  padding: 28px 80px;
  gap: 48px;
  align-items: center;
}

.about-content {
  flex: 1.15;
  max-width: 640px;
  min-width: 0;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-desc {
  font-size: 16px;
  line-height: 1.55;
  margin: 10px 0;
  text-align: justify;
}

.about-desc:last-of-type {
  margin-bottom: 22px;
}

.floors-info {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.floor-box {
  background-color: #0063a6;
  color: #ffffff;
  border-radius: 15px;
  width: 215px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.request-btn {
  width: 100%;
  max-width: 460px;
  height: 72px;
  font-size: 20px;
}

.about-image {
  flex: 0.85;
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  height: 617px;
  border-radius: 50px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    text-align: center;
  }

  .about-content {
    flex: 1;
    max-width: 100%;
  }

  .floors-info {
    justify-content: center;
  }

  .about-image {
    justify-content: center;
  }

  .about-image img {
    height: auto;
  }
}

@media (max-width: 600px) {
  .floors-info {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .floor-box {
    width: auto;
    max-width: 300px;
    min-width: 0;
    padding: 12px 80px;
    height: auto;
    min-height: 64px;
  }

  .design-bg .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .design-subtitle {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .design-img {
    max-width: 100%;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-right: -12px;
  }
}

/* CSS for section section:Pricing */
.pricing-container {
  padding: 20px 0;
  text-align: center;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-family: var(--font-subheading);
  color: #0063a6;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 25px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.p-card {
  position: relative;
  width: 331px;
  height: 284px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.1);
}

.p-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.1);
}

.p-card-text {
  font-family: var(--font-body);
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.p-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 172px;
  height: 45px;
  padding: 0 16px;
  border: 1.5px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(90deg, #004f85 0%, #7a2f42 55%, #5c2438 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.p-card-btn__icon {
  flex-shrink: 0;
  color: #f0a030;
}

.p-card-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.pricing-footer-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  max-width: 1132px;
  margin: 0 auto 14px;
}

.pricing-footer {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  max-width: 1132px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-cards {
    gap: 40px;
  }
}

/* CSS for section section:Features */
.features-container {
  display: flex;
  padding: 50px 117px;
  gap: 70px;
  align-items: center;
}

.features-text {
  flex: 1;
  max-width: 520px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f4f86;
  margin: 0 0 24px;
}

.features-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0 0 28px;
}

.features-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #2f2f2f;
}

.features-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ef3e56;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #0063a6;
  margin: 0;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.features-image img {
  width: 100%;
  max-width: 612px;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
  background-color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .features-container {
    flex-direction: column;
    padding: 20px 20px;
    text-align: left;
  }

  .features-text {
    max-width: 100%;
  }

  .features-title {
    font-size: 32px;
  }

  .features-image {
    justify-content: center;
    width: 100%;
  }

  .features-image img {
    max-width: 100%;
  }
}

/* CSS for section section:LocationHighlights */
.highlights-container {
  display: flex;
  padding: 28px 80px;
  gap: 48px;
  align-items: flex-start;
}

.highlights-content {
  flex: 1.1;
  max-width: 680px;
  min-width: 0;
}

.highlights-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #0f4f86;
}

.highlights-subtitle {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 28px 0 16px;
  color: #0f4f86;
}

.highlights-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
  text-align: justify;
  color: #2f2f2f;
}

.highlights-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlights-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #2f2f2f;
  padding-left: 18px;
  position: relative;
}

.highlights-list li strong {
  font-weight: 600;
  color: #1a1a1a;
}

.highlights-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0063a6;
}

.highlights-image {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.highlights-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .highlights-container {
    flex-direction: column;
    padding: 24px 20px;
    gap: 32px;
    text-align: center;
  }

  .highlights-content {
    max-width: 100%;
  }

  .highlights-desc {
    text-align: left;
  }

  .highlights-title {
    font-size: 30px;
  }

  .highlights-subtitle {
    font-size: 24px;
    text-align: left;
  }

  .highlights-list {
    text-align: left;
  }

  .highlights-image {
    justify-content: center;
  }

  .highlights-image img {
    max-width: 100%;
    border-radius: 30px;
  }
}

/* CSS for section section:Gallery */
.gallery-container {
  padding: 20px 0 40px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
}

.gallery-carousel {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 25px;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.gallery-carousel::-webkit-scrollbar {
  height: 8px;
}

.gallery-carousel::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
  background: #0063a6;
  border-radius: 4px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
}

.carousel-track img {
  height: 600px;
  object-fit: cover;
  scroll-snap-align: center;
  border-radius: 10px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
}

.download-btn {
  width: 100%;
  max-width: 460px;
  height: 72px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .carousel-track img {
    height: 350px;
  }
}

/* CSS for section section:Design */
.design-bg {
  background-color: rgba(0, 99, 166, 0.15);
  padding: 40px 0;
}

.design-container {
  text-align: center;
}

.design-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 1118px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.design-img {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto 30px;
}

/* CSS for section section:Promo */
.promo-section {
  width: 100%;
  line-height: 0;
}

.promo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* CSS for section section:Walkthrough */
.walkthrough-container {
  padding: 40px 0 20px;
  text-align: center;
}

.walkthrough-subtitle {
  font-family: var(--font-subheading);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 25px;
}

.video-wrapper {
  max-width: 1207px;
  margin: 0 auto;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 55px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #000000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .video-embed {
    border-radius: 20px;
  }
}

/* CSS for section section:FloorPlans */
.floorplans-container {
  padding: 20px 0 40px;
  text-align: center;
}

.fp-slider {
  --fp-slide-gap: 24px;
  width: 100%;
}

.fp-carousel {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto 32px;
}

.fp-image-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid #ef3e56;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

.fp-track {
  display: flex;
  gap: var(--fp-slide-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.fp-slide {
  flex-shrink: 0;
  min-width: 0;
}

.fp-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.fp-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #0063a6;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 99, 166, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.fp-arrow:hover:not(:disabled) {
  background-color: #00528a;
  transform: scale(1.05);
}

.fp-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fp-dots-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.fp-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0.8;
}

.fp-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #0063a6;
  cursor: pointer;
  transition: width 0.2s ease, height 0.2s ease, transform 0.2s ease;
}

.fp-dot.is-active {
  width: 16px;
  height: 16px;
}

.fp-dot:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .fp-slider {
    --fp-slide-gap: 16px;
  }

  .fp-carousel {
    gap: 14px;
  }

  .fp-arrow {
    width: 36px;
    height: 36px;
  }

  .fp-image-wrapper {
    border-radius: 20px;
  }
}

/* CSS for section section:Amenities */
.amenities-bg {
  background-color: rgba(0, 99, 166, 0.15);
  padding: 40px 0;
}

.amenities-container {
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 80px;
  justify-content: center;
  max-width: 1194px;
  margin: 25px auto;
}

.amenity-item {
  position: relative;
  width: 100%;
  max-width: 338px;
  aspect-ratio: 331 / 284;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenity-text {
  font-family: var(--font-body);
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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

/* CSS for section section:Location */
.location-container {
  padding: 40px 0 20px;
  text-align: center;
}

.location-tabs {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 1195px;
  margin: 0 auto 20px;
  padding: 6px;
  background-color: #eef3fb;
  border-radius: 14px;
  box-sizing: border-box;
}

.location-tab {
  font-family: var(--font-body);
  flex: 1;
  min-width: 0;
  padding: 14px 12px;
  border: none;
  border-radius: 10px;
  background-color: #f1f3f4;
  color: #2b2b2b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.location-tab:hover:not(.is-active) {
  background-color: #e8ebee;
}

.location-tab.is-active {
  background-color: #a8c2f8;
  color: #1f1f1f;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.location-advantages {
  width: 100%;
  max-width: 1195px;
  margin: 0 auto 28px;
  text-align: left;
}

.location-advantages__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #0f4f86;
  text-align: center;
}

.location-advantages__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.location-advantages__list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #2f2f2f;
  padding-left: 18px;
  position: relative;
}

.location-advantages__list li strong {
  font-weight: 600;
  color: #1a1a1a;
}

.location-advantages__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0063a6;
}

.location-map-panel {
  width: 100%;
}

.map-img {
  width: 100%;
  max-width: 1195px;
  border-radius: 35px;
  margin: 0 auto;
  display: block;
  transition: opacity 0.25s ease;
}

.map-img.is-fading {
  opacity: 0;
}

@media (max-width: 768px) {
  .location-tabs {
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
  }

  .location-tab {
    flex: 1 1 calc(50% - 3px);
    padding: 12px 10px;
    font-size: 13px;
  }

  .location-advantages__title {
    font-size: 24px;
  }

  .location-advantages__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* CSS for section section:Testimonials */
.testimonials-container {
  padding: 20px 0 50px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1195px;
  margin: 25px auto;
  width: 100%;
}

.testi-video {
  width: 100%;
  min-width: 0;
}

.testi-video-embed {
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testi-video-embed {
    border-radius: 12px;
  }
}

/* CSS for section section:Footer */
.site-footer {
  background: linear-gradient(90deg, #0063a6 0%, #ef3e56 100%);
  color: #ffffff;
  padding: 30px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 93px;
}

.footer-left {
  max-width: 484px;
}

.footer-logo {
  width: 275px;
  height: 84px;
  margin-bottom: 30px;
}

.copyright {
  font-size: 11px;
  line-height: 1.6;
}

.footer-right {
  text-align: right;
  max-width: 300px;
}

.address {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: left;
}

.footer-links {
  font-size: 11px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 40px;
  }

  .footer-right {
    text-align: center;
  }

  .address {
    text-align: center;
  }
}
