/* ==========================================
   PROPERTY PANCHANG — Complete Stylesheet
   With Full Animations Matching Original
   ========================================== */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FED7AA;
  --charcoal: #1F2937;
  --charcoal-dark: #111827;
  --charcoal-mid: #374151;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --border: #E5E7EB;
  --bg-light: #F9FAFB;
  --bg-section: #F3F4F6;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ==============================================
   GLOBAL REVEAL ANIMATIONS (Scroll Triggered)
   ============================================== */

/* Every element with [data-reveal] starts hidden */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal="left"] {
  transform: translateX(-50px);
}
[data-reveal="right"] {
  transform: translateX(50px);
}
[data-reveal="scale"] {
  transform: scale(0.92) translateY(20px);
}
[data-reveal="fade"] {
  transform: none;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.at-top {
  background: rgba(17, 24, 39, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.4s var(--ease);
  letter-spacing: -0.02em;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-img {
  height: 28px;
  width: auto;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.4rem; line-height: 1; }
.logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
  overflow: hidden;
}
.navbar.scrolled .nav-link { color: var(--gray); }

/* Underline slide animation on hover */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--orange) !important; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-nav-cta {
  display: inline-block;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1.5px solid var(--charcoal);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.navbar.at-top .btn-nav-cta {
  border-color: rgba(255,255,255,0.6);
  background: transparent;
  color: var(--white);
}
.btn-nav-cta:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s ease, background 0.4s;
}
.navbar.scrolled .hamburger span { background: var(--charcoal); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 32px;
}

.mobile-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  padding: 12px 40px;
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
  transition: color 0.25s, background 0.25s;
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.25s, background 0.25s, transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-link:hover { color: var(--orange); background: rgba(249,115,22,0.08); }

.btn-mobile-cta {
  display: block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  transition: background 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open .btn-mobile-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.btn-mobile-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ==============================================
   HERO SECTION
   ============================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* Ken Burns / zoom effect on load */
  animation: heroBgZoom 8s ease forwards;
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.72) 0%,
    rgba(31,41,55,0.5) 50%,
    rgba(15,23,42,0.68) 100%
  );
}

/* Side labels — slide in from edges */
.hero-side-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
  z-index: 2;
}
.hero-side-label.left {
  left: 40px;
  transform: translateY(-50%) rotate(180deg);
  animation: slideInLeft 1.2s 0.5s var(--ease) both;
}
.hero-side-label.right {
  right: 40px;
  animation: slideInRight 1.2s 0.5s var(--ease) both;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateY(-50%) rotate(180deg) translateX(-20px); }
  to   { opacity: 1; transform: translateY(-50%) rotate(180deg) translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Hero content — staggered fade-up on load */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.45);
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  animation: fadeUpIn 0.8s 0.2s var(--ease) both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  animation: fadeUpIn 0.9s 0.35s var(--ease) both;
}
.hero-title-accent { color: var(--orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUpIn 0.9s 0.5s var(--ease) both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUpIn 0.9s 0.65s var(--ease) both;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bounce scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUpIn 1s 1.2s var(--ease) both;
}
.scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 13px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 3px;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%        { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ==============================================
   BUTTONS
   ============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249,115,22,0.38);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
  white-space: nowrap;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--charcoal);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

.btn-view-details {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s, gap 0.3s;
}
.btn-view-details:hover { color: var(--orange); gap: 10px; }

.btn-enquire-sm {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid var(--border);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s;
}
.btn-enquire-sm:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(249,115,22,0.05);
  transform: translateY(-1px);
}

/* ==============================================
   TYPOGRAPHY HELPERS
   ============================================== */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.section-tag.light { color: rgba(255,255,255,0.5); }
.section-tag.orange-light { color: var(--orange); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}
.section-desc.light { color: rgba(255,255,255,0.6); }

