/* ============================================================
   ACCOCCA DEVELOPERS – Premium Professional Design System
   Completely New Look | High-End Real Estate UI
   Security-conscious static site + refined animations
   ============================================================ */

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

:root {
  /* Color Palette – Deep Navy + Warm Gold */
  --navy: #0b1d33;
  --navy-deep: #071427;
  --navy-light: #12294a;
  --gold: #c9a24b;
  --gold-light: #e8d5a3;
  --gold-dark: #a8842e;
  --off-white: #f7f5f0;
  --white: #ffffff;
  --charcoal: #1c1c1c;

  /* WCAG AA Compliant Muted Text */
  --text-muted-dark: #a9b3c2;
  --text-muted-light: #5a6575;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 16px rgba(7, 20, 39, 0.06);
  --shadow-md: 0 12px 40px rgba(7, 20, 39, 0.1);
  --shadow-lg: 0 24px 60px rgba(7, 20, 39, 0.14);
  --shadow-gold: 0 10px 28px rgba(201, 162, 75, 0.28);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.35s var(--ease);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-deep);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2rem);
}

/* ========== HEADER / NAV ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 29, 51, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.25rem, 5vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--off-white);
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.logo-text span {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 1px;
}

.logo-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links > li > a {
  color: rgba(247, 245, 240, 0.9);
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links > li > a:hover::after,
.nav-links > li > a:focus::after,
.nav-links > li > a.active::after {
  width: 100%;
}

.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.active {
  color: var(--gold-light);
  outline: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 280px;
  padding-top: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
  z-index: 100;
}

.dropdown-menu-inner {
  background: var(--navy-deep);
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 6px;
  padding: 0.5rem 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(6px);
  transition: transform 0.25s var(--ease);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown:hover .dropdown-menu-inner,
.dropdown:focus-within .dropdown-menu-inner {
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.35rem;
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: rgba(201, 162, 75, 0.1);
  color: var(--gold-light);
  padding-left: 1.5rem;
}

.dropdown-menu a.active {
  color: var(--gold);
}

.dropdown-caret {
  font-size: 0.58rem;
  margin-left: 5px;
  opacity: 0.75;
  transition: transform 0.3s var(--ease);
  display: inline-block;
}

.dropdown:hover .dropdown-caret,
.dropdown:focus-within .dropdown-caret {
  transform: rotate(180deg);
}

/* Mobile Toggle — Premium gold-badge menu button */
.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(201, 162, 75, 0.4), 0 0 0 1px rgba(201, 162, 75, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.35s ease;
}

.menu-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 75, 0.45);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 26px rgba(201, 162, 75, 0.55), 0 0 0 1px rgba(201, 162, 75, 0.2);
  outline: none;
}

.menu-toggle:hover::before,
.menu-toggle:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.menu-toggle:active {
  transform: scale(0.92);
}

.menu-toggle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 13px;
}

.menu-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--navy-deep);
  transition: top 0.3s var(--ease) 0.15s, transform 0.3s var(--ease), opacity 0.2s ease 0.1s, width 0.3s var(--ease);
}

.menu-toggle-line:nth-child(1) { top: 0; }
.menu-toggle-line:nth-child(2) { top: 5.5px; width: 68%; }
.menu-toggle-line:nth-child(3) { top: 11px; }

.menu-toggle:hover .menu-toggle-line:nth-child(2) { width: 100%; }

.menu-toggle.open {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 6px 18px rgba(7, 20, 39, 0.5), 0 0 0 1px rgba(201, 162, 75, 0.35);
  transform: rotate(90deg);
}

.menu-toggle.open:hover {
  transform: rotate(90deg) translateY(-2px) scale(1.06);
}

.menu-toggle.open .menu-toggle-line {
  background: var(--gold);
  transition: top 0.3s var(--ease), transform 0.3s var(--ease) 0.15s, opacity 0.15s ease, width 0.2s ease;
}

.menu-toggle.open .menu-toggle-line:nth-child(1) {
  top: 5.5px;
  transform: rotate(45deg);
}

