/* Base */
:root {
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --gold: #d4a853;
  --gold-light: #f0d78c;
  --accent: #0f172a;
  --accent-light: #1e293b;
  --muted: #64748b;
  --bg: #f8fafc;
  --bg-warm: #fefdfb;
  --card: #ffffff;
  --border: #e2e8f0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 35px 80px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 20px 50px rgba(212, 168, 83, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: #0f172a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(29, 78, 216, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1a1a;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn--gold:hover {
  box-shadow: 0 24px 60px rgba(212, 168, 83, 0.25);
  transform: translateY(-2px);
}

.btn--cta {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c068 50%, var(--gold-light) 100%);
  color: #0a0f1a;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: nowrap;
}

.btn--cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn--cta:hover {
  background: linear-gradient(135deg, #e8c068 0%, var(--gold-light) 50%, #f5e0a0 100%);
  box-shadow: 0 6px 18px rgba(212, 168, 83, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn--cta:hover::before {
  left: 100%;
}

.btn--cta:active {
  transform: translateY(0) scale(0.98);
}

.btn--ghost {
  border-color: #ffffff80;
  color: #fff;
  background: transparent;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(160deg, 
      rgba(8, 6, 4, 0.97) 0%, 
      rgba(25, 20, 12, 0.94) 15%, 
      rgba(50, 40, 22, 0.88) 35%, 
      rgba(65, 52, 28, 0.85) 50%, 
      rgba(45, 36, 20, 0.9) 70%, 
      rgba(15, 12, 8, 0.96) 100%),
    url("/background_img.jpeg") center/cover no-repeat;
  filter: saturate(1.25) contrast(1.15) brightness(0.95);
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(212, 168, 83, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 200, 100, 0.2) 0%, transparent 45%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(180, 140, 60, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(212, 168, 83, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 215, 130, 0.1) 0%, transparent 25%);
  pointer-events: none;
  animation: subtleGlow 8s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  0% { opacity: 0.85; }
  100% { opacity: 1; }
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(0, 0, 0, 0.15) 0%, 
      transparent 20%, 
      transparent 75%, 
      rgba(5, 4, 2, 0.6) 100%),
    linear-gradient(90deg,
      rgba(212, 168, 83, 0.03) 0%,
      transparent 20%,
      transparent 80%,
      rgba(212, 168, 83, 0.03) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
}

.hero__content::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.5rem;
  margin-top: 12px;
  backdrop-filter: blur(24px) saturate(1.3);
  background: linear-gradient(135deg, 
    rgba(12, 10, 6, 0.94) 0%, 
    rgba(30, 24, 14, 0.9) 50%, 
    rgba(18, 14, 8, 0.92) 100%);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-top-color: rgba(212, 168, 83, 0.4);
  border-radius: 16px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.35), 
    0 0 60px rgba(212, 168, 83, 0.06),
    inset 0 1px 0 rgba(255, 230, 180, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.nav__logo {
  width: 220px;
  max-height: 52px;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.05);
}

.nav__links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.95rem;
}

.nav__links a {
  color: #e8edff;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.25s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__links a:hover::after {
  width: 60%;
}

.nav__actions {
  display: flex;
  gap: 0.75rem;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: #ffffff1c;
  border: 1px solid #ffffff30;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
}

.nav__drawer {
  position: fixed;
  inset: 0;
  background: #0f172a;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 20;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__drawer.open {
  transform: translateX(0);
}

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

.nav__drawer-logo {
  width: 150px;
}

.nav__drawer-close {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.nav__drawer-links {
  display: grid;
  gap: 1rem;
  font-weight: 600;
}

.nav__drawer-links a {
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
}

.nav__drawer-actions {
  display: flex;
  gap: 0.75rem;
}

.hero__content {
  position: relative;
  z-index: 5;
  padding: 4rem 0 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #d4a853, #f0d78c, #d4a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  position: relative;
  display: inline-block;
}

.eyebrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  margin: 0;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #fff8e8 20%, 
    #f0d78c 40%, 
    #d4a853 50%, 
    #f0d78c 60%, 
    #fff8e8 80%, 
    #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 4px rgba(212, 168, 83, 0.3));
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.lead {
  max-width: 720px;
  color: rgba(255, 248, 235, 0.9);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.7;
}

.search {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 250, 240, 0.95) 100%);
  border: 2px solid rgba(212, 168, 83, 0.45);
  border-radius: 14px;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.25), 
    0 0 40px rgba(212, 168, 83, 0.12),
    inset 0 2px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(212, 168, 83, 0.1);
  width: min(720px, 100%);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.search:focus-within {
  border-color: rgba(212, 168, 83, 0.7);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.3), 
    0 0 50px rgba(212, 168, 83, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 1);
}

