/* ============================================
   PERK BANGLA LIMITED — Premium Real Estate
   White Theme Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --clr-bg: #FFFFFF;
  --clr-bg-alt: #F6F8F7;
  --clr-bg-warm: #FAFBFB;
  --clr-text: #121815;
  --clr-text-light: #35403B;
  --clr-text-lighter: #526059;
  --clr-green: #152621;
  --clr-green-light: #23423A;
  --clr-green-subtle: rgba(21, 38, 33, 0.05);
  --clr-gold: #6E4514;
  --clr-gold-light: #8A571B;
  --clr-gold-luminous: #DFC07A;
  --clr-border: #E2E6E4;
  --clr-white: #FFFFFF;
  --clr-overlay: rgba(21, 38, 33, 0.88);

  /* Deep Luxury Emerald WhatsApp Theme */
  --clr-whatsapp: #0F7355;
  --clr-whatsapp-hover: #0A5A42;
  --clr-whatsapp-dark: #074734;
  --clr-whatsapp-glow: rgba(15, 115, 85, 0.35);
  --clr-whatsapp-subtle: #E8F5F1;

  --ff-heading: 'DM Serif Display', serif;
  --ff-body: 'DM Sans', sans-serif;

  --fs-hero: clamp(2.5rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8125rem;

  --container-max: 1200px;
  --section-padding: clamp(60px, 8vw, 100px);
  --card-radius: 12px;
  --btn-radius: 6px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--clr-green);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Section --- */
.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--clr-bg-alt);
}

.section--dark {
  background: var(--clr-green);
  color: var(--clr-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--clr-text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-green);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--clr-green);
  border-radius: 2px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--btn-radius);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  line-height: 1;
}

.btn--green {
  background: var(--clr-green);
  color: var(--clr-white);
}

.btn--green:hover {
  background: var(--clr-green-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(21, 38, 33, 0.3);
}

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

.btn--gold:hover {
  background: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(135, 94, 38, 0.35);
}

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

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

.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--clr-white);
}

.btn--outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-green);
  border-color: var(--clr-white);
}

.btn--white {
  background: var(--clr-white);
  color: var(--clr-green);
}

.btn--white:hover {
  background: var(--clr-bg-alt);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 22px;
  font-size: var(--fs-small);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* WhatsApp Button — Deeper Luxury Green */
.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: #ffffff;
  border: none;
}

.btn--whatsapp:hover {
  background: var(--clr-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-whatsapp-glow);
  color: #ffffff;
}

.btn--whatsapp svg {
  fill: currentColor;
}

/* Direct Call Button — Crisp Architectural Style */
.btn--call {
  background: transparent;
  color: var(--clr-green);
  border: 1.5px solid var(--clr-green);
}

.btn--call:hover {
  background: var(--clr-green);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 38, 33, 0.22);
}

.btn--call svg {
  fill: none;
  stroke: currentColor;
}

/* --- Badge --- */
.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.badge--ongoing {
  background: var(--clr-green);
  color: var(--clr-white);
  box-shadow: 0 2px 8px rgba(21, 38, 33, 0.18);
}

.badge--upcoming {
  background: #F0F4F2;
  border: 1.5px solid var(--clr-green);
  color: var(--clr-green);
}

.badge--coming-soon {
  background: #FDF6EB;
  border: 1.5px solid #C88D38;
  color: #6E430B;
}

.badge--green {
  background: var(--clr-green-subtle);
  color: var(--clr-green);
  border: 1.5px solid rgba(21, 38, 33, 0.25);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

/* Default: transparent header on hero pages */
.header--transparent .header__logo {
  color: var(--clr-white);
}

.header--transparent .header__nav a {
  color: rgba(255,255,255,0.8);
}

.header--transparent .header__nav a:hover,
.header--transparent .header__nav a.active {
  color: var(--clr-white);
}

.header--transparent .header__hamburger span {
  background: var(--clr-white);
}

/* Light header for inner pages */
.header--light .header__logo {
  color: var(--clr-green);
}

.header--light .header__nav a {
  color: var(--clr-text-light);
}

.header--light .header__nav a:hover,
.header--light .header__nav a.active {
  color: var(--clr-green);
}

.header--light .header__nav a::after {
  background: var(--clr-green);
}

.header--light .header__hamburger span {
  background: var(--clr-green);
}

/* Scrolled state — always white frosted glass */
.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header.scrolled .header__logo {
  color: var(--clr-green);
}

.header.scrolled .header__nav a {
  color: var(--clr-text-light);
}

.header.scrolled .header__nav a:hover,
.header.scrolled .header__nav a.active {
  color: var(--clr-green);
}

.header.scrolled .header__nav a::after {
  background: var(--clr-green);
}

.header.scrolled .header__hamburger span {
  background: var(--clr-green);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  color: var(--clr-green);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
}

.header__logo .emblem,
.emblem {
  display: none !important;
}

.header__logo span {
  font-weight: 300;
  opacity: 0.85;
  margin-left: 4px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-green);
  transition: var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--clr-green);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

