/* ============================================================
   Godrej Properties Pune â€” Complete Stylesheet
   Fully responsive: 400px â†’ 1600px+
   ============================================================ */

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- DESIGN TOKENS ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --charcoal: #1C1C1E;
  --mid: #4A4A4A;
  --muted: #8A8A8A;
  --rule: #E8E4DC;
  --bg: #FFFFFF;
  --bg-warm: #FAFAF8;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;

  /* spacing scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;

  /* section padding */
  --section-x: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(3rem, 6vw, 6rem);
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.serif {
  font-family: var(--serif);
}

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

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 0 var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--gold);
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-cta {
  background: var(--charcoal);
  color: #fff;
  padding: 9px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold-dark);
}

/* ============================================================
   HERO â€” full viewport
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: calc(100vh - 68px);
  /* fallback */
  /* overflow: hidden; */
  display: block;
}

/* Background slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slider .bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg-slider .bg-slide.active {
  opacity: 1;
}

.hero-bg-slider .bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* transform: scale(1.08);
  transition: transform 8s ease; */
}

/* .hero-bg-slider .bg-slide.active img {transform: scale(1.0);} */

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

/* Inner layout */
.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7rem var(--section-x) 5rem;
  gap: 3vw;
}

.hero-left {
  flex: 1;
  max-width: 540px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-left::before,
.hero-left::after {
  display: none;
}

/* Form on right */
.hero-right {
  flex-shrink: 0;
  width: 400px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.8rem 2.4rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  align-self: center;
}

/* Progress bar */
.hero-slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 4;
  transition: width 5000ms linear;
}

/* Slide indicators */
.hero-slide-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.hero-slide-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-slide-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

.hero-slide-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-slide-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.hero-slide-counter {
  font-family: var(--serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: auto;
  margin-right: 8px;
}

.hero-slide-counter strong {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
}

/* Hero text */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  max-width: 380px;
  line-height: 1.8;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-price .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-price .amount {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}

.hero-price .suffix {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.badge {
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 14px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #B8943E;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 28px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

/* ============================================================
   FORM ELEMENTS (shared across hero, modals)
   ============================================================ */
.form-card {
  width: 100%;
}

.form-card-header {
  margin-bottom: 2rem;
}

.form-card-header h2 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.form-card-header p {
  font-size: 0.83rem;
  color: var(--muted);
}

.form-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C0BDB5;
}

.form-group textarea {
  resize: vertical;
  min-height: 67px;
  line-height: 10px;
}

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

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0;
}

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

.form-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.5;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--rule);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

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

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding: var(--section-y) var(--section-x);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 500px;
  line-height: 1.8;
}

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.project-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
  cursor: pointer;
  position: relative;
}

.project-card:hover {
  background: var(--bg-warm);
}

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

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 1.5rem;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.project-card:hover img {
  filter: grayscale(0%);
}

