/* 0. FONT AWESOME — font-display OVERRIDE
   Fixes PageSpeed "Ensure text remains visible during webfont load" warning.
   Redeclares FontAwesome @font-face with font-display:swap so icons are
   visible immediately using a fallback, then swap in when the woff2 loads.
   UI appearance is 100% identical — only the loading behaviour changes.
   ----------------------------------- */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src:
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2")
      format("woff2"),
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.ttf")
      format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-regular-400.woff2")
      format("woff2"),
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-regular-400.ttf")
      format("truetype");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2")
      format("woff2"),
    url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.ttf")
      format("truetype");
}

/* 1. ROOT VARIABLES & GLOBAL STYLES 
   ----------------------------------- */
:root {
  --primary-color: #334b63;
  --secondary-color: #b8860b;
  --accent-color: #b8860b;
  --text-dark: #334b63;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --font-heading: "Noto Serif", serif;
  --font-body: "Outfit", sans-serif;
  --transition: all 0.3s ease;
  --navbar-height: 88px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* 2. NAVBAR & HEADER SECTION 
   ----------------------------------- */
.custom-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  padding: 0;
  min-height: var(--navbar-height);
  box-shadow:
    0 16px 36px rgba(31, 63, 107, 0.18),
    0 6px 18px rgba(47, 84, 133, 0.12);
}

.custom-navbar:hover,
.custom-navbar:focus-within {
  box-shadow:
    0 20px 44px rgba(31, 63, 107, 0.24),
    0 8px 22px rgba(47, 84, 133, 0.16);
}

.custom-navbar .container,
.custom-navbar .container-fluid {
  min-height: var(--navbar-height);
  display: flex;
  align-items: center;
}

.navbar-spacer {
  height: var(--navbar-height);
}

.navbar-brand {
  margin-right: 1.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: 72px !important;
  width: auto !important;
  max-width: 190px;
  object-fit: contain;
  object-position: left center;
  transform: none !important;
  transition: var(--transition);
  margin: 0 !important;
}

.nav-link {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--text-dark) !important;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem !important;
  transition: var(--transition);
  position: relative;
  text-shadow: 0 0 0 rgba(1, 130, 143, 0);
}

.nav-link:hover {
  color: #01828f !important;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.22),
    0 0 12px rgba(1, 130, 143, 0.35);
}

.btn-call {
  background-color: var(--primary-color);
  color: var(--white) !important;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  padding: 12px 24px !important;
  display: flex;
  align-items: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  text-decoration: none;
}

.btn-call i {
  font-size: 1.1rem;
}

.btn-call:hover {
  background: #01828f;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1200px) {
  .custom-navbar .container-fluid {
    justify-content: flex-start;
  }

  .navbar-brand {
    margin-right: 1.75rem;
  }

  #navbarContent {
    flex-grow: 1;
  }

  .brand-logo {
    max-width: 210px;
  }
}

/* 3. HERO & INTRO SECTION 
   ----------------------------------- */
.hero {
  position: relative;
  overflow: hidden !important;
  background: #000;
  width: 100%;
}

.hero picture {
  display: block;
}

.hero-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  min-height: 700px;
  max-height: 90vh;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

@media (min-width: 1200px) {
  .hero-image {
    min-height: 0;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}

section {
  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    /* Soft placeholder */
  }

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

.section-title,
.about-title,
.why-choose-title,
.amenities-title,
.floorplan-title,
.connectivity-title,
.gallery-title,
.developer-title,
.contact-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  max-width: 1240px;
  width: min(100%, 1240px);
}

.project-highlights {
  position: relative;
  padding: 80px 0;
  width: 100%;
}

.property-details-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  background-color: #ebeef1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detail-card {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.2rem 1.5rem;
  position: relative;
  transition: var(--transition);
}

.detail-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 2px;
  background-color: #b2ced3;
}

.detail-card:last-child {
  border-right: none;
}

.detail-card:hover {
  background-color: rgba(51, 75, 99, 0.03);
}

.detail-label {
  display: block;
  font-size: 0.8rem;
  color: #8c98a4;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.detail-value {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
}