/* Header Actions & Call Button */
.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(21, 38, 33, 0.22);
  color: var(--clr-green) !important;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  position: relative;
}

.header__call-btn::after,
.header__call-btn:hover::after,
.header__call-btn::before,
.header__call-btn:hover::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.header__call-btn span {
  color: inherit !important;
  transition: color 0.3s ease;
}

.header__call-btn svg {
  width: 14px;
  height: 14px;
  color: inherit !important;
  fill: none !important;
  stroke: currentColor !important;
  transition: transform 0.3s ease, color 0.3s ease;
}

.header__call-btn:hover {
  background: var(--clr-green) !important;
  color: var(--clr-white) !important;
  border-color: var(--clr-green) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(21, 38, 33, 0.15);
  text-decoration: none !important;
}

.header__call-btn:hover span {
  color: var(--clr-white) !important;
}

.header__call-btn:hover svg {
  color: var(--clr-white) !important;
  stroke: var(--clr-white) !important;
  transform: rotate(15deg);
}

.header.scrolled .header__call-btn:hover,
.header--light .header__call-btn:hover {
  color: var(--clr-white) !important;
}

.header.scrolled .header__call-btn:hover span,
.header--light .header__call-btn:hover span {
  color: var(--clr-white) !important;
}

/* Mobile hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-green);
  transition: var(--transition);
  border-radius: 2px;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--clr-green);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu a:hover {
  color: var(--clr-green-light);
}

.mobile-menu__call {
  margin-top: 16px;
  padding: 12px 24px;
  background: var(--clr-green);
  color: var(--clr-white) !important;
  border-radius: 50px;
  font-size: 1rem !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--clr-green);
}

.mobile-menu__call:hover {
  background: var(--clr-green-light) !important;
}

/* ============================================
   HOME HERO — Light Architectural Editorial
   ============================================ */
.hero-light {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F8F7 100%);
  padding: clamp(120px, 14vw, 160px) 0 clamp(60px, 8vw, 90px);
  border-bottom: 1px solid var(--clr-border);
  overflow: hidden;
}

.hero-light::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 38, 33, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.hero-light__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
}

.hero-light__content {
  position: relative;
  z-index: 2;
}

.hero-light__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--clr-green-subtle);
  border: 1.5px solid rgba(21, 38, 33, 0.15);
  border-radius: 50px;
  color: var(--clr-green);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-light__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-green);
  border-radius: 50%;
}

.hero-light__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.6rem, 4.5vw, 4.1rem);
  color: var(--clr-green);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.hero-light__subtitle {
  font-size: 1.125rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-light__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}


/* Right: Architectural Daylight Elevation Showcase */
.hero-light__visual {
  position: relative;
}

.hero-light__card {
  position: relative;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(21, 38, 33, 0.08);
  height: 520px;
  overflow: hidden;
  background: var(--clr-bg-alt);
}

.hero-light__img,
.hero-light__building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.hero-light__card:hover .hero-light__img,
.hero-light__card:hover .hero-light__building-img {
  transform: scale(1.03);
}

/* Floating Status Tag */
.hero-light__tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(21, 38, 33, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-light__tag-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
  flex-shrink: 0;
}

.hero-light__tag strong {
  display: block;
  font-size: var(--fs-small);
  color: var(--clr-green);
  line-height: 1.2;
}

.hero-light__tag span {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  display: block;
}

