:root {
  --primary-gold:#E7BF5E;
  --gold-hover:#d6ab46;
  --bg-light-gray:#F4F4F4;
  --bg-white:#FFFFFF;
  --text-black:#000000;
  --text-body:#475569;
  --font-family:'Montserrat','Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --font-heading:'Cormorant Garamond','Montserrat',serif;
  --max-width:1400px;
  --transition-fast:.25s ease;
}


/* =========================
   GLOBAL
========================= */

* {
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html {
  scroll-behavior:smooth;
  font-size:16px;
  -webkit-text-size-adjust:100%;
}

body {
  font-family:var(--font-family);
  background:#fff;
  color:var(--text-body);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

img {
  max-width:100%;
  height:auto;
  display:block;
}

a {
  color:inherit;
  text-decoration:none;
  transition:color var(--transition-fast);
}

button {
  font-family:inherit;
  cursor:pointer;
  border:0;
  background:none;
}

.container {
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 40px;
  width:100%;
}

.section {
  padding:80px 0;
  position:relative;
}

.section-white {
  background:#fff;
}

.section-gray {
  background:var(--bg-light-gray);
}

.section-heading {
  font-size:clamp(30px,3.5vw,42px);
  font-weight:500;
  text-align:center;
  color:var(--primary-gold);
  margin-bottom:36px;
  letter-spacing:.2px;
}

.section-subtext {
  text-align:center;
  font-size:clamp(15px,1.8vw,18px);
  color:var(--text-body);
  max-width:800px;
  margin:-12px auto 38px;
  line-height:1.55;
}


/* =========================
   HEADER
========================= */

.site-header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:20px 0;
  background:linear-gradient(
    180deg,
    rgba(15,23,42,.9) 0%,
    rgba(15,23,42,.4) 100%
  );
  transition:
    background .3s ease,
    padding .3s ease,
    box-shadow .3s ease;
}

.site-header.scrolled {
  background:rgba(15,23,42,.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  padding:12px 0;
  box-shadow:0 4px 20px rgba(0,0,0,.25);
}

.site-header .container {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand-logo {
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo-img {
  height:75px;
  max-height:80px;
  width:auto;
  object-fit:contain;
}

.main-nav ul {
  display:flex;
  list-style:none;
  gap:32px;
}

.main-nav a {
  color:#fff;
  font-size:14px;
  font-weight:500;
  letter-spacing:1px;
  text-transform:uppercase;
  position:relative;
  padding:5px 0;
}

.main-nav a:after {
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:2px;
  background:var(--primary-gold);
  transition:width var(--transition-fast);
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width:100%;
}

.main-nav a:hover {
  color:var(--primary-gold);
}

.header-right-actions {
  display:flex;
  align-items:center;
  gap:18px;
}

.header-phone {
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  border:1px solid rgba(255,255,255,.75);
  padding:12px 16px;
  font-size:15px;
  letter-spacing:1px;
}

.header-phone svg {
  flex:none;
}

.mobile-menu-toggle {
  display:none;
  color:#fff;
}


/* =========================
   HERO
========================= */

#hero {
  min-height:505px;
  height:505px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;

  background-image:
    linear-gradient(
      rgba(0,0,0,.55),
      rgba(0,0,0,.62)
    ),
    url('hero-section-bg.webp');

  background-size:cover;
  background-position:center;
}

.hero-content {
  text-align:center;
  color:#fff;
  padding:80px 20px 20px;
}

.hero-title {
  font-family:var(--font-heading);
  font-size:clamp(48px,5vw,64px);
  font-weight:500;
  line-height:1.1;
  margin-bottom:10px;
}

.hero-breadcrumb {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:7px;
  font-size:18px;
}

.hero-breadcrumb a,
.hero-breadcrumb .gold {
  color:var(--primary-gold);
}

.hero-breadcrumb .current {
  color:#fff;
}

.separator {
  color:#fff;
}


/* =========================
   ABOUT
========================= */

.elevate-about-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:65px;
  align-items:center;
}

.about-visuals {
  width:100%;
  min-height:500px;
  position:relative;
}

.project-image {
  position:relative;
  width:100%;
  height:500px;
  background:#e9e9e9;
  border:1px solid #e0e0e0;
  overflow:hidden;
}

.project-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-placeholder {
  display:none;
  position:absolute;
  inset:0;
  align-items:center;
  justify-content:center;
  background:linear-gradient(
    135deg,
    #d7d7d7,
    #f4f4f4
  );
  color:#777;
  font-size:18px;
  letter-spacing:.5px;
}

.about-text-content {
  font-size:18px;
  color:var(--text-body);
}

.about-text-content p {
  margin-bottom:18px;
}

.about-text-content p:last-child {
  margin-bottom:0;
}


/* =========================
   PROJECT HIGHLIGHTS
========================= */

.elevate-highlights-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px 32px;
  max-width:1160px;
  margin:0 auto;
}

.highlight-card {
  min-height:66px;
  border:1px solid var(--primary-gold);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:12px 18px;
  color:var(--text-body);
  font-size:18px;
  background:rgba(255,255,255,.15);
}

.highlight-card:nth-child(7) {
  grid-column:1 / 2;
  margin-left:20%;
}

.highlight-card:nth-child(8) {
  grid-column:3 / 4;
  margin-right:20%;
}


/* =========================
   PROJECT GALLERY
========================= */

.elevate-gallery-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:65px;
  max-width:850px;
  margin:0 auto;
}