.detail-icon-box {
  width: 64px;
  height: 64px;
  background-color: rgba(51, 75, 99, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.detail-icon-box i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.detail-card:hover .detail-icon-box {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

.detail-card:hover .detail-icon-box i {
  color: white;
}

/* 5. ABOUT SECTION 
   ----------------------------------- */
.about-section {
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  padding-bottom: 1rem !important;
}

.about-layout {
  align-items: center;
}

.about-image-col {
  position: relative;
  padding-right: 26px;
  padding-bottom: 26px;
}

.about-image-col::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
  height: 35%;
  background: linear-gradient(145deg, #ebeef1);
  z-index: 0;
}

.about-label {
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.about-image-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #dce5ee;
  aspect-ratio: 5 / 6;
  box-shadow: 0 18px 34px rgba(31, 63, 97, 0.12);
}

.about-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.about-content {
  padding-left: 2.25rem;
}

.about-content > .about-title:not(.about-title-custom) {
  display: none;
}

.about-title-custom {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.about-text-custom:not(.why-choose-desc) {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-copy > .about-text-custom.why-choose-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
  max-width: 1240px;
  width: min(100%, 1240px);
  margin-bottom: 0.5rem;
}

.about-copy {
  max-width: 42rem;
  margin-bottom: 0;
}

.about-read-more {
  border: none;
  background: transparent;
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  color: #3d8d97;
}

.about-read-more:hover,
.about-read-more:focus {
  color: var(--primary-color);
}

.about-read-more i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.about-read-more[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.35rem;
}

.about-actions .btn-download {
  width: auto;
  min-width: 190px;
  border-radius: 10px;
  box-shadow: 0 16px 35px rgba(51, 75, 99, 0.12);
}

/* 5.1 WHY CHOOSE 
   ----------------------------------- */
.why-choose-section {
  background-color: transparent;
  width: 100%;
  padding-top: 2rem !important;
}

.why-choose-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 1240px;
  width: min(100%, 1240px);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 90%;
  margin: 0 auto;
}

.btn-download {
  background-color: var(--primary-color) !important;
  color: white !important;
  border: none !important;
  border-radius: 2px;
  padding: 15px 25px;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
  text-decoration: none;
}

.btn-download:hover,
.btn-download:focus {
  background: #1f3f6b !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.choose-card {
  background-color: #f1f4f7;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.choose-card p {
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
}

.choose-card:hover {
  transform: translateY(-6px);
}

@media (min-width: 992px) {
  #amenitiesCarouselDesktop .carousel-item .row {
    --bs-gutter-x: 1.5rem;
    justify-content: center;
    width: 100%;
  }

  #amenitiesCarouselDesktop .carousel-item .col-4 {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    max-width: 33.333333%;
  }

  #amenitiesCarouselDesktop .amenity-img-box {
    height: min(30vw, 32rem);
  }

  .choose-card {
    min-height: 170px;
  }
}

/* 5.2 CONNECTIVITY 
   ----------------------------------- */
.connectivity-section {
  background: #34516f;
  color: #ffffff;
}

.connectivity-list {
  border-left: none;
  padding-left: 0;
}

.connectivity-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.connectivity-item:last-child {
  border-bottom: none;
}

.conn-number {
  font-size: 2.25rem;
  font-weight: 400;
  color: #ffffff;
  margin-right: 2.5rem;
  min-width: 50px;
  opacity: 0.9;
}

.conn-place {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.3px;
}

.conn-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
}