/* Top Handover Badge */
.hero-light__handover-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--clr-green);
  color: var(--clr-white);
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: 0 4px 16px rgba(21, 38, 33, 0.2);
  text-align: right;
  z-index: 3;
}

.hero-light__handover-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-light__handover-badge span {
  font-size: 0.7rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   INNER PAGE HERO — Clean White
   ============================================ */
.page-hero {
  padding: clamp(120px, 15vw, 180px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
  background: var(--clr-bg-alt);
  border-bottom: 1px solid var(--clr-border);
}

.page-hero .badge {
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: var(--fs-h1);
  color: var(--clr-green);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--clr-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   ONGOING PROJECT SHOWCASE (Home)
   ============================================ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase__image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.showcase__image:hover img {
  transform: scale(1.03);
}

.showcase__content h3 {
  font-size: var(--fs-h2);
  margin-bottom: 8px;
}

.showcase__location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  margin-bottom: 20px;
}

.showcase__location svg {
  width: 16px;
  height: 16px;
  color: var(--clr-green);
  fill: var(--clr-green);
}

.showcase__content p {
  margin-bottom: 24px;
  color: var(--clr-text-light);
  line-height: 1.8;
}

.showcase__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.showcase__spec {
  text-align: center;
  padding: 16px 12px;
  background: var(--clr-bg-alt);
  border-radius: 8px;
}

.showcase__spec-value {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--clr-green);
  margin-bottom: 4px;
}

.showcase__spec-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Video Section */
.video-section {
  margin-top: 60px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--clr-green);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  background: linear-gradient(135deg, var(--clr-green), #0d1a14);
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  color: rgba(255,255,255,0.9);
}

.video-placeholder .play-circle {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-placeholder:hover .play-circle {
  border-color: var(--clr-gold-luminous);
  background: rgba(255,255,255,0.05);
}

.video-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--clr-white);
  margin-left: 4px;
}

.video-placeholder span {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================
   SLOGAN
   ============================================ */
.slogan {
  text-align: center;
  padding: clamp(40px, 6vw, 80px) 24px;
}

.slogan p {
  font-family: var(--ff-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--clr-text-light);
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.slogan .text-green {
  color: var(--clr-green);
}

/* ============================================
   CARDS — Projects / Features
   ============================================ */

/* Project Cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--clr-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid var(--clr-border);
  text-decoration: none;
  display: block;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.project-card__body {
  padding: 28px 24px;
}

.project-card__name {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
}

.project-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  margin-bottom: 12px;
}

.project-card__location svg {
  width: 14px;
  height: 14px;
  color: var(--clr-green);
  fill: var(--clr-green);
  flex-shrink: 0;
}

.project-card__size {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin-bottom: 16px;
}

.project-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--clr-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
}

.project-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.project-card:hover .project-card__cta svg {
  transform: translateX(4px);
}

/* Properties page — 2x2 grid */
.projects-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Feature / Why Us Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--card-radius);
  transition: var(--transition);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card__number {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  color: var(--clr-green);
  margin-bottom: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-green-subtle);
  color: var(--clr-green);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
  color: var(--clr-green);
}

.feature-card p {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* ============================================
   CHAIRMAN MESSAGE
   ============================================ */
.chairman {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.chairman__content {
  position: relative;
}

.chairman__quote-mark {
  font-family: var(--ff-heading);
  font-size: 6rem;
  color: var(--clr-green);
  opacity: 0.12;
  line-height: 1;
  position: absolute;
  top: -20px;
  left: -10px;
}

.chairman__text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--clr-text-light);
  margin-bottom: 32px;
  padding-top: 40px;
  font-style: italic;
}

.chairman__name {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  color: var(--clr-green);
  margin-bottom: 4px;
}

.chairman__title {
  font-size: var(--fs-small);
  color: var(--clr-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.chairman__image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.chairman__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

/* ============================================
   PROJECT OVERVIEW (Property Detail)
   ============================================ */
.overview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.overview-heading {
  font-size: var(--fs-h2);
  margin-bottom: 8px;
}

.overview-divider {
  width: 60px;
  height: 3px;
  background: var(--clr-green);
  border-radius: 2px;
  margin-bottom: 32px;
}

.overview-table {
  display: flex;
  flex-direction: column;
}

.overview-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--clr-border);
}