.project-location {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-location::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.project-name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.project-type {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.project-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
  margin-bottom: 0.25rem;
}

.project-price-note {
  font-size: 1rem;
  color: var(--muted);
}

.project-features {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-feature {
  font-size: 1rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-feature::before {
  content: 'â€”';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.project-arrow {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.2s;
}

.project-tag {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 1rem;
}

.project-tag.new {
  background: var(--gold);
  color: var(--charcoal);
}

.project-enquire-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 1.4rem;
  padding: 11px 20px;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.project-enquire-btn:hover {
  background: var(--gold-dark);
}

.project-enquire-btn svg {
  transition: transform 0.2s;
}

.project-enquire-btn:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities-section {
  background: var(--bg-warm);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.amenity-item {
  background: var(--bg-warm);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.amenity-item:hover {
  background: var(--bg);
}

.amenity-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}

.amenity-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.amenity-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.about-text p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about-timeline {
  display: flex;
  flex-direction: column;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 60px;
  flex-shrink: 0;
}

.timeline-detail h4 {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.timeline-detail p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT STRIP
   ============================================================ */
.contact-strip {
  background: var(--charcoal);
  padding: var(--section-y) var(--section-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  align-items: center;
}

.contact-strip h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
}

.contact-strip h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.contact-strip>div>p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-top: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
  display: block;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  display: block;
}

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

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 12px 22px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 2rem;
}

.whatsapp-btn:hover {
  background: #1ebc5a;
}

/* ============================================================
   RERA SECTION
   ============================================================ */
.rera-section {
  padding: 2.5rem var(--section-x);
  border-top: 1px solid var(--rule);
  /* display: flex; */
  align-items: flex-start;
  gap: 2.5rem;
  /* flex-wrap: wrap; */
}

.rera-section .rera .rera-block {
  text-align: center;
  border-right: 1px solid #00000036;
  padding-right: 16px;
  width: 50%;
}

.rera-block h5 {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
  margin-top: 6px;
}

.rera-block span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.rera-block img {
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 1.5rem var(--section-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 1rem;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

footer p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

footer a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  text-decoration: none;
  display: inline-block;
  margin: auto;
}

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

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
  white-space: nowrap;
}

.float-btn:hover {
  transform: translateY(-2px);
}

.float-call {
  background: var(--charcoal);
  color: #fff;
}

.float-wa {
  background: #25D366;
  color: #fff;
}

/* ============================================================
   MODAL â€” General (Schedule Visit)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  display: flex;
  width: 100%;
  max-width: 820px;
  max-height: 92dvh;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Left image panel */
.modal-image-panel {
  flex: 0 0 300px;
  position: relative;
  overflow: hidden;
}

.modal-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 8, 0.95) 0%, rgba(20, 16, 8, 0.5) 50%, rgba(20, 16, 8, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.8rem;
}

.modal-image-content {
  color: #fff;
}

.modal-img-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-img-eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.modal-image-content h4 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff;
}

.modal-img-sub {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.modal-img-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-img-badges span {
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  width: fit-content;
}

/* Right form panel */
.modal-form-panel {
  flex: 1;
  background: #fff;
  padding: 2.5rem 2.2rem;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close:hover {
  color: var(--charcoal);
  background: var(--rule);
}

.modal-form-header h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.modal-form-header p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

/* ============================================================
   PROJECT MODALS
   ============================================================ */
.project-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.project-modal-overlay.open {
  display: flex;
}

.project-modal {
  display: flex;
  width: 100%;
  max-width: 850px;
  max-height: 92dvh;
  max-height: 92vh;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Left branding panel */
.project-modal-info {
  flex: 0 0 50%;
  background: var(--charcoal);
  /* padding: 2.8rem 2rem; */
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.project-modal-info::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.project-modal-info::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.project-modal-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  font-weight: 500;
  width: fit-content;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.project-modal-info h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.project-modal-location {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.project-modal-location::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--gold);
  display: block;
  flex-shrink: 0;
}

.project-modal-details {
  position: relative;
  z-index: 1;
}

.project-modal-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.project-modal-price-note {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.4rem;
}

.project-modal-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-modal-feature {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-modal-feature::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Right form panel */
.project-modal-form {
  flex: 1;
  background: #fff;
  padding: 0.4rem 2.2rem;
  overflow-y: auto;
  position: relative;
}

.project-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 5;
}

.project-modal-close:hover {
  color: var(--charcoal);
  background: var(--rule);
}

.project-modal-form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  text-align: center;
}

.project-modal-form-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 500;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
  opacity: 0;
  min-width: 280px;
  display: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.toast strong {
  font-size: 0.88rem;
  display: block;
  margin-bottom: 2px;
}

.toast p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ============================================================
   BANNER IMAGE SECTION
   ============================================================ */
.banner-section {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--charcoal);
}

.banner-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.banner-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.banner-slide.active img {
  transform: scale(1.06);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 28, 30, 0.72) 0%, rgba(28, 28, 30, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 3.5rem var(--section-x);
}

.banner-caption {
  color: #fff;
  max-width: 480px;
}

.banner-caption .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 1rem;
  font-weight: 500;
}

.banner-caption h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  color: #fff;
}

.banner-caption p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.banner-controls {
  position: absolute;
  bottom: 2.5rem;
  right: var(--section-x);
  display: flex;
  gap: 10px;
  align-items: center;
}

.banner-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.banner-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.banner-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-right: 12px;
}

.banner-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.banner-dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 3px;
}

.banner-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  transition: width 0.1s linear;
}

