@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --primary-light-gold: #ffce2e;
  --primary-dark: #1a1a1a;
  --primary-orange: #ea580c;
  --primary-red: #dc2626;
  --accent-blue: #1e3a8a;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-light: #f9fafb;
  --bg-cream: #fef3c7;
  --white: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#navbar.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  font-size: 14px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold);
}

.nav-call {
  background: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  animation: gradientShift 10s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 0.85;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 2rem;
  color: white;
  animation: fadeInDown 0.8s ease;
}

.badge-icon {
  color: var(--primary-gold);
}

.hero-title {
  font-size: 75px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  animation: fadeInUp 1s ease;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f, var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 1.2s ease;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  animation: fadeInUp 1.4s ease;
}

.btn {
  padding: 1.125rem 2.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  color: var(--primary-dark);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.6s ease;
}

.hero-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-gold);
  margin-bottom: 0.25rem;
}

.stat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
  margin: 0 auto 1.5rem;
  border-radius: 4px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 6rem 1.5rem;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 3.5rem;
}

.feature-content h4 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-gray);
  font-size: 14px;
}

.about-image {
  position: relative;
}

.image-placeholder {
  border-radius: 20px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

/*.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}*/
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
.placeholder-content {
  text-align: center;
  color: white;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.placeholder-icon {
  font-size: 6rem;
  margin-bottom: 1rem;
}

.placeholder-content p {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.placeholder-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Pricing Section */
.pricing {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
  border-color: var(--primary-gold);
}

.pricing-card.featured {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, #fff9e6, white);
}

.pricing-card.premium {
  background: linear-gradient(135deg, #f0f0f0, white);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-gold);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.pricing-type {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-gold);
  line-height: 1;
}

.price-suffix {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
  padding: 0 1rem;
}

.pricing-features p {
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.pricing-btn {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  color: var(--primary-dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 20px;
  display: block;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--primary-dark), #2d2d2d);
  color: var(--primary-gold);
}

.pricing-card.premium .pricing-btn {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: white;
}

.pricing-note {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid var(--primary-gold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-note p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.pricing-note p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  .price-value {
    font-size: 2rem;
  }
}
/* Properties Section */
.properties {
  padding: 6rem 1.5rem;
  background: var(--bg-cream);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .properties-grid {
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  }
}
.property-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

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

.property-image {
  position: relative;
  height: 250px;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.property-image .img_wrapper {
  height: 100%;
  width: 100%;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-light-gold);
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-type {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
}

.property-content {
  padding: 1.75rem;
}

.property-subtitle {
  color: var(--primary-gold);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.property-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.property-location {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.property-description {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.property-details-list {
  margin-bottom: 1.5rem;
}

.property-details-list p {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.property-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  border-right: 4px solid var(--primary-gold);
}

.property-note p {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-style: italic;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.property-features span {
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

.property-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-gold);
}

.property-btn {
  background: var(--primary-dark);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.property-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: scale(1.05);
}

/* Amenities Section - Updated */
.amenities {
  padding: 6rem 1.5rem;
  background: white;
}

.amenities-categories {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.amenity-category-section {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 16px;
}

.amenity-category-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.amenity-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.amenity-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0;
}

.amenity-list-simple {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.amenity-list-simple p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 0.5rem;
  font-weight: 500;
}

.green-subtitle {
  color: var(--primary-gold);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.amenities-two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.retail-note {
  margin-top: 1.5rem;
  padding: 15px 25px;
  background: var(--bg-cream);
  border-radius: 8px;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-gray);
  font-weight: 600;
}

/* Essentials Section */
.essentials {
  padding: 6rem 1.5rem;
  background: #fffdf3;
}

.essentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.essential-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

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

.essential-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.essential-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.essential-content {
  padding: 2rem;
}

.essential-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.essential-description {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .essentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .essential-image {
    height: 200px;
  }
}
/* Location Section */
.location {
  padding: 6rem 1.5rem;
  background: var(--bg-light);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.location-map {
  width: 100%;
}

.map-placeholder {
  background: #1a1a1a;
  border-radius: 20px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 5px solid #1a1a1a;
}

.map-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.map-placeholder .map-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0px;
}

.map-subtitle {
  font-size: 1rem;
  opacity: 0.8;
  color: #d4af37;
}

.proximity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.proximity-category {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.proximity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.proximity-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-gold);
}

.category-icon {
  font-size: 2rem;
}

.proximity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proximity-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  gap: 1rem;
}

.proximity-item:hover {
  background: var(--bg-cream);
  transform: translateX(5px);
}

.place-name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.distance {
  font-size: 0.9rem;
  color: var(--primary-gold);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

.distance-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bg-cream);
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  border-right: 4px solid var(--primary-gold);
}

.distance-note p {
  color: var(--text-gray);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Gallery Section */
.gallery {
  padding: 6rem 1.5rem;
  background: #1f1f1f;
}

.gallery .section-title {
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.gallery-placeholder:hover {
  transform: scale(1.05);
}

.gallery-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-placeholder p {
  font-size: 1.125rem;
  font-weight: 600;
  position: absolute;
  left: 20px;
  bottom: 20px;
}

/* Projects Slider Section */
.projects-slider {
  padding: 6rem 1.5rem;
  background: white;
  overflow: hidden;
}

.projects-swiper {
  padding: 2rem 1rem 4rem;
  position: relative;
  overflow: hidden;
}

.swiper-wrapper {
  padding-bottom: 1rem;
}

.project-slide-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.project-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-slide-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

.project-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-slide-card:hover .project-slide-image img {
  transform: scale(1.1);
}

/* Placeholder for project images */
.project-slide-image::before {
  content: "🏢";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 5rem;
  opacity: 0.3;
  z-index: 1;
}

.project-slide-info {
  padding: 1.5rem;
  background: white;
}

.project-slide-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.project-slide-location {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--primary-gold);
  border-radius: 50%;
  color: var(--primary-dark);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.25rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-dark);
  color: var(--primary-gold);
  transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--text-light);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--primary-gold);
  width: 30px;
  border-radius: 6px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-slide-image {
    height: 250px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 1rem;
  }
}
/* Contact Section */
.contact {
  padding: 0rem 1.5rem 6rem;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(750px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-card:hover {
  background: var(--bg-cream);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-gray);
  font-size: 1rem;
  margin: 0.25rem 0;
  font-weight: 500;
}

.contact-time {
  color: var(--text-light);
  font-size: 14px !important;
  margin-top: 0.5rem;
}

.contact_card_cta {
  padding: 12px 25px;
  background: var(--primary-gold);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 15px;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--primary-dark), #2d2d2d);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-gold);
}

.form-input option {
  background: var(--primary-dark);
  color: white;
}

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

.form-submit {
  width: 100%;
  padding: 1.125rem;
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  color: var(--primary-dark);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.form-privacy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* Modal Styles with #reraModal as parent */
#reraModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

#reraModal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#reraModal .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(5px);
  z-index: 1;
}

#reraModal .modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
  animation: slideUp 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#reraModal .modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

#reraModal .modal-close:hover {
  background: var(--primary-gold);
  color: white;
  transform: rotate(90deg);
}

#reraModal .modal-header {
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  padding: 3rem 2rem 2rem;
  text-align: center;
  border-radius: 20px 20px 0 0;
}

#reraModal .modal-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

#reraModal .modal-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

#reraModal .modal-subtitle {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.8);
}

#reraModal .modal-body {
  padding: 2.5rem;
}

#reraModal .rera-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

#reraModal .rera-info-item {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
}