.overview-row:last-child {
  border-bottom: none;
}

.overview-label {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overview-value {
  font-weight: 600;
  color: var(--clr-text);
  text-align: right;
}

.overview-image-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FLAT VARIANT CARDS (Property Detail)
   ============================================ */
.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.unit-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.unit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clr-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.unit-card:hover {
  border-color: var(--clr-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.unit-card__type {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  color: var(--clr-green);
  margin-bottom: 4px;
}

.unit-card__desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-light);
  margin-bottom: 20px;
}

.unit-card__size {
  font-family: var(--ff-heading);
  font-size: 1.85rem;
  color: var(--clr-green);
  margin-bottom: 20px;
  line-height: 1.1;
}

.unit-card__size span {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  font-weight: 600;
}

.unit-card__specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.unit-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  color: var(--clr-text);
}

.unit-card__spec svg {
  width: 16px;
  height: 16px;
  color: var(--clr-green);
  stroke: var(--clr-green);
}

.unit-card__click-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--clr-border);
  font-size: var(--fs-xs);
  color: var(--clr-green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.unit-card__click-hint svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   MODAL (Unit Detail / Floor Plan)
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--clr-white);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: all 0.3s ease;
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--clr-bg-alt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.modal__close:hover {
  background: var(--clr-border);
}

.modal__close svg {
  width: 18px;
  height: 18px;
  color: var(--clr-text);
}

.modal__image {
  width: 100%;
  height: 280px;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  padding: 32px;
}

.modal__image svg {
  width: 100%;
  height: 100%;
}

.modal__body {
  padding: 32px;
}

.modal__title {
  font-size: var(--fs-h3);
  margin-bottom: 4px;
}

.modal__subtitle {
  color: var(--clr-text-light);
  font-size: var(--fs-small);
  margin-bottom: 24px;
}

.modal__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.modal__spec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--clr-bg-alt);
  border-radius: 8px;
}

.modal__spec svg {
  width: 18px;
  height: 18px;
  color: var(--clr-green);
  flex-shrink: 0;
}

.modal__spec-text {
  font-size: var(--fs-small);
}

.modal__spec-text strong {
  display: block;
  color: var(--clr-green);
}

.modal__features {
  margin-bottom: 24px;
}

.modal__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: var(--fs-small);
  color: var(--clr-text-light);
}

.modal__features li svg {
  width: 16px;
  height: 16px;
  color: var(--clr-green);
  flex-shrink: 0;
}

.modal__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(21, 38, 33, 0.3);
}

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

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

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
  color: var(--clr-white);
}

.lightbox__image {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 8px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--clr-white);
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__nav svg {
  width: 24px;
  height: 24px;
}

.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story__content h3 {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
}

.about-story__content p {
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Mission / Vision */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  padding: 48px 40px;
  border-radius: var(--card-radius);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
  background: var(--clr-white);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--clr-green);
}

