@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --color-bone: #F4F4F4;
  --color-white: #FFFFFF;
  --color-night-blue: #04133F;
  --color-gold: #C09F50;
  --color-anthracite: #282828;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-anthracite);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-night-blue);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ====== SECTION LABEL SYSTEM ====== */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2.5rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--color-gold);
}

.section-label-light {
  color: var(--color-gold);
}

.section-label-light::before {
  background: var(--color-gold);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .section-label {
  display: block;
  text-align: center;
  padding-left: 0;
}

.section-header .section-label::before {
  display: none;
}

.section-intro {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: #a78740;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

/* Card Grid 3 columns (index page) */
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-night-blue);
  letter-spacing: 1px;
}

.logo-img {
  height: 100px;
  width: auto;
}

.footer-logo-img {
  height: 110px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-anthracite);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.mobile-contact-li {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-night-blue);
}

/* ====== HERO SECTION ====== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-bone);
  padding-top: 120px;
}

.hero .container {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.hero-content {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.hero-subtitle {
  color: var(--color-gold);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  color: var(--color-night-blue);
  font-size: 4.5rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-anthracite);
  font-weight: 500;
  font-family: var(--font-heading);
}

.hero-tagline {
  font-size: 1rem;
  color: #777;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  border-left: 1px solid rgba(0,0,0,0.05);
}

/* Hero Features Bar */
.hero-features-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(4, 19, 63, 0.92);
  backdrop-filter: blur(10px);
  z-index: 3;
  padding: 1rem 0;
}

.hero-features-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
}

.feat-group {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.hero-feature-item {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-feature-dot {
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 0;
  position: relative;
  top: -1px;
}

/* ====== VISION SECTION ====== */
.vision {
  padding: 8rem 0;
  background-color: var(--color-white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.vision-text h2 {
  font-size: 2.5rem;
  color: var(--color-night-blue);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.vision-text h2 strong {
  font-weight: 700;
}

.vision-text p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.vision-highlight {
  color: var(--color-anthracite);
  font-weight: 500;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 1rem;
}

.vision-img-wrapper {
  position: relative;
}

.vision-main-img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  width: 100%;
}

.vision-secondary-img {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 45%;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border: 4px solid var(--color-white);
}

/* ====== ARCHITECTURE SECTION ====== */
.architecture {
  background: var(--color-bone);
}

.architecture-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

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

.architecture-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 5rem 0 3rem;
  background: linear-gradient(to top, rgba(4,19,63,0.95) 0%, rgba(4,19,63,0.8) 50%, rgba(4,19,63,0.4) 80%, transparent 100%);
}

.architecture-title {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.architecture-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
}

.arch-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 4rem 0 5rem;
}

.arch-feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.arch-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.arch-feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: rgba(192,159,80,0.08);
  border-radius: 50%;
}

.arch-feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-night-blue);
}

.arch-feature-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ====== APARTMENTS SECTION ====== */
.apartments {
  padding: 8rem 0;
  background-color: var(--color-white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-night-blue);
  margin-bottom: 1rem;
}