.connectivity-map-container {
  background: transparent;
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

@media (min-width: 992px) {
  .amenities-shell {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .amenities-section {
    background: #34516f;
    padding: 88px 0 72px;
    overflow: hidden;
  }

  .amenities-section .section-title,
  .about-section .section-title,
  .about-developer-section .section-title {
    font-size: 3rem;
    margin-bottom: 1rem !important;
  }

  .amenities-section .section-subtitle,
  .about-developer-section .section-subtitle {
    max-width: 58rem;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 2.75rem !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-section .section-subtitle {
    max-width: 42rem;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem !important;
  }

  .amenities-section .why-choose-desc {
    margin-bottom: 3rem;
  }

  .amenities-section .carousel {
    max-width: none;
    width: 100%;
  }

  #amenitiesCarouselDesktop .carousel-inner {
    padding: 0 0 1.25rem;
  }

  #amenitiesCarouselDesktop .carousel-item .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  #amenitiesCarouselDesktop .carousel-item .col-4 {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  #amenitiesCarouselDesktop .amenity-desktop-card {
    width: 100%;
    margin: 0;
    text-align: left !important;
  }

  #amenitiesCarouselDesktop .amenity-img-box {
    width: 100%;
    height: min(24vw, 23rem);
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0.9rem !important;
  }

  #amenitiesCarouselDesktop .amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #amenitiesCarouselDesktop .amenity-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0;
    color: #ffffff;
    text-align: left;
  }

  .choose-card {
    min-height: 170px;
  }
}

.gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item.main-gallery-item {
  height: 100%;
  min-height: 450px;
}

.gallery-item:not(.main-gallery-item) {
  height: 215px;
}

@media (min-width: 992px) {
  .gallery-item.main-gallery-item {
    height: calc((215px * 2) + 1rem);
    min-height: calc((215px * 2) + 1rem);
  }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 75, 99, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  transform: scale(0.5);
  transition: all 0.4s ease;
  display: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (min-width: 992px) {
  .gallery-shell {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-section {
    background: #f8f9fa;
    /* Light background to contrast with Amenities */
    padding: 88px 0 72px;
    overflow: hidden;
  }

  .gallery-section .section-title {
    font-size: 3rem;
    margin-bottom: 1rem !important;
  }

  .gallery-section .section-subtitle {
    max-width: 58rem;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 2.75rem !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-section .carousel {
    max-width: none;
    width: 100%;
  }

  #galleryCarouselDesktop .carousel-inner {
    padding: 0 0 1.25rem;
  }

  #galleryCarouselDesktop .carousel-item .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  #galleryCarouselDesktop .carousel-item .col-4 {
    width: auto;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  #galleryCarouselDesktop .gallery-desktop-card {
    width: 100%;
    margin: 0;
    text-align: left !important;
  }

  #galleryCarouselDesktop .gallery-img-box {
    width: 100%;
    height: min(24vw, 23rem);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.9rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  #galleryCarouselDesktop .gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .mobile-gallery-card {
    border-radius: 12px;
    margin: 10px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .mobile-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}

.modal-header {
  position: relative;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.modal-header .modal-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal-header .modal-title img {
  max-width: 100%;
  height: auto;
}

.modal-header .btn-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

@media (max-width: 575px) {
  .modal-header {
    justify-content: flex-start;
  }

  .modal-header .modal-title {
    width: 100%;
  }

  .modal-header .btn-close {
    top: 12px;
    right: 12px;
  }
}

.map-placeholder-box {
  background: transparent;
  border-radius: inherit;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  overflow: hidden;
}

.map-placeholder-box .placeholder-icon {
  text-align: center;
  color: #4a5a70;
}

.map-placeholder-box img,
.map-placeholder-box picture {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

@media (max-width: 991px) {
  .connectivity-title,
  .about-title,
  .section-title,
  .why-choose-title,
  .contact-title,
  .developer-title {
    font-size: 2.8rem;
  }

  .map-placeholder-box {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .connectivity-title,
  .about-title,
  .section-title,
  .why-choose-title,
  .contact-title,
  .developer-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .connectivity-list {
    border-left: none;
    padding-left: 0;
  }

  .conn-number {
    font-size: 2.2rem;
  }

  .connectivity-map-container {
    margin-top: 1rem;
  }
}

/* 6. AMENITIES 
   ----------------------------------- */
.about-developer-section {
  background: #ffffff;
  color: #1f3f61;
}

.developer-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 1240px;
  width: min(100%, 1240px);
  margin: 0 auto;
  line-height: 1.7;
  color: #4a5670;
}

@media (max-width: 991px) {
  .developer-title {
    font-size: 2.8rem;
  }

  .developer-desc {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .developer-title {
    font-size: 2.2rem;
  }

  .developer-desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

.amenities-section {
  background: #34516f;
}

.amenity-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: var(--transition);
}

.amenity-slide-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 0.4rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.amenity-slide-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  background: #e9eef4;
  border-radius: 12px;
}

.amenity-slide-card h4 {
  margin: 0.6rem 0 0;
  color: #ffffff;
  font-size: 1.15rem;
}

.amenity-slide-card.empty-card {
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.35);
  color: #f1f5f9;
}

.amenity-slide-card.empty-card h4 {
  color: #d3e1f2;
}

.amenity-img-box {
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.amenity-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.amenity-card:hover .amenity-img-box img {
  transform: scale(1.1);
}

.amenities-section .carousel {
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .amenities-section {
    background-color: #34516f !important;
    padding: 50px 0 !important;
  }

  .amenities-section .section-title {
    color: white !important;
    font-size: 2.22rem !important;
    margin-bottom: 20px !important;
    padding: 0 20px;
  }

  .amenities-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem !important;
    margin-bottom: 40px !important;
    padding: 0 20px;
  }

  .amenities-section .why-choose-desc {
    margin-bottom: 2.5rem !important;
    padding: 0 20px;
  }

  .mobile-amenity-card {
    text-align: left;
    padding-bottom: 30px;
  }

  .mobile-amenity-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
  }

  .mobile-amenity-title {
    font-family: var(--font-heading);
    color: white !important;
    font-size: 1.7rem;
    font-weight: 500;
    padding: 0 10px;
  }

  #amenitiesCarouselMobile .carousel-inner {
    display: block !important;
    overflow: hidden !important;
    padding: 0 20px 20px !important;
  }

  #amenitiesCarouselMobile .carousel-item {
    width: 100%;
    padding: 0 !important;
  }

  #amenitiesCarouselMobile .mobile-amenity-card {
    background: #334b63;
    border-radius: 15px;
    padding: 1rem;
    margin: 0 auto;
    width: min(100%, 22rem);
    text-align: center;
  }

  #amenitiesCarouselMobile .mobile-amenity-card img {
    height: 260px;
    aspect-ratio: auto;
    margin-bottom: 14px;
    border-radius: 10px;
  }

  #amenitiesCarouselMobile .mobile-amenity-name {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  #amenitiesCarouselMobile .carousel-inner::-webkit-scrollbar {
    display: none;
  }
}