.section-header.centered { text-align: center; margin-bottom: 64px; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ==============================================
   ABOUT SECTION — with Image Grid
   ============================================== */
.about-section {
  padding: 100px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-tag { margin-bottom: 8px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Stats */
.about-stats {
  margin-top: 40px;
}

.stat-primary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.stat-number {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-plus { font-size: 2.5rem; color: var(--orange); }
.stat-label { font-size: 0.9rem; color: var(--gray); font-weight: 500; }

.stat-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-item {}
.stat-number-sm {
  font-size: 2rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus-sm { font-size: 1.3rem; color: var(--orange); }
.stat-label-sm { font-size: 0.82rem; color: var(--gray); font-weight: 500; margin-top: 4px; }

/* Image grid — 2x2 */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.06); }

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

.services-header {
  margin-bottom: 16px;
}

.services-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.services-list { display: flex; flex-direction: column; }

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.service-item:first-child { border-top: 1px solid var(--border); }

/* Number on far right — large faded */
.service-num {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  justify-self: end;
  min-width: 24px;
  text-align: right;
  transition: color 0.3s;
}
.service-item:hover .service-num { color: var(--orange); }

/* Icon box */
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-section);
  border-radius: 10px;
  padding: 12px;
  flex-shrink: 0;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}
.service-icon svg { width: 100%; height: 100%; color: var(--charcoal); transition: color 0.35s; }
.service-item:hover .service-icon { background: var(--charcoal); transform: rotate(-5deg) scale(1.05); }
.service-item:hover .service-icon svg { color: var(--white); }

/* Service content */
.service-content { flex: 1; }
.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.service-item:hover .service-content h3 { color: var(--charcoal); }
.service-content p {
  font-size: 0.9rem;
  color: var(--orange);  /* original has orange text for description */
  line-height: 1.6;
  max-width: 540px;
}

/* Animated underline on hover */
.service-item::after {
  content: '';
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.4s var(--ease);
}
.service-item:hover::after { width: 100%; }

/* ==============================================
   FEATURED PROJECTS
   ============================================== */
.projects-section {
  padding: 100px 0;
  background: var(--bg-section);
}

/* 2-column grid for wider cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.project-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card:hover .project-card-image img { transform: scale(1.07); }

/* Overlay slides up from bottom */
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.project-card:hover .card-overlay { opacity: 1; transform: translateY(0); }

.btn-enquire-overlay {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.3s, transform 0.3s;
}
.btn-enquire-overlay:hover { background: var(--orange-dark); transform: scale(1.04); }

.project-type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(17,24,39,0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
.project-type-badge.commercial { background: rgba(249,115,22,0.85); }

.project-category-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,0.94);
  color: var(--charcoal);
  font-size: 12px; font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  transition: background 0.3s;
}
.project-category-badge.luxury { background: #7C3AED; color: var(--white); }

.project-card-body { padding: 22px 26px; }

.project-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 18px;
}
.loc-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }

.project-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.projects-cta { text-align: center; }

/* ==============================================
   LISTING SECTIONS (Residential / Commercial)
   ============================================== */
.listing-section {
  padding: 100px 0;
  background: var(--white);
}
.dark-section { background: var(--charcoal); }

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dark-card {
  background: var(--charcoal-mid);
  border-color: rgba(255,255,255,0.07);
}
.dark-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,0.5); }

.listing-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.listing-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.listing-card:hover .listing-img-wrapper img { transform: scale(1.07); }

.listing-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
}
.listing-badge.luxury { background: #7C3AED; color: var(--white); }
.listing-badge.premium-badge { background: var(--orange); color: var(--white); }

.listing-info { padding: 18px 20px; }
.listing-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.dark-card .listing-info h3 { color: var(--white); }
.listing-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.825rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.dark-card .listing-loc { color: rgba(255,255,255,0.55); }
.listing-actions { display: flex; justify-content: flex-end; }

/* ==============================================
   PRE-LAUNCH SECTION
   ============================================== */
.prelaunch-section {
  padding: 100px 0;
  background: var(--charcoal-dark);
  overflow: hidden;
}

.prelaunch-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prelaunch-content .section-tag { color: var(--orange); }
.prelaunch-content .section-title { color: var(--white); }
.prelaunch-content .section-desc { color: rgba(255,255,255,0.6); margin-bottom: 32px; max-width: 100%; }

.prelaunch-benefits { margin-bottom: 36px; display: flex; flex-direction: column; gap: 14px; }
.benefit-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}
.benefit-icon { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; }