.mv-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--clr-text-light);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-green);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background: var(--clr-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(21, 38, 33, 0.08);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-info-card {
  background: var(--clr-green);
  border-radius: var(--card-radius);
  padding: 40px 36px;
  color: var(--clr-white);
  height: fit-content;
}

.contact-info-card h3 {
  color: var(--clr-white);
  font-size: var(--fs-h3);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-info-item:last-of-type {
  margin-bottom: 32px;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold-luminous);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-item__label {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.contact-info-item p {
  color: rgba(255,255,255,0.85);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin: 0;
}

.contact-info-item a {
  color: rgba(255,255,255,0.85);
}

.contact-info-item a:hover {
  color: var(--clr-gold-luminous);
}

/* Call Sales Desk button inside dark Contact Card */
.contact-info-card .btn--call,
.contact-info-card__call-btn {
  background: #ffffff !important;
  color: var(--clr-green) !important;
  border: 1.5px solid #ffffff !important;
  font-weight: 600;
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-info-card .btn--call svg,
.contact-info-card__call-btn svg {
  color: var(--clr-green) !important;
  stroke: var(--clr-green) !important;
  transition: transform 0.3s ease;
}

.contact-info-card .btn--call:hover,
.contact-info-card__call-btn:hover {
  background: #f0f3f2 !important;
  color: var(--clr-green) !important;
  border-color: #f0f3f2 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.contact-info-card .btn--call:hover svg,
.contact-info-card__call-btn:hover svg {
  color: var(--clr-green) !important;
  stroke: var(--clr-green) !important;
  transform: scale(1.1);
}

.contact-info-card .btn--whatsapp,
.contact-info-card__whatsapp-btn {
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.contact-info-card .btn--whatsapp:hover,
.contact-info-card__whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--clr-whatsapp-glow);
}

/* Map container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--clr-bg-alt);
  margin-top: 60px;
}

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

/* Form success message */
.form-success {
  text-align: center;
  padding: 40px 24px;
  display: none;
}

.form-success.active {
  display: block;
}

.form-success h3 {
  font-size: var(--fs-h3);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--clr-text-light);
  margin-bottom: 24px;
}

/* ============================================
   BOOKING / VISIT FORM (Property Pages)
   ============================================ */
.booking-section {
  background: var(--clr-bg-alt);
  border-radius: var(--card-radius);
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid var(--clr-border);
}

.booking-section h2 {
  margin-bottom: 8px;
}

.booking-section > p {
  color: var(--clr-text-light);
  margin-bottom: 32px;
  max-width: 600px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.booking-form-grid .full-width {
  grid-column: 1 / -1;
}

/* --- Booking Form Submit & Quick Channel --- */
.booking-form__submit-wrap {
  margin-top: 24px;
}

.booking-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 8px;
  letter-spacing: 0.3px;
}

.booking-submit-btn svg {
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.booking-submit-btn:hover svg {
  transform: translateX(4px);
}

.booking-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0 20px;
  color: var(--clr-text-lighter);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.booking-divider::before,
.booking-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--clr-border);
}

.booking-divider span {
  padding: 0 16px;
}

.booking-quick-channel {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-quick-channel:hover {
  border-color: rgba(15, 115, 85, 0.4);
  box-shadow: var(--shadow-sm);
}

.booking-quick-channel__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-quick-channel__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--clr-green);
  background: var(--clr-green-subtle);
  border: 1px solid rgba(21, 38, 33, 0.12);
  padding: 3px 8px;
  border-radius: 4px;
}

.booking-quick-channel__text {
  font-size: var(--fs-small);
  color: var(--clr-text-light);
  margin: 0;
  line-height: 1.4;
}

.booking-quick-channel__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.booking-quick-channel__actions .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .booking-quick-channel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
  }

  .booking-quick-channel__badge {
    margin: 0 auto;
  }

  .booking-quick-channel__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .booking-quick-channel__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================
   FLAT TABLE (Property Detail)
   ============================================ */
.flats-table-wrap {
  overflow-x: auto;
  border-radius: var(--card-radius);
  border: 1px solid var(--clr-border);
}

.flats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}

.flats-table thead {
  background: var(--clr-green);
  color: var(--clr-white);
}

.flats-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flats-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.flats-table td:last-child {
  color: var(--clr-green);
  font-weight: 700;
  transition: var(--transition);
}

.flats-table tbody tr:hover td:last-child {
  color: var(--clr-green-light);
  text-decoration: underline;
}

.flats-table tbody tr {
  cursor: pointer;
  transition: var(--transition);
}

.flats-table tbody tr:hover {
  background: var(--clr-green-subtle);
}

.flats-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-green);
  color: var(--clr-white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand-logo {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  color: var(--clr-white);
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 4px;
}

.footer__brand-logo .emblem {
  display: none !important;
}

.footer__brand-logo span {
  font-weight: 300;
  opacity: 0.85;
  margin-left: 4px;
}

.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-gold-luminous);
  margin-bottom: 24px;
}

.footer__links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-small);
  padding: 6px 0;
}

.footer__links a:hover {
  color: var(--clr-white);
  padding-left: 4px;
}

.footer__links .badge--ongoing {
  font-size: 0.625rem;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-small);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-gold-luminous);
  flex-shrink: 0;
  margin-top: 3px;
  fill: var(--clr-gold-luminous);
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
}

.footer__contact-item a:hover {
  color: var(--clr-white);
}

.footer__wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.footer__wa-pill:hover {
  background: var(--clr-whatsapp-hover);
  box-shadow: 0 4px 16px var(--clr-whatsapp-glow);
  transform: translateY(-1px);
}