.banner-label {
  position: absolute;
  top: 2.5rem;
  right: var(--section-x);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.banner-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.banner-counter {
  position: absolute;
  top: 2.5rem;
  left: var(--section-x);
  font-family: var(--serif);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.banner-counter span {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.rera-section .reras {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.rera-section .reras .rera {
  display: flex;
  justify-content: center;
  gap: 0 16px;
  margin-top: 1%;
}

.read-more-wrap input {
  display: none;
}

.content .more-text {
  display: none;
}

.read-more-btn {
  color: wheat;
  cursor: pointer;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
  font-size: 12px;
}

/* Default text */
.read-more-btn::after {
  content: "Read More";
}

/* When checked */
#toggle-text:checked~.content .more-text {
  display: inline;
}

#toggle-text:checked~.read-more-btn::after {
  content: " Read Less";
}

.rera-section .read-more-wrap {
  text-align: center;
  font-size: 10px;
  margin-top: 20px;
}

.rera-section .rera-block:last-child {
  border-right: none;
}

.rera-section .reras .rera-block {
  text-align: center;
}

@media (max-width: 1440px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}

@media (max-width: 1366px) {
  .hero {
    min-height: calc(100vh - 68px);
  }
}


/* ============================================================
   BREAKPOINT: â‰¤ 1200px â€” laptop
   ============================================================ */
@media (max-width: 1266px) {
  .hero-right {
    width: 360px;
    padding: 2.2rem 1.8rem;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    min-height: 103vh;
  }

}

/* ============================================================
   BREAKPOINT: â‰¤ 1024px â€” tablet landscape
   ============================================================ */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-section {
    gap: 4rem;
  }

  .contact-strip {
    gap: 3vw;
  }

  .hero-right {
    width: 340px;
  }
}

/* ============================================================
   BREAKPOINT: â‰¤ 900px â€” tablet portrait
   ============================================================ */
@media (max-width: 900px) {
  nav {
    height: 60px;
  }

  /* Nav links collapse */
  .nav-links {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem var(--section-x) 3.5rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    width: 100%;
    max-width: 520px;
    align-self: auto;
    padding: 2rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  .hero-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem);
  }

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

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--rule);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--rule);
    border-right: none;
  }

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

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

  .about-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .modal-image-panel {
    display: none;
  }

  .project-modal-info {
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
  }

  .modal,
  .project-modal {
    max-width: 480px;
  }

  .banner-section {
    height: 400px;
  }
}

