@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --primary: #2c3e50;
  --secondary: #4c6c7b;
  --accent: #e67e22;
  --light: #f8f9fa;
  --dark: #212529;
  --text-light: #6c757d;
}

body {
  font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Baskerville", "Playfair Display", serif;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

section#contact {
  scroll-margin-top: 80px; /* Adjust if your navbar height is different */
}

.section {
  padding: 100px 0;
  position: relative;
}

.bg-primary-custom {
  background-color: var(--primary);
}

.bg-secondary-custom {
  background-color: var(--secondary);
}

.text-primary-custom {
  color: var(--primary);
}

.text-secondary-custom {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  /* highlight efek saat hover */
  transition: all 0.3s ease;
  z-index: 0;
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-primary-custom:hover {
  color: white;
  background-color: var(--primary);
  /* tetap solid */
  border-color: var(--primary);
}

.btn-secondary-custom {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff20;
  transition: all 0.3s ease;
  z-index: 0;
}

.btn-secondary-custom:hover::before {
  left: 0;
}

.btn-secondary-custom:hover {
  color: white;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary2-custom {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary2-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff20;
  transition: all 0.3s ease;
  z-index: 0;
}

.btn-secondary2-custom:hover::before {
  left: 0;
}

.btn-secondary2-custom:hover {
  color: white;
  background-color: var(--secondary);
  border-color: var(--secondary);
}

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 140px;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); Hero overlay */
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-logo {
  position: absolute;
  top: -146px;
  left: 75%;
  transform: translateX(50%);
  max-width: 200px;
  z-index: 10;
}

.hero-title {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: "Libre Baskerville", "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: 0;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.hero-buttons .btn {
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: none;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.hero-buttons .btn-outline-light {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-buttons .btn-outline-light:hover {
  background-color: #fff;
  color: var(--primary);
}

/* Hero Stats Styling */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: white;
  font-family: "Libre Baskerville", serif;
}

.hero-stat-number sup {
  font-size: 1.2rem;
  font-weight: 600;
  top: -0.8em;
}

.hero-stat-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 80px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-title {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .hero-content {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* Navbar */
.navbar {
  transition: all 0.4s ease;
  padding: 15px 0;
}

.navbar.scrolled {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.nav-item a {
  font-size: 16px;
}

.nav-tabs .nav-link,
.nav-tabs .nav-link.active {
  color: #212529 !important;
}

.navbar.scrolled .nav-link {
  color: var(--dark) !important;
}

.navbar .nav-link.button-register {
  color: #000;
  border-color: #000;
}

.navbar.scrolled .nav-link.button-register {
  color: white !important;
  border-color: white !important;
}

.navbar.scrolled .nav-link.button-register:hover {
  color: white !important;
  background-color: #4c6c7b !important;
  border-color: #4c6c7b !important;
}

.navbar:not(.scrolled) .nav-link.button-register:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .navbar-brand {
  color: var(--primary) !important;
}

.navbar-brand {
  font-family: "Playfair Display", "Geist", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 60px;
  width: auto;
}

@media (max-width: 991px) {
  .brand-logo {
    height: 48px;
  }
}

.developer-logo {
  height: 58px;
  width: auto;
}

@media (max-width: 991px) {
  .developer-logo {
    height: 44px;
  }
}

.navbar-right {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navbar.scrolled .navbar-collapse {
    background-color: white;
  }
}

.nav-link {
  color: white !important;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
}

@media (max-width: 1287px) {
  .navbar-nav .nav-link {
    font-size: 12px !important;
  }
}
@media (max-width: 1200px) {
  .navbar-nav .nav-link {
    font-size: 10px !important;
  }
}

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

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

/* Base Container */
.property-display-container {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--dark);
}

/* Phase Tabs - Premium Style */
.phase-tabs-container {
  position: relative;
  margin-bottom: 2rem;
  background: var(--light);
  border-radius: 12px;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.phase-tabs-scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  /* Snap scrolling for a smoother, predictable horizontal scroll */
  scroll-snap-type: x mandatory;
  scroll-padding: 8px;
}

.phase-tabs {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 8px;
  min-width: max-content;
}

.phase-tab {
  position: relative;
  padding: 1.25rem 2rem;
  background: var(--light);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  transition: var(--transition);
  color: var(--text-light);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  /* Each tab aligns to the start of the scroll container when snapping */
  scroll-snap-align: start;
}

.phase-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.phase-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.2);
}

.phase-tab.active .phase-number {
  color: white;
}

.phase-tab.active .active-bar {
  width: 100%;
  opacity: 1;
  background: var(--secondary);
}

.phase-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  transition: var(--transition);
}

.phase-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.active-bar {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--secondary);
  opacity: 0;
  transition: var(--transition);
  border-radius: 3px;
}