#reraModal .rera-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

#reraModal .rera-value {
  font-size: 1.125rem;
  color: var(--text-dark);
  font-weight: 700;
}

#reraModal .rera-disclaimer {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 2px solid var(--primary-gold);
}

#reraModal .rera-disclaimer h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

#reraModal .rera-disclaimer ul {
  list-style: none;
  padding: 0;
}

#reraModal .rera-disclaimer li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;
}

#reraModal .rera-disclaimer li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-gold);
  font-weight: bold;
}

#reraModal .rera-disclaimer a {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
}

#reraModal .rera-disclaimer a:hover {
  text-decoration: underline;
}

#reraModal .rera-documents {
  margin-bottom: 2rem;
}

#reraModal .rera-documents h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

#reraModal .document-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

#reraModal .document-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: white;
  border: 2px solid var(--bg-light);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

#reraModal .document-link:hover {
  border-color: var(--primary-gold);
  background: var(--bg-light);
  transform: translateX(5px);
}

#reraModal .doc-icon {
  font-size: 1.5rem;
}

#reraModal .rera-contact {
  background: var(--primary-dark);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

#reraModal .rera-contact p {
  margin: 0.5rem 0;
}

#reraModal .rera-contact strong {
  color: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Additional RERA Project Card Styles */
#reraModal .rera-projects-section {
  margin-bottom: 2.5rem;
}