/* ============================================================
   BREAKPOINT: â‰¤ 768px â€” large phone
   ============================================================ */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    flex-direction: column;
    gap: 0.3rem;
  }

  .timeline-year {
    font-size: 1rem;
    min-width: auto;
  }

  .banner-section {
    height: 340px;
  }

  .banner-caption h3 {
    font-size: 1.4rem;
  }

  .float-cta {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .float-btn {
    padding: 10px 14px;
    font-size: 0.75rem;
  }

  .modal-overlay,
  .project-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal,
  .project-modal {
    max-width: 100%;
    width: 100%;
    max-height: 91dvh;
    max-height: 100vh;
    overflow-y: auto;
    animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    flex-direction: column;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0.6;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .modal-form-panel,
  .project-modal-form {
    overflow-y: visible;
  }

  .rera-section .reras .rera {
    text-align: center;
    text-align: center;
    /* flex-direction: column; */
    gap: 20px;
    margin-top: 10%;
    flex-wrap: wrap;
  }

  .rera-section .reras .rera img {
    width: 50px;
  }

  .rera-section .rera-block {
    flex: 40%;
  }

  .rera-section .rera .rera-block:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .hero-indicators {
    bottom: 1.5rem;
  }
}

/* ============================================================
   BREAKPOINT: â‰¤ 600px â€” phone
   ============================================================ */
@media (max-width: 600px) {
  :root {
    --section-x: 1.1rem;
    --section-y: 3rem;
  }

  nav {
    padding: 0 1.1rem;
    height: 56px;
  }

  .nav-logo img {
    height: 30px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 2rem;
  }

  .hero-badges {
    gap: 8px;
    margin-bottom: 2rem;
  }

  .badge {
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }

  .hero-slide-nav {
    margin-top: 1.75rem;
  }

  /* Stats */
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item {
    padding: 1.25rem 0.75rem;
    border-right: 1px solid var(--rule);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  /* Sections */
  .section-header {
    margin-bottom: 2rem;
  }

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

  .project-card {
    padding: 1.75rem 1.25rem;
  }

  .project-name {
    font-size: 1.3rem;
  }

  .project-price {
    font-size: 1.15rem;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-item {
    padding: 1.5rem 0.9rem;
  }

  .amenity-icon {
    font-size: 1.5rem;
  }

  .amenity-name {
    font-size: 0.95rem;
  }

  .amenity-desc {
    font-size: 0.72rem;
  }

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

  /* Contact */
  .contact-strip {
    gap: 2.5rem;
  }

  .contact-item-text a,
  .contact-item-text span {
    font-size: 0.88rem;
  }

  /* RERA */
  .rera-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem var(--section-x);
  }

  .rera-section .rera-block {
    text-align: center;
    padding-right: 0;
    border-right: 0;
  }

  /* Footer */
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem var(--section-x);
  }

  /* Modals */
  .modal-form-panel,
  .project-modal-form {
    padding: 1.5rem 1.1rem;
  }

  /* Floating CTAs */
  .float-cta {
    bottom: 0.75rem;
    right: 0.75rem;
    gap: 7px;
  }

  .float-btn {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  /* Toast */
  .toast {
    width: calc(100% - 2rem);
    min-width: auto;
    left: 1rem;
    right: 1rem;
    transform: translateX(0) translateY(80px);
    bottom: 1rem;
  }

  .toast.show {
    transform: translateX(0) translateY(0);
  }

  /* Banner */
  .banner-section {
    height: 280px;
  }

  .banner-caption p {
    display: none;
  }

  .hero-bg-slider .bg-slide img {
    height: 100%;
    object-fit: unset;
  }

  .hero {
    min-height: 65vh;
  }
}

/* ============================================================
   BREAKPOINT: â‰¤ 400px â€” small phones
   ============================================================ */
@media (max-width: 400px) {
  :root {
    --section-x: 0.9rem;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-cta {
    padding: 7px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.78rem;
  }

  .hero-inner {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .stat-num {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .project-card {
    padding: 1.4rem 1rem;
  }

  .project-name {
    font-size: 1.2rem;
  }

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

  .amenity-item {
    padding: 1.2rem 0.6rem;
  }

  .amenity-icon {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }

  .amenity-name {
    font-size: 0.88rem;
  }

  .modal-form-panel,
  .project-modal-form {
    padding: 1.25rem 0.9rem;
  }

  .float-btn {
    padding: 8px 10px;
    font-size: 0.68rem;
    gap: 5px;
  }

  .banner-section {
    height: 240px;
  }
}

/* ============================================================
   PRINT (bonus: hides interactive chrome)
   ============================================================ */
@media print {

  nav,
  .float-cta,
  .toast,
  .modal-overlay,
  .project-modal-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
  }
}

.new-form-mobile {
  display: none;
}


.desktop-fixed-btn {
  position: fixed;
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.desktop-fixed-btn button {
  transform: rotate(-90deg);
  transform-origin: center;
  white-space: nowrap;
  padding: 10px 20px;
}



@media(min-width:1400px) {
  .hero-bg-slider .bg-slide img {
    /* height: auto; */
    object-fit: unset;
  }
}

@media (max-width: 768px) {
  .new-form-mobile {
    display: block;
  }

  .desktop-fixed-btn {
    display: none;
  }
}

@media screen and (min-width: 1400px) and (max-width: 1440px) and (min-height: 850px) and (max-height: 900px) {

  .hero {
    min-height: calc(84vh - 68px);
  }
}



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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.gallery-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: .8s;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .95),
      rgba(0, 0, 0, .4),
      transparent);
}

.gallery-count {
  display: block;
  color: #c9a065;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.gallery-overlay h4 {
  color: #fff;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, .25),
      transparent);
  transform: skewX(-25deg);
  transition: 1s;
}

.gallery-item:hover::after {
  left: 150%;
}

/* ==========================
   LIGHTBOX
========================== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

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

#lightbox-img {
  max-width: 90%;
  max-height: 75vh;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
}

.close-btn:hover {
  color: #c9a065;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 26px;
  transition: .3s;
}

.prev {
  left: 40px;
}

.next {
  right: 40px;
}

.prev:hover,
.next:hover {
  background: #c9a065;
  color: #000;
}

.lightbox-info {
  margin-top: 25px;
  text-align: center;
}

#lightbox-title {
  color: #fff;
  margin-bottom: 10px;
}

#counter {
  color: #c9a065;
  letter-spacing: 2px;
}


.qr-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;

  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

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

.qr-lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.qr-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
}

h4#qrTitle,
span#qrRera {
  color: #fff;
}

@media(max-width:991px) {

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

@media(max-width:576px) {

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

  .gallery-item img {
    height: 260px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .prev,
  .next {
    width: 45px;
    height: 45px;
  }
}