/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --color-bg: #faf8f5;
  --color-white: #ffffff;
  --color-gold: #c9a96e;
  --color-gold-light: #f0e6d3;
  --color-gold-dark: #b8955a;
  --color-text: #2c2c2c;
  --color-text-light: #6b6864;
  --color-text-muted: #99948c;
  --color-dark: #1a1a1a;
  --color-border: #e8e3dc;
  --color-footer-bg: #1a1a1a;
  --color-footer-text: #a09890;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3.25rem;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --header-height: 84px;
  --header-height-scrolled: 68px;
  --max-width: 1200px;

  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 1px 3px 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);
  --radius: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-dark);
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.section-label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  max-width: 640px;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ===== SECTION SPACING ===== */
.section {
  padding: var(--space-5xl) 0;
}

.section-alt {
  background: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-header.align-left {
  text-align: left;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

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

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  height: var(--header-height-scrolled);
  background: var(--color-white);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  gap: 2px;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition);
}

.logo-text {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.logo-text .logo-elenn {
  font-size: 13px;
  font-weight: 700;
  color: #1a3a6b;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.logo-text .logo-ventures {
  font-size: 10px;
  font-weight: 500;
  color: #1a3a6b;
  letter-spacing: 1px;
}

.scrolled .logo img {
  height: 34px;
}

@media (max-width: 992px) {
  .logo img {
    height: 34px;
  }
  .logo-text .logo-elenn {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .logo-text .logo-ventures {
    font-size: 9px;
  }
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-list > li > a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition);
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-list > li > a:hover {
  color: var(--color-gold);
}

.nav-list > li > a:hover::after {
  width: 100%;
}

/* Enquire Button */
.enquire-btn {
  padding: 10px 22px;
  font-size: var(--fs-xs);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== DROPDOWN ===== */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 2px;
  transition: transform var(--transition);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--color-white);
  min-width: 180px;
  padding: var(--space-sm) 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 100;
}

@media (min-width: 993px) {
  .has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }

  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown li a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-text);
  transition: all var(--transition);
}

.dropdown li a:hover {
  background: var(--color-gold-light);
  color: var(--color-gold-dark);
  padding-left: calc(var(--space-lg) + 4px);
}

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
    position: fixed;
    top: 16px;
    right: 24px;
    z-index: 1100;
  }

  .enquire-btn {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) var(--space-xl);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 1060;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
  }

  .nav-list > li {
    width: 100%;
    text-align: center;
  }

  .nav-list > li > a {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--fs-lg);
    border-bottom: 1px solid var(--color-border);
    width: 100%;
  }

  .nav-list > li > a::after {
    display: none;
  }

  /* Mobile Dropdown — accordion */
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    background: transparent;
  }

  .has-dropdown.dropdown-open .dropdown {
    max-height: 300px;
  }

  .dropdown li a {
    padding: var(--space-sm) 0;
    font-size: var(--fs-base);
    color: var(--color-text-light);
  }

  .dropdown li a:hover {
    background: transparent;
    color: var(--color-gold);
    padding-left: 0;
  }

  .dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    transition: transform var(--transition);
  }

  .has-dropdown.dropdown-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* Mobile enquire button inside nav */
  .main-nav .mobile-enquire {
    display: inline-flex;
    margin-top: var(--space-2xl);
    min-width: 200px;
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .mobile-enquire { display: none; }
}

/* Body scroll lock */
body.no-scroll {
  overflow: hidden;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-4xl) 0 0;
  font-size: var(--fs-sm);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.footer-social a svg,
.footer-social a img {
  width: 18px;
  height: 18px;
  transition: all var(--transition);
}

.footer-social a svg {
  fill: var(--color-footer-text);
}

.footer-social a:hover svg {
  fill: var(--color-white);
}