#reraModal .rera-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-gold);
}

#reraModal .rera-project-card {
  background: white;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

#reraModal .rera-project-card:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
  transform: translateX(5px);
}

#reraModal .rera-project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 1rem;
}

#reraModal .rera-project-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

#reraModal .rera-phase-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, var(--primary-gold), #f4d03f);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#reraModal .rera-phase-badge.phase-2 {
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
  color: white;
}

#reraModal .rera-project-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

#reraModal .rera-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: 8px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#reraModal .rera-detail-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 600;
}

#reraModal .rera-detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 700;
  font-family: "Courier New", monospace;
}

#reraModal .rera-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

#reraModal .rera-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments for project cards */
@media (max-width: 768px) {
  #reraModal .rera-project-header {
    flex-direction: column;
    align-items: flex-start;
  }
  #reraModal .rera-detail-item {
    flex-direction: column;
    align-items: flex-start;
  }
  #reraModal .rera-detail-value {
    font-size: 0.85rem;
    word-break: break-all;
  }
}
/* Responsive */
@media (max-width: 768px) {
  #reraModal.active {
    padding: 1rem;
    align-items: flex-start;
  }
  #reraModal .modal-content {
    max-height: 95vh;
    border-radius: 15px;
  }
  #reraModal .modal-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  #reraModal .modal-title {
    font-size: 1.5rem;
  }
  #reraModal .modal-body {
    padding: 1.5rem;
  }
  #reraModal .rera-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #reraModal .document-links {
    grid-template-columns: 1fr;
  }
  #reraModal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}
/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-gold);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  justify-content: center;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-dark);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .feature-item {
    width: 48.5% !important;
  }
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 50px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .proximity-grid {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .container {
    padding: 0;
  }
  .about-content {
    text-align: center;
  }
  .about-subtitle {
    line-height: 35px;
    font-size: 25px;
  }
  .about-text {
    font-size: 15px;
  }
  .feature-item {
    width: 100% !important;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .section-description {
    font-size: 15px;
  }
  .section-title {
    line-height: 35px;
  }
  .location-content {
    display: flex;
    flex-direction: column;
  }
  .proximity-item {
    flex-direction: column;
  }
  .property-note p {
    font-size: 12px;
  }
  .amenity-category-title {
    text-align: center;
    font-size: 23px;
  }
  .contact-form-wrapper {
    padding: 30px;
    text-align: center;
  }
  .contact-form-wrapper .form-title {
    font-size: 25px;
  }
  .contact-form-wrapper .form-subtitle {
    font-size: 15px;
  }
  .footer-section {
    text-align: center;
  }
  .footer-description {
    font-size: 15px;
  }
  .footer-logo {
    justify-content: center;
  }
  .hero-badge {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: left 0.4s ease;
    gap: 1.5rem;
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-two-column {
    grid-template-columns: 1fr;
  }
  .amenity-category-section {
    padding: 1.5rem;
  }
}
@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .amenities-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .essentials-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .essential-image {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
