/* ============================================
   FONT IMPORTS
   ============================================ */
@font-face {
  font-family: 'Louis George Cafe';
  src:
    url(../fonts/LouisGeorgeCafe.woff) format('woff'),
    url(../fonts/LouisGeorgeCafe.woff2) format('woff2');
}

@font-face {
  font-family: 'Catchye Demo';
  src:
    url(../fonts/CatchyeDemo.woff) format('woff'),
    url(../fonts/CatchyeDemo.woff2) format('woff2');
}

@font-face {
  font-family: 'Metropolis';
  src:
    url(../fonts/Metropolis-SemiBold.woff) format('woff'),
    url(../fonts/Metropolis-SemiBold.woff2) format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  src:
    url(./fonts/Montserrat-Thin.woff.woff) format('woff'),
    url(./fonts/Montserrat-Thin.woff.woff2) format('woff2');
}

/* ============================================
   GLOBAL RESET & BASICS
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVIGATION - MATCHING SECURITY.HTML
   ============================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em; /* Changed from 1.5em 0 to match security */
  width: 100%;
  /* Removed margin-top: 1em */
}

.logo {
  display: flex;
  align-items: center;
  height: 45px;
  margin-top: 0; /* Explicitly set to 0 to match security */
}

.menu-btn {
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-top: 0.3em; /* Added to match security */
  height: 20px; /* Added to match security */
}

/* ============================================
   HERO SECTION / TOP BANNER
   ============================================ */