.search input {
  flex: 1;
  background: transparent;
  border: none;
  color: #0f172a;
  font-size: 1rem;
  padding: 0.6rem 0.85rem;
  outline: none;
}

.search input::placeholder {
  color: #94a3b8;
}

.search-block {
  position: relative;
  width: min(780px, 100%);
}

.search__suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.suggestion-item {
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: none;
  color: #0f172a;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.suggestion-item:hover {
  background: rgba(37, 99, 235, 0.12);
  color: #0b1021;
}

.chip-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid rgba(212, 168, 83, 0.3);
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.chip:hover {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.35) 0%, rgba(255, 215, 100, 0.15) 100%);
  border-color: rgba(212, 168, 83, 0.6);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 168, 83, 0.15);
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.highlight-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(145deg, 
    rgba(212, 168, 83, 0.1) 0%, 
    rgba(255, 240, 200, 0.04) 50%,
    rgba(212, 168, 83, 0.06) 100%);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-top-color: rgba(255, 230, 180, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.4), transparent);
}

.highlight-card:hover {
  background: linear-gradient(145deg, 
    rgba(212, 168, 83, 0.18) 0%, 
    rgba(255, 240, 200, 0.08) 50%,
    rgba(212, 168, 83, 0.12) 100%);
  border-color: rgba(212, 168, 83, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 168, 83, 0.15), 0 0 30px rgba(212, 168, 83, 0.08);
}

.highlight-number {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--gold);
  text-shadow: 0 2px 12px rgba(212, 168, 83, 0.3);
}

.highlight-title {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
}