.amenities-section .carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
}

.amenities-section .carousel-control-prev,
.amenities-section .carousel-control-next {
  width: 5%;
}

.mobile-amenity-card {
  background: #334b63;
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
}

.mobile-amenity-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.mobile-amenity-title {
  font-family: serif;
  color: #ffffff;
  margin-top: 1rem;
  font-size: 1.5rem;
}

.amenities-section .carousel-control-prev-icon,
.amenities-section .carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

/* 7. FLOORPLAN & GALLERY 
   ----------------------------------- */
.floorplan-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.floorplan-image-container {
  padding: 2rem;
  background: #fafafa;
  overflow: hidden;
}

.floorplan-section .section-subtitle {
  max-width: 1240px;
  width: min(100%, 1240px);
}

.floorplan-section .container {
  max-width: 1320px;
}

.floorplan-desktop-wrapper {
  padding: 0 60px;
}

.fp-desktop-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #3f627f;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fp-desktop-nav-btn:hover {
  background-color: #2c465b;
  transform: translateY(-50%) scale(1.1);
}

.fp-desktop-nav-btn.prev {
  left: 0;
}

.fp-desktop-nav-btn.next {
  right: 0;
}

.floorplan-desktop-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.floorplan-desktop-slider::-webkit-scrollbar {
  display: none;
}

.fp-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 380px;
}

.fp-img-blur {
  filter: blur(4px);
  transform: scale(1.02);
  transition: var(--transition);
  user-select: none;
  pointer-events: none;
}