.section-title.center {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.card {
  background: var(--color-bone);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.card-body {
  padding: 2rem 1.75rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  color: var(--color-night-blue);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.card-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.card-body p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ====== FACILITIES SECTION ====== */
.facilities {
  padding: 8rem 0 0rem;
  background-color: var(--color-white);
}

.facilities-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}

.facilities .section-title {
  margin-bottom: 1rem;
}

.facilities-intro {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
}

.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.facility-text {
  padding: 4rem 4rem;
}

.facility-text h3 {
  font-size: 2rem;
  color: var(--color-night-blue);
  margin-bottom: 1.5rem;
}

.facility-text p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}

.facility-bullets {
  list-style: none;
  margin-top: 1.5rem;
}

.facility-bullets li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.facility-bullets li::before {
  content: "✦";
  color: var(--color-gold);
  margin-right: 0.75rem;
  font-size: 0.85rem;
}

.facility-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* ====== SOCIAL PRIVILEGES SECTION ====== */
.social-privileges {
  padding: 2rem 0 8rem;
  background-color: var(--color-white);
  overflow: hidden;
}

.social-wrapper {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
  padding-left: 2rem;
}

.social-text-col {
  flex: 0 0 400px;
  padding-right: 2rem;
}

.social-text-col .section-title {
  font-size: 2.75rem;
  color: var(--color-night-blue);
  margin-bottom: 2rem;
  text-align: left;
}

.social-desc {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-desc p {
  margin-bottom: 1.5rem;
}

.social-carousel-container {
  display: flex;
  position: relative;
  align-items: center;
  flex: 1;
  width: 100%;
  overflow: hidden;
  padding-right: 2rem;
}

.social-btn {
  background-color: var(--color-gold);
  border: none;
  color: var(--color-white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, background-color 0.2s;
  flex-shrink: 0;
}

.social-btn:hover {
  background-color: #a78740;
  transform: scale(1.05);
}

.social-btn-prev {
  margin-right: -25px;
}

.social-btn-next {
  margin-left: -25px;
}

.social-cards-col {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 2rem 0; /* space for shadow */
  scrollbar-width: none;
  cursor: grab;
}

.social-cards-col.active {
  cursor: grabbing;
}

.social-cards-col::-webkit-scrollbar {
  display: none;
}

.social-card {
  position: relative;
  min-width: 250px;
  height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.social-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
}

.social-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-card:hover .social-card-bg {
  transform: scale(1.08);
}

.social-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem;
  z-index: 2;
  color: var(--color-white);
}

.social-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--color-white);
  border-radius: 50%;
  color: var(--color-night-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.social-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.social-card-content h4 {
  font-size: 1.3rem;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.social-card-content span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.margin-top-2 {
  margin-top: 1rem;
  display: inline-block;
}

/* ====== LOCATION SECTION ====== */
.location-section {
  padding: 8rem 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.location-wrapper {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}

.location-content-col {
  flex: 1;
  max-width: 450px;
}

.location-content-col .group-left {
  margin-left: 0;
}

.location-content-col .section-title {
  font-size: 2.75rem;
  color: var(--color-night-blue);
  margin-bottom: 1.5rem;
  text-align: left;
}

.location-desc {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.location-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.loc-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.loc-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-top: 0.2rem;
}

.loc-text strong {
  display: block;
  color: var(--color-night-blue);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  margin-bottom: 0.2.5rem;
}

.loc-text span {
  color: #777;
  font-size: 0.9rem;
}

.location-highlight-box {
  background-color: #C19A31;
  color: var(--color-white);
  padding: 1.25rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(193, 154, 49, 0.2);
  display: inline-block;
}

.location-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 0 0 220px;
}

.location-gallery-col img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.location-map-col {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  right: -2rem;
}

.location-map-col img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
}

/* ====== CONTACT FORM SIGNUP ====== */
.contact-section {
  background-color: var(--color-night-blue);
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

.contact-center-card {
  background-color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.contact-center-card h3 {
  font-size: 1.8rem;
  color: var(--color-night-blue);
  margin-bottom: 2.5rem;
  font-family: var(--font-heading);
}

.horizontal-form {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 250px;
  margin-bottom: 0;
}

.horizontal-form input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  height: 55px; /* Ensures inputs match button height */
}

.horizontal-form input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.horizontal-form .btn {
  padding: 0 2.5rem;
  height: 55px;
  white-space: nowrap;
  font-size: 1.05rem;
}

/* ====== FOOTER ====== */
footer {
  background-color: #020a22;
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-info {
  text-align: right;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
}
.footer-bottom a:hover {
  color: var(--color-gold);
}

/* ====== RESPONSIVE ====== */
/* ====== FINAL SHOWCASE ====== */
.final-showcase {
  padding: 4rem 0;
  background: var(--color-white);
}

.showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.showcase-grid-row {
  display: flex;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  border-radius: 12px;
  overflow: hidden;
}

.showcase-img-wrapper {
  width: 100%;
  flex: 1;
  overflow: hidden;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.showcase-img-wrapper:hover .showcase-img {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .architecture-hero {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vision-secondary-img {
    position: static;
    width: 60%;
    margin-top: 1.5rem;
    border: none;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .facility-row {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .facility-text {
    padding: 3rem 2rem;
  }
  .facility-img {
    height: 350px;
  }
  .social-wrapper {
    flex-direction: column;
    padding: 0 1rem;
  }
  .social-text-col {
    flex: none;
    padding-right: 0;
    text-align: center;
  }
  .social-text-col .section-title {
    text-align: center;
  }
  .social-cards-col {
    width: 100%;
    padding: 1rem;
  }
  .location-wrapper {
    flex-direction: column;
    text-align: left;
    gap: 4rem;
  }
  .location-content-col {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .location-content-col .section-title {
    text-align: left;
  }
  .loc-feature {
    text-align: left;
    max-width: 100%;
    margin: 0;
  }
  .location-gallery-col {
    flex-direction: row;
    width: 100%;
    flex: 1;
    overflow-x: auto; /* Allow horizontal scroll if needed */
  }
  .location-map-col {
    right: 0;
  }
  .hero-image {
    width: 50%;
  }
  .arch-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .architecture-hero {
    height: auto;
    min-height: 380px;
  }
  .architecture-overlay {
    padding: 3rem 0;
  }
  .arch-content {
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-contact-li {
    display: flex;
  }
  .header .container {
    height: 180px; /* Increased to accommodate 160px logo */
    align-items: center; 
    padding-top: 0;
    transition: all 0.3s ease;
  }
  .header.scrolled .container {
    height: 90px;
    align-items: center;
    padding-top: 0;
  }
  .logo-img {
    height: 160px; /* Large mobile logo as requested */
    transition: all 0.3s ease;
  }
  .footer-logo-img {
    height: 160px; 
  }
  .header.scrolled .logo-img {
    height: 70px;
  }
  #header-btn {
    display: none;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-night-blue);
    flex-direction: column;
    padding: 7rem 2.5rem 2rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    z-index: 999;
  }
  .nav-links.nav-open {
    right: 0;
  }
  .nav-links li {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
  }
  .nav-links li::before {
    content: "✦";
    color: var(--color-gold);
    margin-right: 1rem;
    font-size: 1.1rem;
  }
  .nav-links li a {
    color: var(--color-white);
    font-size: 1.2rem;
    text-align: left;
    width: 100%;
  }
  .nav-links li a:active {
    color: var(--color-gold);
  }
  .mobile-menu-btn {
    display: block;
    z-index: 1000;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-image {
    width: 100%;
    opacity: 0.15;
    z-index: 1;
    border-left: none;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0;
  }
  .hero-accent-line {
    margin: 0 auto 1.5rem;
  }
  .hero-desc {
    margin: 0 auto 0.5rem;
  }
  .hero-tagline {
    margin: 0 auto 2.5rem;
  }
  
  /* Fix hero bottom bar vertical stack */
  .hero-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 5;
    padding: 0 0 1.5rem 0;
  }
  .hero-features-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    line-height: 1.5;
    background: rgba(4, 19, 63, 0.95);
    padding: 1rem;
    border-radius: 8px;
    margin: 0 1rem;
  }
  .hero-feature-item {
    font-size: 0.8rem;
  }

  /* Padding fixes */
  .vision, .apartments, .facility-section, .location-section, .contact-section, .social-privileges {
    padding: 4rem 0 !important;
  }
  .contact-center-card {
    padding: 2rem;
  }
  
  .showcase-grid-row {
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: none;
    border-radius: 0;
  }
  .showcase-grid-row .showcase-img-wrapper {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer-info {
    text-align: center;
  }
  .card-grid, .card-grid-3 {
    grid-template-columns: 1fr !important;
  }
  .architecture-hero {
    height: 280px;
  }
  .architecture-title {
    font-size: 2rem;
  }
  .arch-features {
    padding: 3rem 1.5rem 4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .vision-text h2 {
    font-size: 2rem;
  }
  .horizontal-form {
    flex-direction: column;
  }
  .horizontal-form .btn {
    width: 100%;
  }
}

/* Scroll To Top Button */
#scrollTopBtn {
  display: none; /* hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--color-gold);
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 0; /* Tam kare */
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: opacity 0.3s, transform 0.3s;
  
  /* Center the chevron icon */
  justify-content: center;
  align-items: center;
}

#scrollTopBtn .chevron-up {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid white;
  border-left: 3px solid white;
  transform: rotate(45deg);
  margin-top: 5px; /* Visual centering adjustment */
}

#scrollTopBtn:hover {
  background-color: #a78740;
  transform: translateY(-3px);
}