.footer-social a img {
  object-fit: contain;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  color: var(--color-footer-text);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-contact li a {
  font-weight: 500;
}

.footer-col address {
  line-height: 1.8;
  color: var(--color-footer-text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

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

/* Footer partners / RERA row */
.footer-partners {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.footer-partners img {
  height: 50px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer-partners img:hover {
  opacity: 1;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(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; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  :root {
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
    --fs-2xl: 1.75rem;
    --space-5xl: 5rem;
    --space-4xl: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --space-5xl: 4rem;
    --space-4xl: 3rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-partners {
    gap: var(--space-xl);
  }
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video,
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3xl);
  padding: var(--space-5xl) var(--space-xl);
}

.hero-text-center {
  max-width: 800px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-logos {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 14px;
  flex-shrink: 0;
}

.hero-logo-item {
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero-logo-item img {
  height: 144px;
  width: auto;
  display: block;
  object-fit: contain;
}

.hero-cta {
  font-size: var(--fs-sm);
  padding: 14px 36px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-xl);
  }

  .hero-title {
    font-size: var(--fs-2xl);
  }

  .hero-logos {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    gap: 8px;
  }

  .hero-logo-item {
    padding: 12px;
  }

  .hero-logo-item img {
    height: 96px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-text p {
  color: var(--color-text-light);
  font-size: var(--fs-md);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.about-text .btn {
  margin-top: var(--space-md);
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

.about-image-caption {
  text-align: center;
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== UPCOMING TEASER ===== */
.upcoming-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1100px;
  margin: var(--space-2xl) auto 0;
}

.upcoming-teaser-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.upcoming-teaser-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.upcoming-teaser-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.upcoming-teaser-content p {
  font-size: var(--fs-base);
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.upcoming-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.upcoming-highlight {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
}

.upcoming-highlight .highlight-icon {
  font-size: 1.2rem;
}

.upcoming-cta {
  background: var(--color-gold-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.upcoming-cta p {
  margin-bottom: var(--space-md);
  font-size: var(--fs-base);
}

@media (max-width: 768px) {
  .upcoming-teaser {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .upcoming-teaser-image img {
    height: 250px;
  }
  .upcoming-teaser-content h3 {
    font-size: var(--fs-xl);
  }
  .upcoming-highlights {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image {
    order: -1;
  }

  .about-text {
    order: 1;
  }
}

/* ===== PROJECTS SECTION ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

/* Project Card */
.project-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.project-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.project-status-tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  color: var(--color-white);
  z-index: 2;
}

.status-ongoing {
  background: #e8a838;
}

.status-launched {
  background: #2e8b57;
}

.status-upcoming {
  background: #4a6fa5;
}

.status-completed {
  background: #6b6864;
}

.project-card-arrow {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--color-dark);
  z-index: 2;
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(-8px);
}

.project-card:hover .project-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.project-card-arrow:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.project-card-arrow svg {
  width: 20px;
  height: 20px;
}

.project-card-body {
  padding: var(--space-xl);
}

.project-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.project-card-location {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.project-card-details {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.project-card-details li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--color-border);
}

.project-card-details li:last-child {
  border-bottom: none;
}

.project-card-details li span:first-child {
  color: var(--color-text-light);
  font-weight: 400;
}

.project-card-details li span:last-child {
  color: var(--color-text);
  font-weight: 500;
  text-align: right;
}

.project-card-actions {
  display: flex;
  gap: var(--space-sm);
}

.project-card-actions .btn {
  flex: 1;
  font-size: var(--fs-xs);
  padding: 10px 16px;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-arrow {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== GALLERY SECTION ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 32px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  opacity: 1;
}

body.lightbox-open {
  overflow: hidden;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 var(--space-md);
}

.testimonial-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-xl);
}

.testimonial-stars {
  font-size: var(--fs-xl);
  color: var(--color-gold);
  letter-spacing: 4px;
  margin-bottom: var(--space-md);
}

.testimonial-feeling {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-lg);
  padding: 4px 18px;
  background: var(--color-gold-light);
  border-radius: 20px;
}

.testimonial-quote {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.8;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-gold-light);
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-dark);
  font-size: var(--fs-base);
}

.testimonial-title {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: var(--fs-xl);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.testimonial-arrow:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

.testimonial-arrow-prev { left: 0; }
.testimonial-arrow-next { right: 0; }

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.testimonial-dot.active {
  background: var(--color-gold);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .testimonial-arrow {
    display: none;
  }

  .testimonial-card {
    padding: var(--space-xl) var(--space-sm);
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: var(--color-bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--space-xl);
}

.blog-card-date {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--color-dark);
  transition: color var(--transition);
}

.blog-card-title a:hover {
  color: var(--color-gold);
}

.blog-card-excerpt {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.blog-card-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--transition);
}

.blog-card-link:hover {
  gap: var(--space-sm);
}

.blog-card-link span {
  font-size: var(--fs-md);
  transition: transform var(--transition);
}

.blog-card-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT / LET'S CONNECT ===== */
.contact-section {
  background: var(--color-white);
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  margin-top: var(--space-2xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

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

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
}

.form-checkbox span {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 14px 28px;
  font-size: var(--fs-sm);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

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

.form-success .success-icon {
  font-size: 48px;
  color: #2e8b57;
  margin-bottom: var(--space-md);
}

.form-success h3 {
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--color-text-light);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.page-banner-short {
  min-height: 35vh;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.page-banner-blur .page-banner-bg {
  filter: blur(4px);
  -webkit-filter: blur(4px);
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.4) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.page-banner-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
}

/* ===== INTRO TEXT ===== */
.intro-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.9;
}

/* ===== PILLARS (Vision/Mission/Philosophy) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.pillar-card {
  background: var(--color-white);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  border-radius: 50%;
  color: var(--color-gold-dark);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

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

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-gold-light);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-3xl);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--color-gold);
  border: 3px solid var(--color-gold-light);
  border-radius: 50%;
  z-index: 2;
}

.timeline-content {
  width: calc(50% - var(--space-3xl));
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-banner {
    min-height: 40vh;
  }

  .page-banner-title {
    font-size: var(--fs-3xl);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 48px;
  }

  .timeline-dot {
    left: 20px;
    top: 24px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 100%;
    margin: 0;
    text-align: left;
  }

  .timeline-content {
    padding: var(--space-lg);
  }
}

/* ===== FOUNDER / ABOUT PAGE ===== */
.about-founder {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.founder-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.founder-role {
  font-size: var(--fs-sm);
  color: var(--color-gold-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.founder-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.founder-content .btn {
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .about-founder {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-image {
    max-width: 320px;
    margin: 0 auto;
  }
  .founder-content .btn {
    margin-top: var(--space-md);
  }
}

/* ===== BRANDS GRID ===== */
.brands-frosted {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: var(--space-2xl);
  max-width: 1000px;
  margin: var(--space-2xl) auto 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
}

.brand-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-item img {
  height: 96px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-lg);
}

.brand-item h4 {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.brand-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .brand-item img {
    height: 72px;
  }
}

/* ===== PROJECT GALLERY CAROUSEL ===== */
.project-gallery {
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  margin-top: var(--header-height);
}

.project-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.project-gallery-slide {
  flex: 0 0 100%;
  height: 100%;
}

.project-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 40%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.project-gallery-content {
  position: absolute;
  bottom: var(--space-4xl);
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-xl);
}

.project-gallery-title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.project-gallery-location {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 28px;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.gallery-arrow-prev { left: var(--space-xl); }
.gallery-arrow-next { right: var(--space-xl); }

.gallery-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.gallery-dots .g-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-dots .g-dot.active {
  background: var(--color-white);
  width: 28px;
  border-radius: 5px;
}

/* ===== PROJECT GALLERY GRID ===== */
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
  .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .gallery-grid-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .project-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid-item img {
    height: 200px;
  }
}

/* ===== PROJECT OVERVIEW ===== */
.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.project-header-location {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.project-header-rera {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.project-description {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 800px;
}

/* ===== DETAILS + AMENITIES ===== */
.detail-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.detail-block-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.detail-list {
  border-top: 1px solid var(--color-border);
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}

.detail-list li span:first-child {
  color: var(--color-text-light);
}

.detail-list li span:last-child {
  font-weight: 500;
  color: var(--color-text);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: box-shadow var(--transition);
}

.amenity-item:hover {
  box-shadow: var(--shadow-md);
}

.amenity-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ===== LOCATION MAP ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}

.map-placeholder p {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--color-text-light);
  margin: 0;
}

.map-placeholder span {
  font-size: var(--fs-xs);
}

.location-highlights h4 {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.landmark-list li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}

.landmark-list li span:first-child {
  color: var(--color-text);
}

.landmark-list li span:last-child {
  color: var(--color-gold-dark);
  font-weight: 500;
}

@media (max-width: 992px) {
  .project-gallery {
    height: 55vh;
    min-height: 360px;
  }

  .project-gallery-title {
    font-size: var(--fs-3xl);
  }

  .detail-amenities-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .project-gallery {
    height: 45vh;
    min-height: 300px;
  }

  .project-gallery-title {
    font-size: var(--fs-2xl);
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .gallery-arrow-prev { left: var(--space-sm); }
  .gallery-arrow-next { right: var(--space-sm); }

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

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-4xl);
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pagination-item:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.pagination-item.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.pagination-next {
  width: auto;
  padding: 0 var(--space-lg);
  gap: var(--space-xs);
}

/* ===== BLOG POST ===== */
.blog-post {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: var(--color-white);
}

.blog-post-header {
  max-width: 780px;
  margin: 0 auto var(--space-2xl);
}

.blog-post-back {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  transition: color var(--transition);
}

.blog-post-back:hover {
  color: var(--color-gold);
}

.blog-post-title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin: var(--space-md) 0 var(--space-lg);
}

.blog-post-meta {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.blog-post-featured {
  max-width: 900px;
  margin: 0 auto var(--space-3xl);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-post-featured img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-post-content p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.blog-post-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin: var(--space-3xl) 0 var(--space-md);
  color: var(--color-dark);
}

.blog-post-content ul {
  margin: var(--space-lg) 0;
  padding-left: var(--space-xl);
}

.blog-post-content ul li {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.blog-post-content ul li strong {
  color: var(--color-text);
}

.blog-post-content em {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .blog-post {
    padding-top: calc(var(--header-height) + var(--space-xl));
  }

  .blog-post-title {
    font-size: var(--fs-2xl);
  }

  .blog-post-content h2 {
    font-size: var(--fs-xl);
  }

  .blog-post-content {
    padding: 0;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page-section {
  background: var(--color-white);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.contact-page-info p {
  color: var(--color-text-light);
  line-height: 1.8;
}

.contact-info-blocks {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  border-radius: 50%;
  color: var(--color-gold-dark);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-block h4 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-info-block p,
.contact-info-block a {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-info-block a:hover {
  color: var(--color-gold);
}

.contact-page-image {
  margin-top: var(--space-2xl);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-page-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Contact Page Form */
.contact-form-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
}

.contact-form-alt .form-group input,
.contact-form-alt .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-form-alt .form-group input:focus,
.contact-form-alt .form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.contact-form-alt .form-group input::placeholder,
.contact-form-alt .form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form-alt .form-group {
  margin-bottom: var(--space-lg);
}

.contact-form-alt .form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form-alt .form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.contact-form-alt .form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-gold);
  padding: 0;
}

.contact-form-alt .form-checkbox span {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-form-alt .form-submit {
  width: 100%;
  padding: 14px 28px;
  font-size: var(--fs-sm);
}

/* Map */
.contact-map-section {
  padding-bottom: var(--space-4xl);
}

.contact-map {
  width: 100%;
  position: relative;
}

.contact-map iframe {
  display: block;
}

.map-office-address {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.95);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  max-width: 320px;
}

.map-office-address h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.map-office-address p {
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .contact-page-image {
    max-width: 500px;
  }
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-last-updated {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-content ul li {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.legal-content ul li strong {
  color: var(--color-text);
}

.legal-content a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

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

/* ===== SMALL MOBILE (375px and below) ===== */
@media (max-width: 420px) {
  :root {
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.35rem;
    --fs-xl: 1.2rem;
    --fs-lg: 1.1rem;
    --fs-md: 1rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero-content {
    padding: var(--space-3xl) var(--space-md);
  }

  .hero-subtitle {
    font-size: var(--fs-sm);
  }

  .project-card-body {
    padding: var(--space-lg);
  }

  .project-card-details li {
    font-size: var(--fs-xs);
    padding: var(--space-xs) 0;
  }

  .project-card-actions {
    flex-direction: column;
  }

  .blog-card-body {
    padding: var(--space-lg);
  }

  .blog-card-title {
    font-size: var(--fs-base);
  }

  .testimonial-card {
    padding: var(--space-lg) var(--space-sm);
  }

  .testimonial-quote {
    font-size: var(--fs-sm);
  }

  .page-banner-content {
    padding: var(--space-3xl) var(--space-md);
  }

  .pillar-card {
    padding: var(--space-xl) var(--space-lg);
  }

  .timeline-content {
    padding: var(--space-lg);
  }

  .contact-page-form .form-group input,
  .contact-page-form .form-group textarea {
    padding: 12px 14px;
    font-size: var(--fs-sm);
  }

  .contact-info-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .project-gallery-content {
    bottom: var(--space-2xl);
  }

  .legal-content {
    padding: 0;
  }

  .legal-content h2 {
    font-size: var(--fs-lg);
  }
}

/* ===== UTILITY ===== */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mt-4 { margin-top: var(--space-3xl); }