@media (min-width: 992px) {
  .floorplan-card {
    background: #edf1f3;
    box-shadow: none;
    padding: 1.25rem 1.25rem 1.1rem !important;
  }

  .card-header-flex {
    margin-bottom: 1rem !important;
    gap: 1rem;
  }

  .plan-type {
    font-family: var(--font-heading);
    color: #375778;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.2px;
  }

  .carpet-area {
    display: inline-block;
    font-family: var(--font-body);
    color: #8e8c87;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.1px;
  }

  .card-header-flex > .text-end {
    background: transparent;
    padding-top: 0.15rem;
    flex-shrink: 0;
  }

  .plan-price {
    font-family: var(--font-body);
    color: #375778;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.1px;
  }

  .price-label {
    display: block;
    font-family: var(--font-body);
    color: #a39f98;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .floorplan-image-container {
    background: #f8f2ea;
    padding: 1rem;
    margin-bottom: 1rem !important;
  }

  .floorplan-image-container img {
    max-height: 260px;
    width: 100%;
    object-fit: contain;
  }

  .floorplan-desktop-slider .fp-item:nth-child(3) .floorplan-card,
  .floorplan-desktop-slider .fp-item:nth-child(4) .floorplan-card {
    min-height: 100%;
  }

  .floorplan-desktop-slider .fp-item:nth-child(3) .floorplan-image-container,
  .floorplan-desktop-slider .fp-item:nth-child(4) .floorplan-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem !important;
  }

  .floorplan-desktop-slider
    .fp-item:nth-child(3)
    .floorplan-image-container
    img,
  .floorplan-desktop-slider
    .fp-item:nth-child(4)
    .floorplan-image-container
    img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .btn-download-plan {
    background: #3f627f;
    color: #ffffff !important;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-top: auto;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .btn-download-plan:hover,
  .btn-download-plan:focus {
    background: #1f3f6b;
    color: #ffffff !important;
    transform: translateY(-1px);
  }
}