.menu-toggle.open .menu-toggle-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle.open .menu-toggle-line:nth-child(3) {
  top: 5.5px;
  transform: rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-toggle-line { transition: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.8125rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

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

.btn-gold:hover,
.btn-gold:focus {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  outline: none;
}

.btn-outline {
  border: 1px solid rgba(247, 245, 240, 0.45);
  color: var(--off-white);
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 162, 75, 0.08);
}

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

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  background: var(--navy);
  color: var(--off-white);
}

/* ========== HERO (Home) ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/QsXhY.jpg') center/cover no-repeat;
  opacity: 0.32;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 20, 39, 0.92) 0%, rgba(11, 29, 51, 0.7) 55%, rgba(7, 20, 39, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--gold);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero h1 {
  color: var(--off-white);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  margin-bottom: 1.35rem;
  font-weight: 600;
}

.hero h1 span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(247, 245, 240, 0.78);
  margin-bottom: 2.25rem;
  max-width: 520px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========== STATS BAR ========== */
.stats-bar {
  position: relative;
  z-index: 5;
  background: var(--white);
  margin-top: -50px;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: 2.25rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border: 1px solid rgba(201, 162, 75, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ========== SECTIONS ========== */
.section {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.85rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  margin-bottom: 1rem;
  color: var(--navy-deep);
}

.section-header p {
  color: var(--text-muted-light);
  font-size: 1.02rem;
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.about-image:hover img {
  transform: scale(1.04);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 6px;
  pointer-events: none;
}

.about-content .section-tag {
  text-align: left;
}

.about-content h2 {
  margin-bottom: 1.25rem;
}

.about-content p {
  color: var(--text-muted-light);
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: 8px;
  padding: 1rem;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(201, 162, 75, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
}

.feature-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--navy-deep);
}

.feature-text p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--text-muted-light);
}

/* ========== PROJECT CARDS ========== */
.projects-section {
  background: var(--off-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201, 162, 75, 0.1);
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,162,75,0), rgba(201,162,75,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
  z-index: 4;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(7, 20, 39, 0.18), var(--shadow-gold);
}

.project-card:hover::before {
  background: linear-gradient(135deg, rgba(201,162,75,0.7), rgba(201,162,75,0.05));
}

.project-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,39,0.55) 0%, rgba(7,20,39,0) 45%);
  z-index: 2;
  pointer-events: none;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.95rem 0.42rem 0.8rem;
  border-radius: 30px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.project-status.ready {
  background: linear-gradient(135deg, #0d9163, #085c3f);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.project-status.ready::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b6ffdd;
  box-shadow: 0 0 0 3px rgba(182,255,221,0.25);
}

/* Premium foil "New Launch" ribbon badge with shimmer sweep */
.project-status.ongoing {
  background: linear-gradient(120deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-light) 50%, var(--gold) 65%, var(--gold-dark) 100%);
  background-size: 220% 100%;
  color: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.5);
  animation: shineSweep 3.2s ease-in-out infinite;
  position: absolute;
}

.project-status.ongoing::before {
  content: '\f0e7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--navy-deep);
}

.project-status.ongoing::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 10px;
  border-width: 5px 5px 0 0;
  border-style: solid;
  border-color: var(--gold-dark) transparent transparent transparent;
  filter: brightness(0.7);
}

@keyframes shineSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .project-status.ongoing { animation: none; }
}

.project-body {
  padding: 1.5rem 1.6rem 1.75rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.project-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.project-body p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(201, 162, 75, 0.3);
  font-size: 0.76rem;
  color: var(--text-muted-light);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(201, 162, 75, 0.08);
  border: 1px solid rgba(201, 162, 75, 0.18);
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  font-weight: 500;
  color: var(--navy-deep);
}

.project-meta span i {
  color: var(--gold-dark);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 1.15rem;
  padding: 0.6rem 1.1rem;
  background: var(--navy-deep);
  border-radius: 30px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.project-link:hover {
  background: var(--gold);
  color: var(--navy-deep);
  gap: 0.65rem;
  box-shadow: var(--shadow-gold);
}

/* ========== WHY / VALUES ========== */
.why-section {
  background: var(--navy-deep);
  color: var(--off-white);
}

.why-section .section-tag {
  color: var(--gold);
}

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

.why-section .section-header p {
  color: var(--text-muted-dark);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 75, 0.15);
  border-radius: 4px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201, 162, 75, 0.07);
  border-color: rgba(201, 162, 75, 0.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.35rem;
  color: var(--navy-deep);
}