.footer__wa-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom a {
  color: rgba(255,255,255,0.75);
}

.footer__bottom a:hover {
  color: var(--clr-white);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

/* ============================================
   SMART FLOATING WHATSAPP CONCIERGE WIDGET
   ============================================ */
.whatsapp-widget-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 950;
  font-family: var(--ff-body);
}

/* Floating Launcher Button */
.whatsapp-float {
  position: relative;
  width: 58px;
  height: 58px;
  background: var(--clr-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px var(--clr-whatsapp-glow);
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: var(--clr-whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(15, 115, 85, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.whatsapp-tooltip {
  display: none !important;
}

.whatsapp-float:hover svg {
  transform: scale(1.05);
}

/* Pulse Animation Ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  z-index: -1;
  animation: whatsappPulse 2.4s infinite;
  opacity: 0.35;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.35; }
  70% { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Online Badge Dot on Launcher */
.whatsapp-float__status {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 14px;
  height: 14px;
  background: #25D366;
  border: 2.5px solid #ffffff;
  border-radius: 50%;
}

/* Smart Contextual Teaser Tooltip (Nudge) */
.whatsapp-teaser {
  position: absolute;
  bottom: 72px;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(21, 38, 33, 0.12);
  padding: 12px 16px 12px 14px;
  width: 270px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.whatsapp-teaser.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-teaser__avatar {
  width: 28px;
  height: 28px;
  background: var(--clr-green);
  color: var(--clr-gold-luminous);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.whatsapp-teaser__content {
  flex: 1;
  font-size: 0.82rem;
  color: var(--clr-text);
  line-height: 1.35;
  cursor: pointer;
}

.whatsapp-teaser__content strong {
  color: var(--clr-green);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.whatsapp-teaser__close {
  background: transparent;
  border: none;
  color: var(--clr-text-lighter);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  margin-top: -2px;
  transition: color 0.2s;
}

.whatsapp-teaser__close:hover {
  color: var(--clr-text);
}

/* Smart Concierge Interactive Card */
.whatsapp-card {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 350px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 24px 64px rgba(21, 38, 33, 0.16);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 960;
}

.whatsapp-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Card Header */
.whatsapp-card__header {
  background: linear-gradient(135deg, #152621 0%, #1d3830 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-card__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-card__avatar {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid var(--clr-gold-luminous);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  color: var(--clr-gold-luminous);
  flex-shrink: 0;
}

.whatsapp-card__avatar-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  background: #25D366;
  border: 2px solid #152621;
  border-radius: 50%;
}

.whatsapp-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.whatsapp-card__status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-card__status-dot {
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
}

.whatsapp-card__close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.whatsapp-card__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Card Body */
.whatsapp-card__body {
  background: #F6F8F7;
  padding: 16px;
}

.whatsapp-card__bubble {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(21, 38, 33, 0.04);
}

.whatsapp-card__bubble-sender {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--clr-green);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-card__bubble-text {
  font-size: 0.85rem;
  color: var(--clr-text);
  line-height: 1.45;
  margin-bottom: 6px;
}

.whatsapp-card__bubble-time {
  font-size: 0.68rem;
  color: var(--clr-text-lighter);
  text-align: right;
}

/* Quick Prompt Action Chips */
.whatsapp-card__chips-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--clr-text-light);
  font-weight: 700;
  margin-bottom: 8px;
}

.whatsapp-card__chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.whatsapp-card__chip {
  background: #ffffff;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 0.8rem;
  color: var(--clr-text);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.whatsapp-card__chip:hover {
  background: var(--clr-whatsapp-subtle);
  border-color: var(--clr-whatsapp);
  color: var(--clr-whatsapp);
  transform: translateX(3px);
}

.whatsapp-card__chip svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Message Composer */
.whatsapp-card__footer {
  background: #ffffff;
  border-top: 1px solid var(--clr-border);
  padding: 12px 14px;
}

.whatsapp-card__form {
  display: flex;
  gap: 8px;
}

.whatsapp-card__input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.whatsapp-card__input:focus {
  border-color: var(--clr-whatsapp);
}

.whatsapp-card__send-btn {
  background: var(--clr-whatsapp);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.whatsapp-card__send-btn:hover {
  background: var(--clr-whatsapp-hover);
  transform: scale(1.05);
}

.whatsapp-card__send-btn svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ============================================
   HERO ENTRANCE ANIMATIONS
   ============================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.hero-light__badge,
.hero-light__title,
.hero-light__subtitle,
.hero-light__actions {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-light__badge   { animation-delay: 0.15s; }
.hero-light__title   { animation-delay: 0.3s; }
.hero-light__subtitle { animation-delay: 0.45s; }
.hero-light__actions { animation-delay: 0.6s; }

.hero-light__card {
  opacity: 0;
  animation: heroScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-light__tag,
.hero-light__handover-badge {
  opacity: 0;
  animation: heroTagSlide 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

/* Page hero entrance for inner pages */
@keyframes pageHeroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero .badge,
.page-hero h1,
.page-hero p {
  opacity: 0;
  animation: pageHeroFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero .badge { animation-delay: 0.1s; }
.page-hero h1     { animation-delay: 0.25s; }
.page-hero p      { animation-delay: 0.4s; }

/* ============================================
   PULSING "LIVE" BADGE DOTS
   ============================================ */
@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.4;
  }
}

.hero-light__badge-dot {
  animation: dotPulse 2.2s ease-in-out infinite;
}

.hero-light__tag-dot {
  animation: dotPulse 2s ease-in-out infinite;
}

.badge--ongoing::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  margin-right: 6px;
  animation: dotPulse 2s ease-in-out infinite;
  vertical-align: middle;
}

/* ============================================
   FEATURE CARD BREATHING HOVER
   ============================================ */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(21, 38, 33, 0.1), 0 4px 12px rgba(21, 38, 33, 0.06);
  border-color: rgba(21, 38, 33, 0.08);
}

.feature-card__number {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.feature-card:hover .feature-card__number {
  transform: scale(1.08);
}

/* ============================================
   CTA ARROW NUDGE ON HOVER
   ============================================ */
@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.btn--green:hover svg,
.btn--gold:hover svg {
  animation: arrowNudge 0.8s ease infinite;
}

.project-card:hover .project-card__cta svg {
  animation: arrowNudge 0.8s ease infinite;
}

/* ============================================
   CHAIRMAN QUOTE-MARK ENTRANCE
   ============================================ */
@keyframes quoteFloat {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 0.12;
    transform: translateY(0);
  }
}

.chairman.visible .chairman__quote-mark,
.reveal.visible .chairman__quote-mark {
  animation: quoteFloat 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.chairman__quote-mark {
  opacity: 0;
}

/* ============================================
   SECTION LABEL DOT PULSE
   ============================================ */
@keyframes labelDotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.section-label::before {
  animation: labelDotPulse 2.8s ease-in-out infinite;
}

/* ============================================
   FORM INPUT FOCUS GLOW
   ============================================ */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 4px rgba(21, 38, 33, 0.06), 0 0 20px rgba(21, 38, 33, 0.04);
}

/* ============================================
   FOOTER LINK SLIDE-IN UNDERLINE
   ============================================ */
.footer__links a {
  position: relative;
  display: block;
  padding: 6px 0;
  width: fit-content;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__links a:hover::after {
  width: 100%;
}

/* ============================================
   ANIMATED COUNTER NUMBER STYLE
   ============================================ */
.showcase__spec-value[data-count] {
  display: inline-block;
  min-width: 1.5ch;
}

/* ============================================
   PARALLAX HERO (JS-controlled)
   ============================================ */
.hero-light__card {
  will-change: transform;
}

/* ============================================
   SMOOTH IMAGE REVEAL ON LOAD
   ============================================ */
@keyframes imgReveal {
  from {
    opacity: 0;
    filter: blur(4px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-light__img,
.hero-light__building-img {
  animation: imgReveal 0.8s ease 0.3s both;
}

/* ============================================
   SHOWCASE SPEC HOVER MICRO-INTERACTION
   ============================================ */
.showcase__spec {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.showcase__spec:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(21, 38, 33, 0.08);
  background: var(--clr-white);
}

/* ============================================
   UNIT CARD CLICK HINT ARROW BOUNCE
   ============================================ */
@keyframes hintBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.unit-card:hover .unit-card__click-hint svg {
  animation: hintBounce 0.6s ease infinite;
}

/* ============================================
   MV-CARD (MISSION/VISION) LEFT BAR GROW
   ============================================ */
.mv-card::before {
  height: 0;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-card.visible::before,
.reveal.visible .mv-card::before,
.reveal.visible ~ .mv-card::before {
  height: 100%;
}

/* Direct visibility for MV cards in viewport */
.mv-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.mv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-card.visible::before {
  height: 100%;
}

/* ============================================
   PLAY BUTTON PULSE (VIDEO SECTION)
   ============================================ */
@keyframes playPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.video-placeholder .play-circle {
  animation: playPulse 2.5s ease-in-out infinite;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-green { color: var(--clr-green); }
.text-gold { color: var(--clr-gold); }
.mb-0 { margin-bottom: 0; }
.mt-40 { margin-top: 40px; }

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-light__badge,
  .hero-light__title,
  .hero-light__subtitle,
  .hero-light__actions,
  .hero-light__card,
  .hero-light__tag,
  .hero-light__handover-badge,
  .page-hero .badge,
  .page-hero h1,
  .page-hero p,
  .chairman__quote-mark,
  .mv-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .mv-card::before {
    height: 100% !important;
  }
}

/* ============================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-light__grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .hero-light__visual {
    order: -1;
    width: 100%;
  }

  .hero-light__content {
    order: 1;
    width: 100%;
  }

  .hero-light__card {
    height: 400px;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .showcase__image {
    height: 380px;
    width: 100%;
  }

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

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

  .chairman {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-split {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .booking-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================ */
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }

  .header__call-btn span {
    display: none;
  }

  .header__call-btn {
    padding: 8px;
    border-radius: 50%;
  }

  .header__call-btn svg {
    width: 15px;
    height: 15px;
  }

  .hero-light {
    padding: 115px 0 48px;
  }

  .hero-light__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .hero-light__visual {
    order: -1;
    width: 100%;
  }

  .hero-light__content {
    order: 1;
    width: 100%;
  }

  .hero-light__badge {
    margin-bottom: 16px;
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero-light__title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-light__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .hero-light__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero-light__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-light__card {
    height: 290px;
    border-radius: 16px;
  }

  .hero-light__tag {
    bottom: 12px;
    left: 12px;
    right: auto;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: 10px;
  }

  .hero-light__tag strong {
    font-size: 0.8rem;
  }

  .hero-light__tag span {
    font-size: 0.68rem;
  }

  .hero-light__handover-badge {
    top: 12px;
    right: 12px;
    padding: 6px 10px;
    border-radius: 8px;
  }

  .hero-light__handover-badge strong {
    font-size: 0.75rem;
  }

  .hero-light__handover-badge span {
    font-size: 0.65rem;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .page-hero {
    padding: 100px 0 40px;
  }

  .showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .showcase__image {
    height: 280px;
    width: 100%;
    border-radius: 16px;
  }

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

  .showcase__content h3 {
    font-size: 1.85rem;
    margin-bottom: 6px;
  }

  .showcase__location {
    margin-bottom: 16px;
    font-size: 0.85rem;
  }

  .showcase__content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .showcase__specs {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
  }

  .showcase__spec {
    padding: 12px 6px;
    text-align: center;
    border-radius: 8px;
  }

  .showcase__spec-value {
    font-size: 1.15rem;
  }

  .showcase__spec-label {
    font-size: 0.65rem;
    letter-spacing: 0.4px;
  }

  .showcase__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .showcase__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .modal__image {
    height: 220px;
  }

  .lightbox__image {
    max-width: 95vw;
  }

  .lightbox__prev { left: 12px; }
  .lightbox__next { right: 12px; }

  .whatsapp-widget-wrap {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .whatsapp-card {
    width: calc(100vw - 32px);
    right: 0;
    bottom: 64px;
  }

  .whatsapp-teaser {
    display: none;
  }

  .map-container {
    height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .chairman__image img {
    height: 350px;
  }

  .booking-section {
    padding: 32px 20px;
  }

  /* Contact Form Submit Button Full Width on Mobile */
  .contact-submit-btn,
  #contact-form button[type="submit"],
  .form-wrapper button[type="submit"],
  .form-success .btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