.top {
  background-image: url(../img/real-estate-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  padding-bottom: 8em;
  margin-bottom: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.top > .container {
  position: relative;
  z-index: 1;
}

.heading {
  color: white;
  font-family: 'Catchye Demo';
  font-size: 7rem;
  text-align: center;
  margin-top: 0.3em;
  width: 100%;
  position: relative;
  z-index: 1;
}

.subtext {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: 'Louis George Cafe';
  width: 100%;
  justify-content: center;
  margin-top: 2em;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  width: 18rem;
  flex: 0 0 auto;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card.expanded {
  width: 100%;
  max-width: 100%;
  grid-column: 1 / -1;
  transform: none !important;
}

/* ---- Card Image Wrapper ---- */
.card-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(222, 145, 113, 0.9);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.service-card.one .card-overlay {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.two .card-overlay {
  background: rgba(242, 207, 0, 0.9);
  color: #000;
}

.service-card.three .card-overlay {
  background: rgba(222, 145, 113, 0.9);
}

/* ---- Card Body ---- */
.service-card .card-body {
  padding: 25px;
  text-align: left;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
}

.service-card.one .card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.service-card.two .card-icon {
  background: rgba(242, 207, 0, 0.15);
  color: #f2cf00;
}

.service-card.three .card-icon {
  background: rgba(222, 145, 113, 0.15);
  color: #de9171;
}

.service-card .card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card.one .card-title {
  color: #fff;
}

.service-card.two .card-title {
  color: #f2cf00;
}

.service-card.three .card-title {
  color: #de9171;
}

.service-card .card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ---- Card Features ---- */
.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}

.card-features span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features span i {
  color: #de9171;
  font-size: 0.8rem;
}

.service-card.two .card-features span i {
  color: #f2cf00;
}

/* ---- Expand Section ---- */
.expand-section {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-section:hover {
  color: #fff;
}

.expand-section .expand-text {
  font-weight: 700;
}

.btn-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-expand i {
  color: #fff;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.expand-section:hover .btn-expand {
  background: rgba(255, 255, 255, 0.2);
}

.service-card.two .btn-expand i {
  color: #f2cf00;
}

.service-card.three .btn-expand i {
  color: #de9171;
}

/* ============================================
   PROJECT DETAILS (Expandable Content)
   ============================================ */
.project-details {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease,
    margin 0.3s ease;
  margin-top: 0;
}

.project-details.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 20px;
}

.project-details h6 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}

.project-details h6:first-child {
  margin-top: 0;
}

.project-details p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ---- Location & Service Lists ---- */
.location-list,
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li,
.service-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-list li:last-child,
.service-list li:last-child {
  border-bottom: none;
}

.location-list li i {
  color: #de9171;
  width: 20px;
}

.service-list li i {
  color: #4caf50;
  width: 20px;
}

.service-card.two .location-list li i {
  color: #f2cf00;
}

.service-card.three .location-list li i {
  color: #de9171;
}

/* ---- Stats Mini ---- */
.stats-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-mini span {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-mini strong {
  color: #fff;
  margin-right: 5px;
}

.service-card.two .stats-mini strong {
  color: #f2cf00;
}

.service-card.three .stats-mini strong {
  color: #de9171;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Catchye Demo', sans-serif;
  background: linear-gradient(135deg, #fff, #de9171);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================
   RECENT PROJECT SECTION
   ============================================ */
.recent-project-section {
  padding: 60px 0 40px;
  margin: 0 15px;
}

/* ---- Typography ---- */
.project-badge {
  display: inline-block;
  background: #de9171;
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.project-title-large {
  font-family: 'Catchye Demo', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1.1;
}

.project-title-large .highlight {
  color: #f2cf00;
}

.project-location {
  font-family: 'Louis George Cafe', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.project-location i {
  color: #de9171;
  margin-right: 8px;
}

.project-description {
  font-family: 'Louis George Cafe', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  margin-top: 5em;
}

.project-description strong {
  color: #f2cf00;
  font-weight: 600;
}

/* ---- Image Gallery ---- */
.project-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 3.5em;
}

.project-gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: auto;
}

.project-gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(222, 145, 113, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  background: #1a1a2e;
  min-height: 200px;
}

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

/* First gallery item (featured) */
.project-gallery-item:first-child {
  aspect-ratio: auto;
}

.project-gallery-item:first-child img {
  min-height: 300px;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(
    135deg,
    rgba(222, 145, 113, 0.05),
    rgba(242, 207, 0, 0.02)
  );
}

.gallery-placeholder i {
  font-size: 3rem;
  color: rgba(242, 207, 0, 0.2);
  margin-bottom: 10px;
}

.gallery-placeholder span {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* ---- Project Stats Grid ---- */
.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 25px 0;
}

.project-stat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.project-stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: rgba(222, 145, 113, 0.3);
}

.project-stat-number {
  display: block;
  font-family: 'Catchye Demo', sans-serif;
  font-size: 1.8rem;
  color: #f2cf00;
  font-weight: 600;
}

.project-stat-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* ---- Amenities Grid ---- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.amenity-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(242, 207, 0, 0.2);
}

.amenity-item i {
  display: block;
  font-size: 1.5rem;
  color: #f2cf00;
  margin-bottom: 5px;
}

.amenity-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

/* ---- Pod Features List ---- */
.pod-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.pod-features span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.pod-features span i {
  color: #f2cf00;
  margin-right: 5px;
  font-size: 0.65rem;
}

/* ---- Investor CTA ---- */
.investor-cta {
  background: linear-gradient(
    135deg,
    rgba(222, 145, 113, 0.12),
    rgba(242, 207, 0, 0.06)
  );
  border: 1px solid rgba(222, 145, 113, 0.2);
  border-radius: 16px;
  padding: 25px 30px;
  margin: 20px 0;
  margin-top: 5em;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.investor-cta::before {
  content: '🏗️ INVESTMENT OPPORTUNITY';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(242, 207, 0, 0.05);
  white-space: nowrap;
  transform: rotate(45deg);
}

.investor-cta h4 {
  font-family: 'Catchye Demo', sans-serif;
  color: #f2cf00;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.investor-cta p {
  font-family: 'Louis George Cafe', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

.investor-cta .highlight-text {
  color: #f2cf00;
  font-weight: 600;
}

.investor-cta .btn-invest {
  background: transparent;
  border: 2px solid #f2cf00;
  color: #fff;
  padding: 10px 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 10px;
}

.investor-cta .btn-invest:hover {
  background: #f2cf00;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(242, 207, 0, 0.2);
}

/* ---- Layout Grid ---- */
.project-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ---- Fixes (opacity/visibility overrides) ---- */
.project-stat-item,
.project-gallery-item,
.amenity-item,
.pod-features span,
.investor-cta p,
.gallery-img {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer.footer-btm {
  background: url(../img/footer-bg.jpg) 100%;
  background-size: cover;
  background-position: center;
  padding: 3em 4em;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2em;
}

/* ---- Logo (left aligned) ---- */
.footer-logo-wrapper {
  flex-shrink: 0;
  padding-top: 0.5em;
}

.footer-logo {
  display: block;
}

.ft-logo {
  height: 45px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.ft-logo:hover {
  opacity: 1;
}

/* ---- 4 Divs in the Middle ---- */
.footer-links-wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 4em;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 120px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5mm;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-text {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.footer-email {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #de9171;
}

/* ---- Menu List ---- */
.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 6px;
}

.footer-menu-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8mm;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 2px 0;
}

.footer-menu-list li a:hover {
  color: #de9171;
}

/* ---- Dropdown in Menu ---- */
.footer-menu-list .footer-dropdown {
  position: relative;
  display: block;
}

.footer-menu-list .footer-dropbtn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8mm;
  background: none;
  border: none;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.footer-menu-list .footer-dropbtn:hover {
  color: #de9171;
}

.footer-menu-list .footer-caret {
  display: inline-block;
  font-size: 8px;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.4);
}

.footer-menu-list .footer-dropdown:hover .footer-caret,
.footer-menu-list .footer-dropdown.active .footer-caret {
  transform: rotate(180deg);
  color: #de9171;
}

/* Dropdown Content */
.footer-menu-list .footer-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 0;
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  min-width: 140px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  margin-top: 2px;
}

.footer-menu-list .footer-dropdown-content li {
  margin: 0;
  padding: 0;
}

.footer-menu-list .footer-dropdown-content a {
  display: block;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.6mm;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-left: 2px solid transparent;
}

.footer-menu-list .footer-dropdown-content a:hover {
  color: #de9171;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: #de9171;
}

/* Show dropdown on hover (desktop) */
.footer-menu-list .footer-dropdown:hover .footer-dropdown-content {
  display: block;
}

/* Show dropdown when active (mobile/click) */
.footer-menu-list .footer-dropdown.active .footer-dropdown-content {
  display: block !important;
}

/* ---- Backdrop Overlay ---- */
.footer-dropdown-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

.footer-dropdown-overlay.active {
  display: block;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---- 1200px ---- */
@media (max-width: 1200px) {
  .heading {
    font-size: 6rem;
  }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .footer-links-wrapper {
    gap: 2.5em;
  }

  .footer-col {
    min-width: 100px;
  }
}

/* ---- 992px ---- */
@media (max-width: 992px) {
  .heading {
    font-size: 5rem;
  }

  .container {
    padding: 0 15px;
  }

  .service-card {
    width: 100%;
    max-width: 350px;
  }

  .project-title-large {
    font-size: 2.8rem;
  }

  .project-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-content-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- 768px - MATCHING SECURITY NAV ---- */
@media (max-width: 768px) {
  /* === NAV MATCHING SECURITY.HTML === */
  .nav {
    padding: 0.5em; /* Changed from 1em 0 to match security */
  }

  .logo img {
    height: 22px; /* Added to match security */
    width: auto;
  }

  .menu-btn {
    height: 16px; /* Added to match security */
    width: auto;
  }

  /* === OTHER MOBILE STYLES === */
  .heading {
    font-size: 3.5rem;
    margin-top: 0.2em;
  }

  .container {
    padding: 0 10px;
  }

  .subtext {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
  }

  .card-image-wrapper {
    height: 180px;
  }

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

  .stats-section {
    gap: 10px;
    padding: 20px 0;
  }

  .project-details .row {
    flex-direction: column;
  }

  .project-details .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }

  .stats-mini {
    flex-direction: column;
    gap: 10px;
  }

  .stats-mini span {
    text-align: center;
  }

  .recent-project-section {
    padding: 40px 10px;
    margin: 0 5px;
  }

  .project-title-large {
    font-size: 2.2rem;
  }

  .project-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .amenity-item {
    padding: 10px 12px;
  }

  .amenity-item i {
    font-size: 1.2rem;
  }

  .amenity-item span {
    font-size: 0.65rem;
  }

  .project-stat-item {
    padding: 12px 15px;
  }

  .project-stat-number {
    font-size: 1.4rem;
  }

  .investor-cta {
    padding: 20px;
    margin-top: 5em;
  }

  .investor-cta h4 {
    font-size: 1.2rem;
  }

  .pod-features span {
    font-size: 0.7rem;
    padding: 3px 12px;
  }

  .project-content-grid {
    gap: 20px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery-item {
    aspect-ratio: 16/10;
  }

  .project-gallery-item:first-child {
    aspect-ratio: 16/9;
  }

  p.project-description {
    margin-top: 4em !important;
  }

  /* ---- Footer Mobile ---- */
  footer.footer-btm {
    padding: 2em 1.5em;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }

  .footer-logo-wrapper {
    padding-top: 0;
  }

  .ft-logo {
    height: 35px;
  }

  .footer-links-wrapper {
    justify-content: center;
    gap: 2em 3em;
    width: 100%;
  }

  .footer-col {
    min-width: 120px;
    flex: 0 0 auto;
    text-align: center;
  }

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 1.2mm;
  }

  .footer-col-text {
    font-size: 11px;
  }

  .footer-menu-list li a {
    font-size: 11px;
    letter-spacing: 0.6mm;
  }

  .footer-menu-list .footer-dropbtn {
    font-size: 11px;
    letter-spacing: 0.6mm;
  }

  /* Dropdown on mobile - centered */
  .footer-menu-list .footer-dropdown-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 200px;
    max-width: 85vw;
    z-index: 99999;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .footer-menu-list .footer-dropdown-content li {
    display: block;
    width: 100%;
    text-align: center;
  }

  .footer-menu-list .footer-dropdown-content a {
    padding: 12px 24px;
    font-size: 14px;
    text-align: center;
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
  }

  .footer-menu-list .footer-dropdown-content a:last-child {
    border-bottom: none;
  }

  .footer-menu-list .footer-dropdown-content a:hover {
    border-left: none;
    background: rgba(255, 255, 255, 0.08);
    color: #de9171;
  }

  .footer-menu-list .footer-dropdown.active .footer-dropdown-content {
    display: block !important;
  }

  .footer-menu-list .footer-dropdown.active .footer-caret {
    transform: rotate(180deg);
  }
}

/* ---- 480px - MATCHING SECURITY NAV ---- */
@media (max-width: 480px) {
  /* === NAV MATCHING SECURITY.HTML === */
  .logo img {
    height: 18px; /* Added to match security */
    width: auto;
  }

  .menu-btn {
    height: 12px; /* Added to match security */
    width: 35px; /* Added to match security */
  }

  /* === OTHER SMALL MOBILE STYLES === */
  .heading {
    font-size: 2.8rem;
  }

  .container {
    padding: 0 8px;
  }

  .card-image-wrapper {
    height: 150px;
  }

  .service-card .card-body {
    padding: 18px;
  }

  .service-card .card-title {
    font-size: 1.1rem;
  }

  .service-card .card-text {
    font-size: 0.85rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .project-title-large {
    font-size: 1.8rem;
  }

  .project-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .amenities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-stat-number {
    font-size: 1.2rem;
  }

  .project-stat-label {
    font-size: 0.6rem;
  }

  .project-gallery-item {
    aspect-ratio: 4/3;
  }

  footer.footer-btm {
    padding: 1.5em 0.8em;
  }

  .ft-logo {
    height: 28px;
  }

  .footer-links-wrapper {
    gap: 1.2em 1.5em;
  }

  .footer-col {
    min-width: 80px;
  }

  .footer-col-title {
    font-size: 8px;
    letter-spacing: 0.8mm;
    margin-bottom: 6px;
    padding-bottom: 4px;
  }

  .footer-col-text {
    font-size: 9px;
    line-height: 1.5;
  }

  .footer-menu-list li a {
    font-size: 9px;
    letter-spacing: 0.4mm;
  }

  .footer-menu-list .footer-dropbtn {
    font-size: 9px;
    letter-spacing: 0.4mm;
  }

  .footer-menu-list .footer-dropdown-content {
    min-width: 160px;
    max-width: 92vw;
    padding: 6px 0;
  }

  .footer-menu-list .footer-dropdown-content a {
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* ---- Landscape Mobile ---- */
@media (max-height: 600px) and (orientation: landscape) {
  .top {
    min-height: auto;
    padding-bottom: 3em;
  }

  .heading {
    font-size: 3rem;
    margin-top: 0.2em;
  }

  .nav {
    padding: 0.5em; /* Changed to match security */
  }

  .subtext {
    gap: 15px;
  }

  .card-image-wrapper {
    height: 120px;
  }
}