.why-card h3 {
  color: var(--off-white);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.why-card p {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
}

/* ========== PAGE HERO (Inner pages) ========== */
.page-hero {
  padding: clamp(8.5rem, 14vw, 11rem) 0 clamp(3rem, 7vw, 4.25rem);
  background: linear-gradient(180deg, rgba(7, 20, 39, 0.92), rgba(7, 20, 39, 0.78)),
              url('../assets/images/26eHS.jpg') center/cover no-repeat;
  color: var(--off-white);
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted-dark);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

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

/* ========== ABOUT FULL ========== */
.about-full {
  background: var(--white);
}

.about-full-content {
  max-width: 780px;
  margin: 0 auto;
}

.about-full-content p {
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted-light);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.value-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 162, 75, 0.3);
  box-shadow: var(--shadow-sm);
}

.value-card .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--navy-deep);
  color: var(--off-white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
}

.contact-info-card h3 {
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.contact-info-card > p {
  color: var(--text-muted-dark);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail .icon-box {
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 75, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
  color: rgba(247, 245, 240, 0.9);
  font-size: 0.98rem;
}

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

.contact-form {
  background: var(--white);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--navy-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--off-white);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

/* ========== CTA ========== */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--off-white);
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
}

.cta-content p {
  color: var(--text-muted-dark);
  max-width: 480px;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy-deep);
  color: var(--text-muted-dark);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(201, 162, 75, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo-text {
  margin-bottom: 1rem;
  display: block;
  color: var(--off-white);
}

.footer-brand p {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  max-width: 270px;
  line-height: 1.7;
}

footer h4 {
  color: var(--off-white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links a {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

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

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 0.2rem;
  width: 16px;
}

.footer-bottom {
  padding: 1.35rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

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

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ========== PROJECT DETAIL PAGE ========== */
.project-detail-hero {
  height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.project-detail-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,20,39,0.85), rgba(7,20,39,0.3));
}

.project-detail-content {
  margin-top: -80px;
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
}

.detail-meta-card {
  background: var(--off-white);
  border-radius: 4px;
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.detail-meta-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}

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

.meta-row span:first-child {
  color: var(--text-muted-light);
}

.meta-row span:last-child {
  font-weight: 500;
  color: var(--navy-deep);
}

/* ========== SECURITY & ACCESSIBILITY ========== */
@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;
  }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 1.5rem 1.75rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(201, 162, 75, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > li > a {
    display: block;
    padding: 0.7rem 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    width: 100%;
    padding-top: 0;
    margin: 0.25rem 0 0.5rem;
  }

  .dropdown-menu-inner {
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding-left: 0.75rem;
  }

  .nav > .btn {
    display: none;
  }
}

@media (max-width: 640px) {
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 1.5rem 1rem;
    margin-top: -35px;
  }
  .stat-number {
    font-size: 1.85rem;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PREMIUM ADD-ONS — Trust strip, testimonials, floating actions,
   urgency banner, redesigned contact experience
   ============================================================ */

/* ---------- Corner tag on images (About / Overview) ---------- */
.about-image { position: relative; }

.corner-tag {
  position: absolute;
  top: 18px;
  right: -1px;
  background: var(--navy-deep);
  color: var(--gold-light);
  padding: 0.6rem 1.1rem 0.6rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 30px 0 0 30px;
  box-shadow: -6px 6px 20px rgba(0,0,0,0.25);
  z-index: 3;
  border: 1px solid rgba(201,162,75,0.4);
  border-right: none;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy) 50%, var(--navy-deep));
  border-top: 1px solid rgba(201,162,75,0.15);
  border-bottom: 1px solid rgba(201,162,75,0.15);
  padding: 1.6rem 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--off-white);
  font-size: 0.85rem;
  font-weight: 500;
  flex: 1 1 200px;
}