.highlight-desc {
  margin: 0.25rem 0 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section--light {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section--accent {
  background: linear-gradient(160deg, #fefdfb 0%, #faf8f5 50%, #f8f6f2 100%);
  position: relative;
}

.section--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.section--cta {
  background: linear-gradient(160deg, #0a0f1a 0%, #0f172a 40%, #1a2744 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 10% 90%, rgba(212, 168, 83, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 10%, rgba(29, 78, 216, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.section__header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
}

.section__header--split > div {
  max-width: 640px;
}

.section__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section__actions .btn--cta,
.section__header--split .btn--primary.js-enquire-now {
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  border-radius: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section__action {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.2rem;
}

.section__header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.section__header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards & grids */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--features {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--projects {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid--blogs {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--testimonials {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--feature {
  padding: 1.4rem 1.5rem;
  text-align: left;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card--feature:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.card--feature h3 {
  margin: 0.75rem 0 0.5rem;
  font-weight: 700;
  color: #0f172a;
}

.card--feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card--project {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card--project:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(212, 168, 83, 0.15);
  border-color: rgba(212, 168, 83, 0.2);
}

.highlight-card {
  border: 2px solid var(--primary);
  box-shadow: 0 22px 50px rgba(37, 99, 235, 0.18);
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.12) 0%, rgba(212, 168, 83, 0.08) 100%);
  color: #a07d35;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

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

.badge-group {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(212, 168, 83, 0.25);
}

.badge--outline {
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge--rera {
  color: #0d9488;
  font-weight: 700;
}

.price-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: linear-gradient(135deg, #0a0f1a 0%, #1a2744 100%);
  color: #fff;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.card__body {
  padding: 1rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card__body h3 {
  margin: 0 0 0.35rem;
}

/* Project cards: center content (desktop + mobile) */
.card--project .card__body {
  text-align: center;
  align-items: center;
}

.card--project .card__body h3 {
  text-align: center;
}

.card--project .card__meta {
  justify-content: center;
}

.card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  border-radius: 10px;
  min-height: 44px;
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.2);
}

.card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

.card--project .card__cta {
  border-radius: 10px;
}

.card--project .card__cta.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8c068 50%, var(--gold-light) 100%);
  color: #0a0f1a;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(212, 168, 83, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card--project .card__cta.btn--primary:hover {
  background: linear-gradient(135deg, #e8c068 0%, var(--gold-light) 50%, #f5e0a0 100%);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.location {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card__meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.65rem;
}

.card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.7rem;
  background: #eef2ff;
  color: #111827;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
}

.card--blog p {
  color: var(--muted);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-slider {
  position: relative;
  display: grid;
  gap: 0.75rem;
  align-items: center;
}

.news-window {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e6ebf5;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  background: #fff;
}

.news-track {
  display: flex;
  transition: transform 0.45s ease;
  width: 100%;
}

.news-card {
  min-width: 100%;
  padding: 1.4rem 1.6rem;
  display: grid;
  gap: 0.35rem;
  background: #fff;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.news-card h3 {
  margin: 0.1rem 0;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-tag {
  margin: 0;
  color: #2563eb;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.news-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e6ebf5;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-btn:hover {
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.news-btn--prev {
  left: 10px;
}

.news-btn--next {
  right: 10px;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #2563eb;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.news-dot.active {
  background: #2563eb;
  transform: scale(1.05);
}

/* Footer icons */
.footer-icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  background: rgba(212, 168, 83, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  transition: all 0.25s ease;
}

.footer-icon:hover {
  transform: translateY(-2px);
  background: rgba(212, 168, 83, 0.15);
  border-color: rgba(212, 168, 83, 0.4);
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.footer a:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
.nav__links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 10px;
}

.card--testimonial {
  padding: 1.6rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card--testimonial:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.card--testimonial h3 {
  margin: 0.5rem 0 0.2rem;
  font-weight: 700;
  color: #0f172a;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.8rem;
  border: 3px solid rgba(212, 168, 83, 0.3);
  border: 3px solid #e0e7ff;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.quote {
  color: #111827;
}

/* Partners */
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.partner-chip {
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  font-weight: 700;
  font-size: 0.95rem;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.partner-chip:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.about__image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: #fff;
  padding: 0.75rem;
}

.about__content h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.3rem);
}

.about__content p {
  margin: 0.2rem 0 1rem;
  color: #374151;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
  margin: 1.2rem 0;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
}

.stat-value span {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 800;
}

.stat-label {
  margin-top: 0.2rem;
  color: #64748b;
  font-weight: 600;
  font-size: 0.9rem;
}

.founder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.founder h4 {
  margin: 0 0 0.2rem;
}

.founder p {
  margin: 0;
  color: var(--muted);
}

.founder img {
  width: 24px;
  height: 24px;
}

.about__cta {
  margin-top: 1rem;
  display: inline-flex;
}

/* Subpage: About */
.subhero {
  position: relative;
  color: #fff;
  padding: 4rem 0;
  overflow: hidden;
}

.subhero__backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82), rgba(37, 99, 235, 0.65)),
    url("/header_img.png") center/cover no-repeat;
  filter: saturate(1.05);
}

.subhero__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.6rem;
}

.crumb {
  color: #c7d2fe;
  font-weight: 600;
}

.about-hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1rem;
  overflow: hidden;
  background: url("/background_img.jpeg") center/cover no-repeat;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.about-hero__content h1 {
  margin: 0.2rem 0 0;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.about-hero__overview {
  margin: 1rem 0 0;
  max-width: 800px;
  line-height: 1.75;
  font-size: 1rem;
  opacity: 0.95;
}

.rera-verified {
  color: #0d9488;
  font-weight: 600;
}

.stacked {
  display: grid;
  gap: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}

.card--soft {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.bullet-list {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.1rem;
  color: #374151;
}

.bullet-list li {
  margin: 0;
}

/* CTA */
.cta {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 1.8rem;
  align-items: start;
}

.cta__content h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.cta__content p {
  margin: 0 0 1rem;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.contact-pill {
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  background: rgba(212, 168, 83, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 83, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
}

.cta__content {
  max-width: 520px;
}

.cta__form {
  display: grid;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.95) 0%, rgba(15, 22, 40, 0.95) 100%);
  border: 1px solid rgba(212, 168, 83, 0.15);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cta__form label {
  display: grid;
  gap: 0.45rem;
  color: #cbd5e1;
  font-weight: 600;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #1f2937;
  background: #0f172a;
  color: #e2e8f0;
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.form-note {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Enquiry modal (popup on Enquire Now) */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.enquiry-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(15, 22, 42, 0.98) 0%, rgba(25, 35, 55, 0.98) 100%);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 168, 83, 0.08);
  padding: 1.75rem 1.5rem;
  animation: enquiryModalIn 0.3s ease;
}

@keyframes enquiryModalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.enquiry-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.enquiry-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.enquiry-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.enquiry-modal__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.enquiry-modal__form {
  margin: 0;
}

.cta__side {
  display: grid;
  gap: 1rem;
}

.cta__card {
  background: linear-gradient(135deg, rgba(10, 15, 25, 0.9) 0%, rgba(15, 22, 40, 0.9) 100%);
  border: 1px solid rgba(212, 168, 83, 0.12);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta__card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-2px);
}

.cta__card h3 {
  margin: 0 0 0.35rem;
}

.cta__card p {
  margin: 0.25rem 0;
  color: #cbd5e1;
}

.contact-card {
  display: grid;
  gap: 0.4rem;
}

.contact-list {
  padding-left: 1.1rem;
  margin: 0.2rem 0 0;
  color: #cbd5e1;
  display: grid;
  gap: 0.25rem;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
  color: #e5e7eb;
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.3), transparent);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}

.footer__logo {
  width: 180px;
}

.footer h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.footer p {
  color: #cbd5e1;
  margin: 0;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer a {
  color: #cbd5e1;
}

.socials {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.socials img {
  width: 32px;
  height: 32px;
  background: #111827;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid #1f2937;
}

.subscribe {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.subscribe input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #1f2937;
  background: #0f172a;
  color: #e2e8f0;
}

.footer__bar {
  margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid #1f2937;
  color: #9ca3af;
  font-size: 0.95rem;
}

.footer__legal {
  display: grid;
  gap: 0.5rem;
}

.footer__legal > span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer__legal a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

.footer__disclaimer {
  margin: 0.75rem 0;
  padding: 0.75rem 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #94a3b8;
  border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.footer__disclaimer strong {
  color: #cbd5e1;
  font-weight: 600;
}

.footer__disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  transition: color 0.2s ease;
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(212, 168, 83, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.gallery-item img[src=""],
.gallery-item img:not([src]) {
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, rgba(212, 168, 83, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item img[src=""]::after,
.gallery-item img:not([src])::after {
  content: "Image Loading...";
  color: #94a3b8;
  font-size: 0.9rem;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Keep nav links on one line at medium widths */
@media (max-width: 1100px) and (min-width: 961px) {
  .nav__links {
    gap: 0.6rem;
    font-size: 0.85rem;
  }
  .nav__links a {
    padding: 0.45rem 0.6rem;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .nav__toggle span {
    width: 24px;
    height: 2.5px;
    background: #fff;
  }

  .nav__drawer-logo {
    max-height: 48px;
    width: auto;
    object-fit: contain;
  }

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

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

  .cta__form {
    padding: 1.25rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 1rem;
  }

  .section__header--split {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
  }

  .enquiry-modal__box {
    max-width: 94%;
    padding: 1.5rem 1.25rem;
    margin: 0.5rem;
  }

  .enquiry-modal__title {
    font-size: 1.35rem;
  }
}

@media (max-width: 640px) {
  .hero__content {
    padding-top: 3rem;
  }

  .search-block {
    width: 100%;
  }

  .search {
    flex-direction: column;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    width: 100%;
  }

  .search input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    min-height: 48px;
  }

  .search .btn {
    width: 100%;
    padding: 0.85rem 1.25rem;
    min-height: 48px;
  }

  .chip-row {
    gap: 0.5rem;
  }

  .chip {
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }

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

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 1rem;
  }

  .enquiry-modal__box {
    max-width: 100%;
    margin: 0.75rem;
    padding: 1.35rem 1.15rem;
    max-height: 85vh;
  }

  .enquiry-modal__title {
    font-size: 1.25rem;
  }

  .enquiry-modal__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

/* Policy Pages */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  color: #0f172a;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(212, 168, 83, 0.2);
}

.policy-section h3 {
  color: #1e293b;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.policy-section p {
  color: #475569;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.policy-section ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  color: #475569;
  line-height: 1.8;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-section a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

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