.gallery-placeholder {
  background-color: #eee;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* 6. CONTACT US 
   ----------------------------------- */
.contact-us-section {
  background: #ebeef1;
  color: #223a5e;
}

.contact-desc {
  font-size: 1.2rem;
  color: #5a6b80;
  margin-bottom: 2.3rem;
  text-align: center;
  line-height: 1.5;
}

.contact-form-wrapper {
  max-width: 620px;
  background: #ffffff;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(51, 75, 99, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.6rem;
}

.form-label-custom {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2c4f7a;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input-custom {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #d8e2eb;
  padding: 0.65rem 0;
  background: transparent;
  color: #2f4f72;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input-custom:focus {
  outline: none;
  border-bottom-color: #2f5685;
  box-shadow: 0 3px 0 rgba(47, 86, 133, 0.15);
}

.form-input-custom::placeholder {
  color: rgba(47, 79, 114, 0.3);
}

.btn-contact-submit {
  background: #2f5485;
  color: #ffffff;
  border: 0;
  border-radius: 12px;
  padding: 0.95rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.btn-contact-submit:hover {
  background: #1f3f6b;
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .contact-title {
    font-size: 3rem;
  }

  .contact-desc {
    font-size: 1.05rem;
    max-width: 680px;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-desc {
    font-size: 0.97rem;
    line-height: 1.4;
  }

  .contact-form-wrapper {
    padding: 1.6rem 1rem;
  }
}

/* 8. FOOTER SECTIONS 
   ----------------------------------- */
.footer-section {
  background-color: #ffffff;
  font-family: var(--font-body);
  color: #24364f;
}

.footer-disclaimer {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5d72;
}

.footer-section a {
  color: #2f5682;
  font-weight: 600;
  text-decoration: none;
}

.footer-section a:hover {
  color: #1f3b63;
  text-decoration: underline;
}

.footer-bottom {
  background-color: #34516f;
  color: white;
  font-size: 0.86rem;
  border-top: 1px solid #dbe2e9;
}

.footer-logo-img {
  height: 78px !important;
  width: auto !important;
  max-width: 180px;
  object-fit: contain;
  transform: none !important;
  transition: var(--transition);
  margin: 0 auto 12px;
  display: block;
}

.qr-placeholder {
  width: 112px;
  height: 112px;
  background-color: #fff;
  padding: 0;
  overflow: hidden;
}

.qr-pattern {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-qr-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.2);
  transform-origin: center;
  image-rendering: crisp-edges;
}

@media (min-width: 992px) {
  .footer-main-row {
    justify-content: space-between !important;
  }

  .footer-brand-col {
    margin-left: 0;
    flex: 0 0 15%;
    width: 15%;
    max-width: 15%;
  }

  .footer-qr-col {
    flex: 0 0 10%;
    width: 10%;
    max-width: 10%;
  }

  .footer-copy-col {
    flex: 0 0 70%;
    width: 70%;
    max-width: 70%;
  }
}

/* 9. RESPONSIVE UTILITIES 
   ----------------------------------- */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1.5rem;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  .brand-logo {
    height: 64px !important;
    max-width: 170px;
  }

  .connectivity-title,
  .about-title,
  .section-title,
  .why-choose-title,
  .contact-title,
  .developer-title {
    font-size: 2.1rem;
  }

  .hero-image {
    min-height: 480px;
    max-height: 70vh;
  }

  .project-highlights {
    margin-top: -60px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .brand-logo {
    height: 60px !important;
    max-width: 160px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .custom-navbar {
    min-height: 82px;
  }

  .navbar-spacer {
    height: 82px;
  }

  .custom-navbar .container,
  .custom-navbar .container-fluid {
    min-height: 82px;
    padding-left: 24px;
    padding-right: 24px;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    overflow: visible;
  }

  .navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .brand-logo {
    height: 56px !important;
    width: auto !important;
    max-width: 150px;
  }

  .navbar-toggler {
    border: none !important;
    padding: 8px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    position: absolute;
    top: calc(100% - 1px);
    left: 24px;
    right: 24px;
    width: auto !important;
    margin-top: 0;
    padding: 18px 20px 20px;
    border: 1px solid #edf2f6;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 36px rgba(31, 63, 107, 0.14);
    z-index: 9999;
  }

  .navbar-nav {
    width: 100%;
    align-items: stretch !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    line-height: 1.2;
  }

  .nav-link {
    text-align: center;
    padding: 14px 12px !important;
    border-bottom: 1px solid #f3f5f7;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .nav-item.ms-xl-3 {
    margin-left: 0 !important;
    margin-top: 16px;
  }

  .btn-call {
    width: 100%;
    justify-content: center;
  }

  .hero {
    background: #fff;
  }

  .hero-image {
    min-height: 0;
    max-height: none;
    height: auto;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center top;
  }

  .project-highlights {
    margin-top: 0;
    padding-top: 72px;
  }
}

@media (max-width: 767px) {
  .custom-navbar {
    min-height: 72px;
  }

  .navbar-spacer {
    height: 72px;
  }

  .custom-navbar .container,
  .custom-navbar .container-fluid {
    min-height: 72px;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    max-width: 100% !important;
    overflow: visible;
  }

  .navbar-brand {
    position: static;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    overflow: visible;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .brand-logo {
    height: 52px !important;
    width: auto !important;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
  }

  .navbar-toggler {
    position: static;
    border: none !important;
    padding: 8px;
    margin-left: auto;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    outline: none !important;
  }

  .navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-collapse {
    margin-top: 0;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    padding-bottom: 20px;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    width: 100% !important;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 9999;
  }

  .legal-page-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .about-section {
    padding: 56px 0 !important;
    text-align: center !important;
  }

  .about-image-col {
    display: none !important;
  }

  .about-content {
    padding: 0 24px !important;
    max-width: 460px;
    margin: 0 auto;
  }

  .about-label {
    color: #2b94ad !important;
    font-size: 0.95rem !important;
    display: block !important;
    letter-spacing: 4px !important;
    margin-bottom: 20px !important;
  }

  .about-intro {
    display: none !important;
  }

  .about-section .section-subtitle {
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
  }

  .about-title {
    font-size: 2.22rem !important;
    line-height: 1.3 !important;
    margin: 0 auto 20px !important;
    width: 100% !important;
    max-width: none !important;
    text-wrap: balance;
  }

  .about-copy {
    max-width: none !important;
    margin: 0 auto !important;
  }

  .about-text {
    font-size: 0.94rem !important;
    line-height: 1.8 !important;
    text-align: center !important;
    margin-bottom: 16px !important;
  }

  .about-copy > .about-text.why-choose-desc {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto 10px !important;
    text-align: center !important;
  }

  .about-read-more {
    justify-content: center;
    margin: 0 auto;
  }

  .about-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin: 20px auto 0 !important;
    max-width: 280px;
    align-items: stretch !important;
  }

  .btn-download {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 0.9rem !important;
    padding: 1rem 1.35rem !important;
    box-shadow: none !important;
  }

  .nav-link {
    text-align: center;
    padding: 15px !important;
    border-bottom: 1px solid #f8f8f8;
  }

  .btn-call {
    justify-content: center;
    margin-top: 15px;
    width: 100%;
  }

  .hero-image {
    min-height: 0;
    max-height: none;
    height: auto;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center top;
    display: block;
  }

  .project-highlights {
    background-color: transparent !important;
    padding: 80px 20px 50px !important;
  }

  .property-details-grid {
    grid-template-columns: 1fr;
    display: block;
    padding: 20px;
  }

  .detail-card {
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(178, 206, 211, 0.4);
  }

  .detail-card:last-child {
    border-bottom: none;
  }

  .detail-card:not(:last-child)::after {
    display: none;
  }

  .why-choose-section {
    padding: 40px 0 !important;
    background-color: transparent !important;
  }

  .why-choose-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    padding: 0 20px !important;
  }

  .choose-card {
    padding: 3rem 1.5rem !important;
    min-height: 160px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 10px !important;
    box-shadow: none !important;
  }

  .amenities-section {
    background-color: #34516f !important;
    padding: 60px 0 !important;
  }

  .amenities-section .section-title {
    color: white !important;
    font-size: 2.4rem !important;
    margin-bottom: 20px !important;
    text-align: center;
  }

  .amenities-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    max-width: 85% !important;
    margin: 0 auto 40px !important;
    text-align: center;
  }

  .amenities-section .why-choose-desc {
    margin: 0 auto 2.5rem !important;
    max-width: 85% !important;
    text-align: center;
  }

  .amenities-mobile-carousel {
    width: 100%;
  }

  .amenities-mobile-carousel .carousel-inner {
    overflow: visible;
  }

  .amenities-mobile-carousel .carousel-item {
    padding: 0;
  }

  .mobile-amenity-card {
    text-align: center;
    width: 90vw;
    margin: 0 auto;
  }

  .mobile-amenity-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .mobile-amenity-info {
    padding: 0;
  }

  .mobile-amenity-name {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    display: block;
  }

  #amenitiesCarouselMobile .mobile-amenity-card {
    width: min(100%, 22rem);
    margin: 0 auto;
    padding: 1rem;
  }

  #amenitiesCarouselMobile .mobile-amenity-card img {
    height: 320px;
    margin-bottom: 14px;
    border-radius: 10px;
  }

  #amenitiesCarouselMobile .mobile-amenity-name {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .mobile-fp-image-box {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-fp-image-box img {
    max-height: 100%;
    object-fit: contain;
  }

  #amenitiesCarouselMobile .carousel-control-prev,
  #amenitiesCarouselMobile .carousel-control-next,
  #amenitiesCarouselMobile .carousel-indicators {
    display: none !important;
  }

  .floorplan-section {
    background-color: var(--white) !important;
    padding: 50px 0 !important;
  }

  .mobile-floorplan-card {
    background-color: #edf1f3 !important;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: var(--bs-border-radius-xl) !important;
    overflow: hidden;
  }

  .mobile-plan-type {
    font-family: var(--font-heading);
    color: #334b63;
    font-size: 1.5rem;
    margin-bottom: 2px;
  }

  .mobile-carpet-label {
    font-size: 0.75rem;
    color: #8c98a4;
    letter-spacing: 0.5px;
  }

  .mobile-plan-price {
    font-family: var(--font-heading);
    color: #334b63;
    font-size: 1.4rem;
    margin-bottom: 2px;
  }

  .mobile-price-label {
    font-size: 0.7rem;
    color: #8c98a4;
    display: block;
  }

  .mobile-fp-image-box {
    background-color: #f7f9fa;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border-radius: var(--bs-border-radius-xl) !important;
    overflow: hidden;
  }

  .mobile-fp-image-box img {
    border-radius: inherit;
  }

  .btn-download-plan-mobile {
    background-color: #334b63 !important;
    color: white !important;
    border: none !important;
    border-radius: 0.75rem !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .btn-download-plan-mobile:hover,
  .btn-download-plan-mobile:focus {
    background: #1f3f6b !important;
    color: #ffffff !important;
    transform: translateY(-1px);
  }

  .fp-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3f627f;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .fp-nav-btn:hover {
    background-color: #1f3f6b;
    transform: scale(1.05);
  }

  .connectivity-section {
    background-color: #334b63 !important;
    padding: 60px 0 !important;
  }

  .connectivity-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem !important;
    margin-bottom: 40px !important;
    color: white !important;
    text-align: center !important;
  }

  .connectivity-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 5px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: left !important;
  }

  .conn-number {
    font-size: 2rem !important;
    color: white !important;
    font-family: var(--font-body) !important;
    font-weight: 700 !important;
    min-width: 40px;
    margin-left: 8px;
  }

  .conn-place {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
  }

  .conn-desc {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
  }

  .footer-section {
    background-color: #ffffff !important;
    color: #444444 !important;
    padding: 40px 0 !important;
    border-top: none !important;
  }

  .footer-section .row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 15px;
  }

  .footer-brand-col,
  .footer-qr-col {
    flex: 0 0 45% !important;
    width: 45% !important;
    text-align: center !important;
  }

  .footer-logo-img {
    max-width: 140px !important;
    height: auto;
    margin-bottom: 0 !important;
  }

  .qr-placeholder {
    width: 96px !important;
    height: 96px !important;
    margin: 0 auto !important;
    background-color: #fff;
  }

  .footer-disclaimer {
    flex: 0 0 100% !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-top: 30px !important;
    color: #666666 !important;
  }

  .footer-bottom {
    display: block !important;
    background-color: #334b63 !important;
    padding: 30px 0 !important;
    color: #ffffff !important;
    text-align: center !important;
    border: none !important;
  }

  .footer-bottom p {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 20px !important;
  }

  .footer-links {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
    align-items: center !important;
    font-size: 0.95rem !important;
  }

  .footer-bottom a {
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .fp-img-blur {
    filter: blur(2px) !important;
    transition: var(--transition);
    user-select: none;
    pointer-events: none;
  }
}

/* FAQ SECTION
   ----------------------------------- */
.faq-section {
  background-color: var(--bg-light);
}

.faq-item {
  border: 1px solid #e4e9f0;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(51, 75, 99, 0.06);
}

.faq-btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #ffffff;
  padding: 1.1rem 1.5rem;
  border: none;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--primary-color);
  background: #f0f4f8;
}

.faq-btn::after {
  filter: none;
  color: var(--secondary-color);
}

.faq-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555f6e;
  background: #ffffff;
  padding: 1rem 1.5rem 1.2rem;
  line-height: 1.7;
}

.faq-body ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.faq-body ul li {
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .faq-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.1rem;
  }
}

/* DEVELOPER STATS ROW
   ----------------------------------- */
.dev-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 12px rgba(51, 75, 99, 0.07);
}

.dev-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 6px;
}

.dev-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .dev-stat-number {
    font-size: 1.7rem;
  }

  .dev-stat-label {
    font-size: 0.78rem;
  }
}

/* FOOTER NAP BLOCK
   ----------------------------------- */
.footer-nap {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.footer-nap-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nap-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