.trust-item i {
  color: var(--gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.trust-item span {
  display: block;
  color: var(--text-muted-dark);
  font-size: 0.72rem;
  font-weight: 400;
  margin-top: 0.1rem;
}

.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
}

/* ---------- Testimonials ---------- */
.testimonial-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,75,0.08) 0%, transparent 70%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 162, 75, 0.14);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.35);
}

.testimonial-quote-icon {
  color: var(--gold);
  font-size: 1.75rem;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}

.testimonial-card p.quote-text {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 1.1rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
  margin-bottom: 0.1rem;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ---------- Floating quick-action buttons ---------- */
.float-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 999;
}

.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: var(--transition);
  position: relative;
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
}

.fab-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C4A);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulseRing 2.2s ease-out infinite;
}

.fab-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
  align-self: flex-end;
}

@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp::before { animation: none; }
}

/* ---------- Urgency banner (New Launch pages) ---------- */
.urgency-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 900;
}

.urgency-banner i {
  margin-right: 0.5rem;
}

/* ---------- Amenities grid ---------- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.amenity-item {
  position: relative;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(201, 162, 75, 0.14);
  border-radius: 10px;
  padding: 1.85rem 1rem 1.6rem;
  transition: var(--transition);
  overflow: hidden;
}

.amenity-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201, 162, 75, 0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.amenity-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.amenity-item:hover::before {
  opacity: 1;
}

.amenity-item i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 0.9rem;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.amenity-item:hover i {
  transform: scale(1.1) rotate(-6deg);
}

.amenity-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-deep);
  position: relative;
  z-index: 1;
}

/* ---------- Redesigned Contact Page ---------- */
.contact-hero-premium {
  background: linear-gradient(135deg, rgba(7,20,39,0.94) 0%, rgba(11,29,51,0.86) 60%, rgba(7,20,39,0.94) 100%),
              url('../assets/images/JOehm.jpg') center/cover no-repeat;
  padding: clamp(8rem, 14vw, 10.5rem) 0 clamp(5rem, 9vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero-premium::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201,162,75,0.14) 0%, transparent 65%);
}

.contact-hero-premium .hero-badge {
  margin: 0 auto 1.5rem;
}

.contact-hero-premium h1 {
  color: var(--off-white);
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 2;
}

.contact-hero-premium h1 span { color: var(--gold); }

.contact-hero-premium p {
  color: var(--text-muted-dark);
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quick-actions-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  position: relative;
  z-index: 2;
}

.quick-action-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,75,0.3);
  color: var(--off-white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.quick-action-pill i { color: var(--gold); }

.quick-action-pill:hover {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.quick-action-pill:hover i { color: var(--navy-deep); }

.contact-info-card {
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201,162,75,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.office-hours-card {
  background: rgba(201,162,75,0.08);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: 6px;
  padding: 1.25rem 1.4rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 2;
}

.office-hours-card h4 {
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.65rem;
}

.office-hours-card .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(247,245,240,0.85);
  padding: 0.3rem 0;
}

.contact-form {
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
}

.map-embed-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 162, 75, 0.15);
  margin-top: 1.5rem;
}

.map-embed-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ---------- Responsive: new components ---------- */
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-strip .container { justify-content: flex-start; }
  .float-actions { right: 14px; bottom: 14px; }
}

@media (max-width: 640px) {
  .quick-actions-row { flex-direction: column; align-items: stretch; }
  .quick-action-pill { justify-content: center; }
}

/* ============================================================
   ABOUT PAGE — Premium Story Layout
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.75rem;
  align-items: center;
}

.about-story-media {
  position: relative;
}

.about-story-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 75, 0.2);
}

.story-badge-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy-deep);
  color: var(--off-white);
  padding: 1.35rem 1.6rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 75, 0.35);
  text-align: center;
  min-width: 130px;
}

.story-badge-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.story-badge-card span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-dark);
}

.about-story-content .section-tag { text-align: left; }
.about-story-content h2 { margin-bottom: 1.25rem; }

.about-story-content p {
  color: var(--text-muted-light);
  margin-bottom: 1.1rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about-pull-quote {
  position: relative;
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.09), rgba(11, 29, 51, 0.03));
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin: 1.75rem 0;
}

.about-pull-quote i {
  color: var(--gold);
  opacity: 0.45;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: block;
}

.about-pull-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.6;
}

/* Milestone timeline */
.milestone-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
  position: relative;
}