/* Property Type Selector */
.property-type-selector {
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.section-title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.section-title .icon-building {
  margin-right: 0.75rem;
  font-size: 1.5rem;
  color: var(--secondary);
}

.type-tabs {
  display: flex;
  gap: 0.75rem;
}

.type-tab {
  padding: 0.75rem 1.5rem;
  background: var(--light);
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.type-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}

.type-tab:hover:not(.active) {
  border-color: var(--secondary);
  color: var(--primary);
}

/* Property Card */
.property-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

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

.property-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 80%;
}

.property-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(26, 188, 156, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
}

.feature-details {
  display: flex;
  flex-direction: column;
}

.feature-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.feature-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Action Buttons */
.property-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.action-button i {
  font-size: 1.1rem;
}

.action-button.primary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

.action-button.primary:hover {
  background: #16a085;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 188, 156, 0.4);
}

.action-button.secondary {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.action-button.secondary:hover {
  background: rgba(44, 62, 80, 0.05);
  border-color: var(--secondary);
  color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .property-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-actions {
    flex-direction: column;
  }

  .property-description {
    max-width: 100%;
  }

  .phase-tab {
    padding: 1rem 1.5rem;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .property-features {
    grid-template-columns: 1fr;
  }

  .phase-number {
    font-size: 1.5rem;
  }

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

  .property-title {
    font-size: 1.5rem;
  }
}

/* About Section */
.about-img {
  position: relative;
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  height: 200px;
  background-color: var(--secondary);
  z-index: -1;
}

.property-types {
  margin-top: 2rem;
}

.property-type-card {
  border: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.property-type-card:hover {
  transform: translateY(-5px);
}

.property-type-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

.property-type-card .card-body {
  padding: 1.5rem;
}

.property-type-card .card-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.property-type-card .card-text {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.property-type-card ul {
  font-size: 0.85rem;
}

.property-type-card ul li {
  margin-bottom: 0.5rem;
}

.property-type-card ul li i {
  margin-right: 0.5rem;
  color: #3498db;
}

.development-section {
  padding: 100px 0;
  background-color: var(--light);
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-light {
  color: var(--text-light) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #233140;
  border-color: #233140;
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: #17a589;
  border-color: #17a589;
}

.btn-outline-accent {
  color: var(--accent);
  border-color: var(--accent);
}

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

.letter-spacing-1 {
  letter-spacing: 1px;
}

.development-tabs {
  margin-bottom: 40px;
}

.development-tabs .nav-link {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid;
}

.development-tabs .nav-link.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.development-tabs .nav-link:not(.active):hover {
  background-color: rgba(44, 62, 80, 0.1);
}

.development-content {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px !important;
  min-height: 500px;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.development-image img {
  border-radius: 10px;
  transition: transform 0.3s ease;
  width: 900px;
  height: 600px;
}

@media (max-width: 768px) {
  .development-image img {
    width: 600px;
    height: 300px;
  }
}

.development-image:hover img {
  transform: translateY(-5px);
}

.image-badge {
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.masterplan-features,
.siteplan-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.amenities-info {
  height: 100%;
}

.amenities-info h5 i {
  font-size: 1.2rem;
}

.amenities-info ul li {
  padding-left: 1rem;
  position: relative;
}

.amenities-info ul li:before {
  content: "•";
  color: var(--secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.masterplan-nav-link {
  color: var(--dark);
}

.masterplan-nav-link.active {
  background-color: var(--secondary);
  color: white;
}

@media (max-width: 767.98px) {
  .amenities-info {
    margin-bottom: 1.5rem;
  }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .development-content {
    padding: 30px !important;
  }
}

@media (max-width: 991px) {
  .development-section {
    padding: 80px 0;
  }

  .development-content {
    min-height: auto;
    padding: 25px !important;
  }

  .pe-lg-5,
  .ps-lg-5 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 767px) {
  .development-tabs .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .development-section {
    padding: 60px 0;
  }

  h2.display-5 {
    font-size: 2rem;
  }
}

/* Phase Sections */
.phase-card {
  padding: 40px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

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

.phase-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.phase-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.phase-divider {
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
  margin: 20px 0;
}

/* Modern Demo Button Styles */
.demo-btn {
  background: linear-gradient(90deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff !important;
  border: none;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.1s;
}
.demo-btn:hover,
.demo-btn:focus {
  background: linear-gradient(90deg, #0ea5e9 0%, #6366f1 100%);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.18);
  transform: translateY(-2px) scale(1.03);
}
/* Role-specific (customize if desired) */
.admin-btn {
  /* Example: background: linear-gradient(90deg, #f59e42 0%, #fbbf24 100%); */
}
.marketing-btn {
  /* Example: background: linear-gradient(90deg, #f472b6 0%, #f87171 100%); */
}
.agent-btn {
  /* Example: background: linear-gradient(90deg, #34d399 0%, #10b981 100%); */
}
/* Optional: style SVG icons inside buttons */
.demo-btn svg {
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
  vertical-align: middle;
  fill: currentColor;
}

/* Custom styles for tabs */
.phase-tabs {
  border-bottom: 2px solid #dee2e6;
}

.phase-tabs .nav-link {
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Responsive styles */
@media (max-width: 767.98px) {
  .phase-tabs-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-left: -8px;
    margin-right: -8px;
    /* Subtle edge-fade to hint horizontal overflow */
    /* Mask for modern browsers */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      black 16px,
      black calc(100% - 16px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      black 16px,
      black calc(100% - 16px),
      transparent 100%
    );
  }
  .phase-tabs {
    flex-wrap: nowrap;
    gap: 4px;
    min-width: 0;
  }
  .phase-tab {
    min-width: 100px;
    max-width: 130px;
    padding: 0.6rem 0.6rem;
    font-size: 0.9rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .phase-tab .tab-icon {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }
}

/* For extra small devices */
@media (max-width: 575.98px) {
  .phase-tabs .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 0.8rem;
  }

  /* Option to switch to dropdown on very small screens */
  .phase-dropdown {
    display: block;
    margin-bottom: 1rem;
  }

  .phase-dropdown .dropdown-item.active {
    background-color: #0d6efd;
    color: white;
  }

  /* Hide tabs and show dropdown for very small screens if needed */
  .xs-tabs-toggle .phase-tabs {
    display: none;
  }

  .tab-content {
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 1rem;
    border-radius: 0 0 0.25rem 0.25rem;
  }
}

/* Gallery Section */
.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

/* Contact Section */
.contact-info {
  padding: 30px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.form-control {
  border-radius: 0;
  padding: 12px 15px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 80px 0 30px;
}

.footer-links h5 {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.footer-links h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links ul {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary);
  transform: translateY(-5px);
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
}

/* Features Section */
.feature-box {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

/* Testimonials */
.testimonial-card {
  padding: 30px;
  background-color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-bottom: 30px;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

.testimonial-quote {
  font-style: italic;
  margin: 20px 0;
  color: var(--text-light);
}

.custom-cta-btn {
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(3px);
}

.custom-cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

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

.icon-custom {
  font-size: 2rem;
  color: #4c6c7b;
}

@media (max-width: 576px) {
  .icon-custom {
    font-size: 1.5rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

.stats-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.stat-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(26, 188, 156, 0.1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(26, 188, 156, 0.15);
  border-color: rgba(26, 188, 156, 0.3);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4c6c7b;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(26, 188, 156, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.stat-card:hover .icon-container {
  background: #4c6c7b;
  transform: scale(1.1);
}

.stat-icon {
  font-size: 2.5rem;
  color: #4c6c7b;
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  color: white;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4c6c7b;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-description {
  color: #5a7184;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.blur-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #4c6c7b;
  opacity: 0.03;
  z-index: 0;
}

.blur-circle-1 {
  top: -60px;
  left: -60px;
}

.blur-circle-2 {
  bottom: -60px;
  right: -60px;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

/* .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4C6C7B;
} */

.count-animation {
  display: inline-block;
}

@media (max-width: 767px) {
  .stat-card {
    margin-bottom: 2rem;
  }
}

.masterplan-tabs-wrapper {
  margin-bottom: 2rem;
}

.masterplan-nav-pills {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 15px;
  margin-bottom: -100px;
  margin-top: -100px;
}

.masterplan-nav-pills .masterplan-nav-link {
  transition: all 0.3s ease;
  border: none;
  color: #6c757d;
  background-color: #ffffff;
  border-radius: 25px !important;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.masterplan-nav-pills .masterplan-nav-link:hover {
  background-color: #2c3e50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.masterplan-nav-pills .masterplan-nav-link.active {
  background-color: #2c3e50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.masterplan-tab-content {
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 1rem;
}

.masterplan-tab-pane {
  padding: 0;
}

.masterplan-iframe-container {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
}

.masterplan-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.masterplan-loading-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

@media (max-width: 768px) {
  .masterplan-nav-pills {
    padding: 0.5rem;
  }

  .masterplan-nav-pills .masterplan-nav-link {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    font-size: 0.9rem;
  }

  .masterplan-iframe-container {
    height: 400px;
  }
}

.phase-img img,
.thumbnail-grid img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.thumbnail-grid {
  margin-top: 0.5rem;
  /* reduce spacing between large image and thumbnails */
}

.thumbnail-grid .thumbnail-col {
  padding: 2px;
}

.thumbnail-grid img {
  border-radius: 0.5rem;
  /* maintain rounded corners */
}

.hero-content {
  position: relative;
  padding-top: 100px;
  /* optional: gives space below the logo */
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: clamp(8px, 4vw, 20px);
  right: clamp(8px, 4vw, 20px);
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    right: 8px;
    bottom: 8px;
  }
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* Phase specific styling */
.phase-section {
  position: relative;
  overflow: hidden;
  background-color: white;
}

.phase-badge {
  display: inline-block;
  padding: 5px 15px;
  background-color: var(--accent);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.phase-accent-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 188, 156, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  z-index: -1;
}

.phase-accent-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(230, 126, 34, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: -1;
}

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

.section-title {
  color: #2c3e50;
  position: relative;
  margin-bottom: 20px;
}

.site-plan-map {
  position: relative;
  margin-bottom: 30px;
}

.map-point {
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #48a89e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.amenity-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  aspect-ratio: 1 / 1;
  background-color: #4c6c7b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
  box-sizing: border-box;
}

.amenity-name {
  font-size: 0.95rem;
}

.feature-stat {
  background-color: white;
  transition: all 0.3s ease;
}

.feature-stat:hover {
  transform: translateY(-5px);
}

.feature-stat .feature-icon {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  width: auto;
  height: auto;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin: 10px 0;
}

.park-gallery-item {
  transition: all 0.3s ease;
}

.park-gallery-item:hover {
  transform: translateY(-5px);
}

.park-gallery-caption {
  background-color: white;
}

/* Carousel Styling */
.site-plan-carousel {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-inner {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  height: 500px;
  object-fit: cover;
}

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

/* Legend Styling */
.amenity-item {
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.amenity-number {
  width: 28px;
  height: 28px;
  background-color: #4c6c7b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
}

.amenity-name {
  font-size: 14px;
}

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

  .amenity-name {
    font-size: 13px;
  }
}

/* Progress bar for sold units */
.progress {
  height: 10px;
  border-radius: 0;
  margin-bottom: 10px;
}

.progress-bar {
  background-color: var(--secondary);
}
/* 
.contact {
    background-image: url(images/bg-register.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: right 50%;
} */

/* Property highlights */
.property-highlight {
  margin-bottom: 15px;
}

.property-highlight i {
  color: var(--secondary);
  margin-right: 10px;
}

.text-icon {
  color: #4c6c7b !important;
  font-size: 1.2rem;
}

/* Amenities list */
.amenities-list {
  columns: 2;
  column-gap: 30px;
  list-style: none;
  padding-left: 0;
}

.amenities-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.amenities-list li::before {
  content: "\f058";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .about-accent {
    display: none;
  }

  .amenities-list {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

  .navbar {
    background-color: white !important;
  }

  .navbar .nav-link {
    color: var(--dark) !important;
  }

  .navbar-brand {
    color: var(--primary) !important;
  }
}

.smart-safety-section {
  background-color: #fffcf2;
}

.feature-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4c6c7b;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 18px;
}

.feature-item {
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-name {
  font-size: 16px;
  font-weight: 500;
}

.smart-safety-section h4 {
  color: #34495e;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.smart-safety-section h4:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: #4c6c7b;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.site-plan-section {
  position: relative;
  background:
    url("https://sanubari360.jland.com.my/centralpark_hd.jpg") center center /
    cover no-repeat;
  z-index: 1;
}

.site-plan-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  /* White overlay with 80% opacity */
  z-index: 2;
}

.site-plan-section .container {
  position: relative;
  z-index: 3;
}

/* CSS for phase navigation dots */
.phase-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.phase-nav-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--primary);
  border-radius: 50%;
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.phase-nav-dot.active {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.phase-nav-label {
  position: absolute;
  right: 25px;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 0.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.phase-nav-item:hover .phase-nav-label {
  opacity: 1;
  visibility: visible;
  right: 30px;
}

.legal-text {
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

h4,
h5 {
  font-weight: 600;
}

h5 {
  font-size: 1.1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 20px;
  /* dari left ke right */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
}

/* Fixed Register Now Button */
.register-float {
  position: fixed;
  width: 150px;
  height: 45px;
  bottom: clamp(120px, 15vw, 160px);
  right: clamp(8px, 4vw, 20px);
  background: linear-gradient(135deg, #2c3e50, #2c3e50);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 10px;
}

.register-float:hover {
  background: linear-gradient(135deg, #24303c, #1b2834);
  color: white;
  transform: translateY(-2px);
  box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.4);
}

/* Floating Game Button */
.floating-game-button {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: clamp(180px, 20vw, 225px);
  right: clamp(8px, 4vw, 20px);
  background-color: var(--accent);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.floating-game-button:hover {
  background-color: #d35400;
  color: white;
  transform: scale(1.1);
}

.floating-game-button .game-tooltip {
  visibility: hidden;
  width: 120px;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  right: 105%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.floating-game-button:hover .game-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Enhanced Bottom Ads Banner */
.ads-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 600px;
  height: 100px;
  background: linear-gradient(135deg, #2c3e50 0%, #446382 100%);
  border-radius: 15px;
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatBanner 6s ease-in-out infinite;
  box-sizing: border-box;
  overflow-x: auto;
  word-break: break-word;
}

@keyframes floatBanner {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.ads-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) skew(-20deg);
  }

  100% {
    transform: translateX(100%) skew(-20deg);
  }
}

.ads-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite;
  opacity: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.ads-content {
  display: flex;
  align-items: center;
  width: 100%;
  color: white;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  min-width: 0;
}

.ads-icon {
  font-size: 40px;
  margin-right: 20px;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  animation: pulseIcon 2s infinite alternate;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
}

.ads-text {
  flex: 1 1 120px;
  word-break: break-word;
}

.ads-text h5 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.8s ease-out;
}

.ads-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.ads-button {
  background: #fff;
  color: #000000;
  border: none;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-right: 10px;
}

.ads-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateX(-100%);
}

.ads-button:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.ads-button:hover::after {
  animation: shineButton 1.5s infinite;
}

@keyframes shineButton {
  100% {
    transform: translateX(100%);
  }
}

.ads-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 3;
}

.ads-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg) scale(1.1);
}

/* Floating particles */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ads-banner {
    height: 90px;
    width: 95%;
    padding: 0 15px;
    bottom: 15px;
  }

  .ads-text h5 {
    font-size: 16px;
  }

  .ads-text p {
    font-size: 12px;
  }

  .ads-button {
    padding: 6px 15px;
    font-size: 12px;
  }

  .ads-icon {
    font-size: 32px;
    margin-right: 15px;
  }

  .whatsapp-float {
    bottom: 100px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .register-float {
    bottom: 196px;
    width: 90px;
    height: 35px;
    font-size: 10px;
  }

  body {
    padding-bottom: 40px;
  }
}

@media (max-width: 400px) {
  .ads-text h5,
  .ads-text p {
    font-size: 12px;
  }
  .ads-banner {
    padding: 0 5px;
  }
}

/* Amenities Accordion Revamp */
.custom-accordion-card {
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: none;
  margin-bottom: 1.5rem;
  background: #fff;
}
.custom-accordion-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
}
.section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.6rem;
  color: #fff;
  margin-right: 1rem;
}
.bg-pink {
  background: #f36;
}
.bg-blue {
  background: #3b82f6;
}
.bg-red {
  background: #ef4444;
}
.bg-green {
  background: #22c55e;
}
.section-title {
  display: block;
  font-weight: 700;
}
.section-summary {
  display: block;
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
}
.location-list {
  margin-top: 1rem;
}
.location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.location-row:last-child {
  border-bottom: none;
}
.distance-pill {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  margin-right: 1rem;
  font-size: 1.1rem;
}
.location-info {
  flex: 1;
}
.location-name {
  font-weight: 600;
}
.location-drive {
  display: block;
  font-size: 0.9rem;
  color: #888;
}
.location-distance {
  font-size: 1rem;
  color: #888;
  min-width: 60px;
  text-align: right;
}

/* Remove default accordion border and background */
.accordion-item,
.accordion-button {
  background: none;
  border: none;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background: none;
  color: inherit;
  box-shadow: none;
}

.comprehensive-plan {
  background: linear-gradient(135deg, #e8f5f3 0%, #f8fafc 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.custom-accordion .amenity-card {
  border: none;
  border-left: 6px solid #f36;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
  background: #fff;
  margin-bottom: 1.5rem;
  transition:
    box-shadow 0.2s,
    background 0.2s;
  position: relative;
  overflow: hidden;
}
.custom-accordion .amenity-card.border-pink {
  border-left-color: #f36;
}
.custom-accordion .amenity-card.border-blue {
  border-left-color: #3b82f6;
}
.custom-accordion .amenity-card.border-red {
  border-left-color: #ef4444;
}
.custom-accordion .amenity-card.border-green {
  border-left-color: #22c55e;
}

.custom-accordion .amenity-card .accordion-button {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 1.25rem 1.5rem 1.25rem 4.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c3e50;
  border-radius: 1.25rem;
  position: relative;
  min-height: 72px;
}
.custom-accordion .amenity-card .accordion-button:after {
  right: 1.5rem;
}
.section-icon-lg {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.7rem;
  height: 2.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
}
.bg-pink {
  background: #f36;
}
.bg-blue {
  background: #3b82f6;
}
.bg-red {
  background: #ef4444;
}
.bg-green {
  background: #22c55e;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
}
.section-summary {
  font-size: 0.97rem;
  color: #888;
  font-weight: 400;
  margin-top: -20px;
}

.location-list {
  margin-top: 1rem;
}
.location-row {
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s;
}
.location-row:last-child {
  border-bottom: none;
}
.location-row:hover {
  background: #f8fafc;
}
.distance-pill {
  min-width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  margin-right: 1.1rem;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(44, 62, 80, 0.1);
}
.location-info {
  flex: 1;
  min-width: 0;
  margin-left: -18px;
}
.location-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: #2c3e50;
  display: block;
}
.location-drive {
  font-size: 0.93rem;
  color: #7b8a97;
  display: block;
}
.location-distance {
  font-size: 1rem;
  color: #888;
  min-width: 60px;
  text-align: right;
  font-weight: 500;
}

.custom-accordion .amenity-card .accordion-button:not(.collapsed) {
  background: #f8fafd;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.07);
}

.custom-accordion .amenity-card .accordion-button:focus {
  box-shadow: 0 0 0 2px #4c6c7b33;
}

@media (max-width: 991px) {
  .development-image.map-elevated {
    padding: 0.5rem;
  }
  .custom-accordion .amenity-card .accordion-button {
    padding-left: 3.5rem;
  }
  .section-icon-lg {
    left: 0.75rem;
  }
}

@media (max-width: 600px) {
  .register-float,
  .floating-game-button,
  .whatsapp-float {
    right: max(8px, env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 16px);
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .ads-banner {
    max-width: 250px;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 8px;
    min-width: 0;
    box-sizing: border-box;
  }
  .ads-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .ads-button {
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
    justify-content: center;
    align-self: stretch;
    white-space: normal;
    box-sizing: border-box;
  }
  .ads-text {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .feature-number,
  .phase-circle,
  .central-park-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 10px;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .property-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 0 !important;
    justify-items: center;
    align-items: start;
  }
  .property-features .feature {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
  }
}

.get-in-touch-section {
  background: linear-gradient(135deg, #e8f5f3 0%, #f8fafc 100%);
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.get-in-touch-section .contact-card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(44, 62, 80, 0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    box-shadow 0.2s,
    background 0.2s;
  border: none;
}

.get-in-touch-section .contact-card:hover {
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.12);
  background: #f8fafc;
}

.get-in-touch-section .icon-custom {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  background: #e8f5f3;
  border-radius: 50%;
  padding: 0.75rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
}

.get-in-touch-section h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.get-in-touch-section p {
  color: #555;
  font-size: 0.98rem;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 600px) {
  .get-in-touch-section {
    padding: 32px 0;
  }
  .get-in-touch-section .contact-card {
    padding: 1.25rem 0.75rem;
  }
  .get-in-touch-section .icon-custom {
    font-size: 2rem;
    padding: 0.5rem;
  }
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.form-control-lg,
.form-select-lg {
  padding: 12px 16px;
}

.form-check-input:checked {
  background-color: #cb9f67;
  border-color: #cb9f67;
}

.custom-checkbox .form-check-input {
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.2em;
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .form-select {
    font-size: 15px !important;
  }
}

/* Custom color for all elements */
.bg-custom {
  background-color: #4c6c7b;
}
.bg-pill-custom {
  background-color: #4c6c7b;
}
.border-custom {
  border-top: 3px solid #4c6c7b;
}

/* Hover effect for desktop */
@media (min-width: 992px) {
  .amenity-card {
    height: 100%;
    transition: all 0.3s ease;
  }

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

/* Mobile Accordion Styles */
.custom-accordion .accordion-item {
  border-radius: 0.5rem !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.custom-accordion-btn {
  padding: 1rem;
  font-weight: 500;
  background-color: white;
  box-shadow: none !important;
}

.custom-accordion-btn:not(.collapsed) {
  color: inherit;
  background-color: rgba(0, 0, 0, 0.03);
}

.custom-accordion-btn::after {
  background-size: 1rem;
}

.custom-accordion .accordion-body {
  padding: 0 1rem 1rem;
}

.section-icon-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

/* Shared Styles */
.section-icon-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.section-title {
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
}

.section-summary {
  font-size: 0.75rem;
  color: #6c757d;
  display: block;
}

.location-list {
  margin-top: 10px;
}

.location-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.distance-pill {
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}

.location-info {
  flex: 1;
  min-width: 0;
}

.location-name {
  font-size: 0.75rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-drive {
  font-size: 0.65rem;
  color: #6c757d;
  display: block;
}

.d-lg-none .accordion-button {
  pointer-events: none;
  cursor: default;
  background-color: transparent;
  padding: 1rem 1.25rem;
}
.d-lg-none .accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: none;
}
.d-lg-none .accordion-button::after {
  display: none;
}
.d-lg-none .accordion-collapse {
  visibility: visible;
}
.d-lg-none .accordion-item {
  border: none;
  background-color: transparent;
}

.accordion-item {
  border-bottom: 1px solid #dee2e6;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-button:not(.collapsed) {
  border-bottom: 1px solid #dee2e6;
}

@media (max-width: 576px) {
  .legal-text p,
  .text-end p {
    font-size: 10px !important;
  }
}

.font-size-custom {
  font-size: 14px !important;
}

.form-label {
  font-size: 14px !important;
}

.form-select {
  font-size: 14px !important;
}

.form-check-label {
  font-size: 14px !important;
}

/* Responsive fixes for award badges in footer */
img.award-badge {
  display: inline-block;
  max-width: 150px;
  height: auto;
}
@media (max-width: 576px) {
  img.award-badge {
    max-width: 110px;
  }
}

/* Footer link for provider branding */
.footer-brand-link {
  color: inherit;
  text-decoration: none;
}
.footer-brand-link:hover,
.footer-brand-link:focus {
  color: inherit;
  text-decoration: none;
}