/* Animated card stack */
.prelaunch-visual { display: flex; justify-content: center; }
.prelaunch-card-stack {
  position: relative;
  width: 340px; height: 380px;
  /* Float animation */
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.prelaunch-card {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
}
.card-back {
  background: rgba(249,115,22,0.15);
  transform: rotate(-7deg) translateY(16px);
  border: 1px solid rgba(249,115,22,0.1);
}
.card-mid {
  background: rgba(249,115,22,0.25);
  transform: rotate(-3deg) translateY(6px);
  border: 1px solid rgba(249,115,22,0.2);
}
.card-front {
  background: linear-gradient(135deg, #1e2d40, #2d3f56);
  border: 1px solid rgba(249,115,22,0.35);
  padding: 38px;
  display: flex; flex-direction: column; justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.coming-soon-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--orange);
  margin-bottom: 14px;
}
.prelaunch-card-title { font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.prelaunch-card-subtitle { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.prelaunch-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.prelaunch-card-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-size: 1.9rem; font-weight: 800; color: var(--orange); }
.stat-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ==============================================
   CONTACT SECTION
   ============================================== */
.contact-section {
  padding: 100px 0;
  background: var(--charcoal);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag { color: var(--orange); }
.contact-info .section-title { color: var(--white); }
.contact-desc {
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 44px;
  font-size: 1rem;
}

.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(249,115,22,0.1);
  border-radius: 10px;
  padding: 10px;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
}
.contact-detail-item:hover .contact-icon { background: rgba(249,115,22,0.2); transform: scale(1.08); }
.contact-icon svg { width: 100%; height: 100%; color: var(--orange); }
.detail-label {
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3px;
}
.detail-value { font-size: 0.95rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  transform: translateY(-1px);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-light); }
.form-group textarea { resize: vertical; min-height: 84px; }

.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  width: 100%;
}
.btn-form-submit svg { width: 20px; height: 20px; transition: transform 0.3s; }
.btn-form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(249,115,22,0.38);
}
.btn-form-submit:hover svg { transform: translateX(4px); }

.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success.show { display: block; animation: fadeUpIn 0.5s var(--ease); }
.success-icon {
  width: 68px; height: 68px;
  background: #D1FAE5; color: #059669;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; font-weight: 700;
  margin: 0 auto 20px;
  animation: popIn 0.5s 0.2s var(--ease) both;
}
@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.form-success h3 { font-size: 1.5rem; color: var(--charcoal); margin-bottom: 10px; }
.form-success p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: var(--charcoal-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 1.2rem; font-weight: 800;
  color: var(--white); margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.social-link svg { width: 17px; height: 17px; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.social-link:hover { background: var(--orange); transform: translateY(-3px); }
.social-link:hover svg { color: var(--white); }

.footer-links-col h4 {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links-col ul li a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.5;
}
.footer-contact-list li svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ==============================================
   BACK TO TOP BUTTON
   ============================================== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0; pointer-events: none;
  transform: translateY(20px) scale(0.8);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.back-to-top:hover { background: var(--orange-dark); transform: translateY(-4px) scale(1.08); }
.back-to-top svg { width: 22px; height: 22px; }

/* ==============================================
   RIPPLE EFFECT ON BUTTONS
   ============================================== */
.ripple-btn { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ==============================================
   PAGE PROGRESS BAR
   ============================================== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--orange), #FCD34D);
  z-index: 2000;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(249,115,22,0.6);
}

/* ==============================================
   CURSOR FOLLOWER
   ============================================== */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  top: 0; left: 0;
  display: none;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 2px solid rgba(249,115,22,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  top: 0; left: 0;
  display: none;
}
@media (pointer: fine) {
  .cursor-dot { display: block; }
  .cursor-ring { display: block; }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .prelaunch-inner { grid-template-columns: 1fr; }
  .prelaunch-visual { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --nav-height: 64px; }
  .container { padding: 0 20px; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-side-label { display: none; }
  .about-images { height: 300px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }

  .about-section, .services-section, .projects-section,
  .listing-section, .prelaunch-section, .contact-section { padding: 64px 0; }

  .section-header.centered { margin-bottom: 40px; }

  .service-item { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .service-icon { width: 44px; height: 44px; padding: 10px; }

  .projects-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline-white { text-align: center; justify-content: center; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-images { grid-template-columns: 1fr; height: 220px; }
}