.milestone-strip::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.5), transparent);
  z-index: 0;
}

.milestone {
  position: relative;
  text-align: center;
  z-index: 1;
}

.milestone-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.68rem;
  border: 2px solid var(--gold);
  margin-bottom: 0.9rem;
  transition: var(--transition);
}

.milestone:hover .milestone-year {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.08);
}

.milestone p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  max-width: 175px;
  margin: 0 auto;
}

/* Premium value cards */
.value-card-premium {
  position: relative;
  text-align: left;
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(201, 162, 75, 0.12);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.value-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.value-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 162, 75, 0.35);
}

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

.value-index {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 162, 75, 0.12);
  line-height: 1;
}

.value-card-premium .icon {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(201, 162, 75, 0.3);
}

.value-card-premium h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.value-card-premium p { color: var(--text-muted-light); font-size: 0.9rem; margin: 0; }

/* Compliance strip */
.about-compliance-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 4rem;
  padding: 1.75rem;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px dashed rgba(201, 162, 75, 0.35);
}

.about-compliance-strip div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.about-compliance-strip i { color: var(--gold-dark); font-size: 1.1rem; }

@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .milestone-strip { grid-template-columns: repeat(2, 1fr); gap: 2.75rem 1.5rem; }
  .milestone-strip::before { display: none; }
}

@media (max-width: 640px) {
  .story-badge-card { left: 1rem; bottom: -1.25rem; padding: 1rem 1.25rem; }
  .about-story-media img { height: 320px; }
  .milestone-strip { grid-template-columns: 1fr 1fr; }
  .about-compliance-strip { gap: 1.25rem 2rem; justify-content: flex-start; }
}

/* ============================================================
   PROJECT DETAIL PAGE — Configuration Cards, Amenities,
   Location Highlight, Premium Details Table
   ============================================================ */
.detail-subhead {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.08rem;
  margin: 2.15rem 0 0.25rem;
  color: var(--navy-deep);
}

.detail-subhead i {
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 0.5rem;
}

.config-card {
  position: relative;
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 10px;
  padding: 1.6rem 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.28);
  transition: var(--transition);
}

.config-card::after {
  content: '';
  position: absolute;
  top: -35%;
  right: -20%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.2) 0%, transparent 70%);
}

.config-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.config-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(201, 162, 75, 0.16);
  border: 1px solid rgba(201, 162, 75, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.config-bhk {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.config-size {
  font-size: 0.82rem;
  color: var(--gold-light);
  font-weight: 500;
  position: relative;
  z-index: 1;
  display: block;
}

.location-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(201, 162, 75, 0.06);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 8px;
  padding: 1.1rem 1.3rem;
  margin: 1.75rem 0;
}

.location-highlight i {
  color: var(--gold-dark);
  font-size: 1.05rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.location-highlight p {
  margin: 0 !important;
  font-size: 0.92rem;
  color: var(--text-muted-light);
}

.location-highlight strong {
  color: var(--navy-deep);
}

/* Premium project-details card */
.detail-meta-card-premium {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.2);
  box-shadow: var(--shadow-md);
}

.detail-meta-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.detail-meta-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.22), transparent 70%);
}

.detail-meta-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 1;
}

.detail-meta-header h4 {
  color: var(--off-white);
  font-size: 1.15rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

.meta-rows {
  padding: 0.4rem 0;
}

.meta-row-premium {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.75rem;
}

.meta-rows > .meta-row-premium:nth-child(even) {
  background: rgba(201, 162, 75, 0.04);
}

.meta-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(201, 162, 75, 0.13);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.meta-row-premium span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.15rem;
}

.meta-row-premium strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.35;
}

.detail-meta-cta {
  padding: 0.9rem 1.75rem 1.75rem;
}

.detail-meta-cta .btn {
  width: 100%;
}

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

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 2.5rem; }
.gold { color: var(--gold); }