.gallery-card {
  text-align:center;
}

.gallery-image-box {
  height:240px;
  position:relative;
  background:#eee;
  overflow:hidden;
}

.gallery-image-box img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-image-box .image-placeholder {
  display:none;
}

.gallery-caption {
  font-size:17px;
  margin-top:9px;
  color:var(--text-body);
}


/* =========================
   JOURNEY
========================= */

.journey-heading span {
  color:var(--primary-gold);
}

.journey-heading strong {
  color:#000;
  font-weight:500;
}

.journey-stats-row {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1050px;
  margin:0 auto;
  gap:40px;
  text-align:center;
}

.stat-number {
  font-size:clamp(46px,5vw,64px);
  font-weight:700;
  color:var(--primary-gold);
  line-height:1.1;
}

.stat-label {
  font-size:18px;
  color:var(--text-body);
  margin-top:18px;
}


/* =========================
   HOUSING LOAN PARTNERS
========================= */

.loan-heading span {
  color:#000;
}

.loan-heading strong {
  color:var(--primary-gold);
  font-weight:500;
}

.partners-flex {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
  max-width:1200px;
  margin:55px auto 0;
  flex-wrap:nowrap;
}

.partner-logo-item {
  flex:1;
  min-width:0;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.partner-logo-item img {
  width:auto;
  height:auto;
  max-width:100%;
  max-height:60px;
  object-fit:contain;
}


/* SBI */

.partner-logo-item.sbi-logo {
  flex-direction:column;
  gap:4px;
}

.partner-logo-item.sbi-logo img {
  width:95px;
  height:55px;
  object-fit:contain;
}

.partner-logo-item.sbi-logo span {
  color:#173f72;
  font-size:10px;
  font-weight:700;
  letter-spacing:1px;
  line-height:1;
}


/* Axis */

.partner-logo-item.axis-logo img {
  width:185px;
  max-height:58px;
}


/* HDFC */

.partner-logo-item.hdfc-logo img {
  width:210px;
  max-height:58px;
}


/* ICICI */

.partner-logo-item.icici-logo img {
  width:205px;
  max-height:58px;
}


/* LIC */

.partner-logo-item.lic-logo img {
  width:190px;
  max-height:70px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  background:#0f172a;
  color:#cbd5e1;
  padding:65px 0 0;
}

.footer-top {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.25fr;
  gap:45px;
}

.footer-brand p {
  max-width:360px;
  color:#94a3b8;
}

.footer-column h4 {
  color:#fff;
  font-size:17px;
  margin-bottom:18px;
}

.footer-column ul {
  list-style:none;
}

.footer-column li {
  margin-bottom:10px;
  font-size:14px;
}

.footer-column a:hover {
  color:var(--primary-gold);
}

.footer-bottom {
  margin-top:50px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:13px;
  color:#94a3b8;
}


/* =========================
   TABLET
========================= */

@media(max-width:1199px) {

  .main-nav ul {
    gap:20px;
  }

  .header-phone {
    padding:10px 12px;
  }

  .elevate-highlights-grid {
    gap:20px;
  }

  .elevate-gallery-grid {
    gap:35px;
  }

  .partners-flex {
    gap:20px;
  }

  .partner-logo-item.axis-logo img {
    width:155px;
  }

  .partner-logo-item.hdfc-logo img {
    width:180px;
  }

  .partner-logo-item.icici-logo img {
    width:175px;
  }

  .partner-logo-item.lic-logo img {
    width:165px;
  }

}


/* =========================
   MOBILE
========================= */

@media(max-width:767px) {

  .container {
    padding:0 20px;
  }

  .section {
    padding:55px 0;
  }

  .brand-logo-img {
    height:55px;
  }

  .main-nav {
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(15,23,42,.98);
    padding:20px;
  }

  .main-nav.active {
    display:block;
  }

  .main-nav ul {
    flex-direction:column;
    gap:18px;
  }

  .main-nav a {
    font-size:14px;
  }

  .header-phone {
    display:none;
  }

  .mobile-menu-toggle {
    display:block;
  }

  .site-header.nav-open {
    background:rgba(15,23,42,.98);
  }


  /* Hero */

  #hero {
    height:440px;
    min-height:440px;
  }

  .hero-title {
    font-size:46px;
  }

  .hero-breadcrumb {
    font-size:14px;
    flex-wrap:wrap;
  }


  /* About */

  .elevate-about-grid {
    grid-template-columns:1fr;
    gap:35px;
  }

  .about-visuals {
    width:100%;
    min-height:380px;
  }

  .project-image-large {
    width:100%;
    height:380px;
  }

  .about-text-content {
    font-size:16px;
  }


  /* Highlights */

  .elevate-highlights-grid {
    grid-template-columns:1fr;
    gap:16px;
  }

  .highlight-card:nth-child(7),
  .highlight-card:nth-child(8) {
    grid-column:auto;
    margin:0;
  }


  /* Gallery */

  .elevate-gallery-grid {
    grid-template-columns:1fr;
    gap:35px;
  }

  .gallery-image-box {
    height:230px;
  }


  /* Journey */

  .journey-stats-row {
    grid-template-columns:1fr;
    gap:35px;
  }

  .stat-number {
    font-size:50px;
  }

  .stat-label {
    font-size:16px;
  }


  /* Loan Partners */

  .partners-flex {
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px 20px;
    margin-top:35px;
  }

  .partner-logo-item {
    width:100%;
    height:75px;
  }

  .partner-logo-item.sbi-logo img {
    width:80px;
    height:48px;
  }

  .partner-logo-item.axis-logo img {
    width:145px;
  }

  .partner-logo-item.hdfc-logo img {
    width:160px;
  }

  .partner-logo-item.icici-logo img {
    width:155px;
  }

  .partner-logo-item.lic-logo img {
    width:150px;
  }

  .partner-logo-item.lic-logo {
    grid-column:1 / -1;
  }


  /* Footer */

  .footer-top {
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom {
    flex-direction:column;
    gap:8px;
  }

}


/* =========================
   SMALL MOBILE
========================= */

@media(max-width:479px) {

  #hero {
    height:410px;
    min-height:410px;
  }

  .hero-title {
    font-size:40px;
  }

  .about-visuals {
    min-height:320px;
  }

  .project-image-large {
    height:320px;
  }

  .section-heading {
    font-size:30px;
  }

  .partners-flex {
    grid-template-columns:1fr;
    gap:25px;
  }

  .partner-logo-item.lic-logo {
    grid-column:auto;
  }

  .partner-logo-item {
    height:70px;
  }

}