/* ============================================================
   ONEPACK REAL ESTATE — COMPLETE CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Serif+Display:ital@0;1&display=swap');

/* ────────────────────────────────────────────────────
   CSS VARIABLES
──────────────────────────────────────────────────── */
:root { 
  --primary: #eaa022;
  --primary-dark: #8a6f44;
  --primary-light: #eaa122c7;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --body-bg: #f5f2ee;
  --white: #ffffff;
  --text: #555555;
  --text-dark: #222222;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(255, 255, 255, 0.12);
  --radius: 0px;
  --radius-sm: 4px;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-main: 'Outfit', sans-serif;
  --font-display: 'DM Serif Display', serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 70px;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ────────────────────────────────────────────────────
   PRELOADER
──────────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  pointer-events: all;
}

.preloader-panel {
  flex: 1;
  background: var(--dark);
  transform-origin: top;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-panel:nth-child(2) {
  transition-delay: 0.08s;
}

.preloader-panel:nth-child(3) {
  transition-delay: 0.16s;
}

.preloader-panel:nth-child(4) {
  transition-delay: 0.24s;
}

.preloader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  z-index: 2;
  text-align: center;
}

.preloader-count {
  display: block;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

body.loaded #preloader .preloader-panel {
  transform: scaleY(0);
}

/* ────────────────────────────────────────────────────
   CUSTOM CURSOR
──────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transition: width 0.2s, height 0.2s, background 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 60px;
  height: 60px;
  background: rgba(183, 155, 111, 0.15);
}

/* ────────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 50px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

#header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #F5F2EE;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}

#header.scrolled {
  height: 70px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

#header.scrolled::before {
  background: rgba(245, 242, 238, 0.95);
  backdrop-filter: blur(20px);
}

#header.header-dark::before {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
}

#header.header-dark.scrolled::before {
  background: rgba(10, 10, 10, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  font-weight: 700;
}

#header.scrolled .logo,
#header.header-light .logo {
  color: var(--dark);
}

#header.header-light.scrolled .logo {
  color: var(--dark);
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark-2);
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s;
}

nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

nav a.active {
  color: var(--primary);
}

nav a.active::after {
  width: 100%;
}

#header.scrolled nav a,
#header.header-light nav a {
  color: var(--dark-2);
}

#header.scrolled nav a:hover,
#header.header-light nav a:hover {
  color: var(--primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-contact {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* color: rgba(255,255,255,0.7); */
  transition: color 0.3s;
}

#header.scrolled .header-contact,
#header.header-light .header-contact {
  color: var(--text-dark);
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 34px;
}

.btn-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--dark);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-header:hover::before {
  height: 100%;
}

.btn-header:hover {
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.btn-header span,
.btn-header svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  width: 38px;
  height: 38px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

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

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

#header.scrolled .hamburger span,
#header.header-light .hamburger span {
  background: var(--dark);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--dark);
  z-index: 9999;
  padding: 80px 40px 40px;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-menu nav a {
  padding: 18px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  display: block;
  letter-spacing: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex !important;
  z-index: 10000;
}

.mobile-menu-close.hamburger span {
  background: var(--white) !important;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ────────────────────────────────────────────────────
   HERO — HOMEPAGE
──────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 0 50px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG_1540.jpg');
  background-size: cover;
  background-position: top;
  /* filter: brightness(0.55); */
  animation: zoomInOut 25s ease-in-out infinite;
  transform-origin: center;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Vertical grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  /* display: grid; */
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-line {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Golden gradient glow */
.hero-golden-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top,
      rgba(183, 155, 111, 0.45) 0%,
      rgba(150, 110, 60, 0.2) 30%,
      transparent 70%);
  z-index: 2;
  pointer-events: none;
}

.hero-vignette {
  position: absolute;
  inset: 0;
background:
  radial-gradient(
    ellipse at 20% 80%,
    rgba(234, 160, 34, 0.08) 0%,
    transparent 70%
  ),
  linear-gradient(
    to bottom,
    rgba(234, 160, 34, 0.05) 0%,
    rgba(234, 160, 34, 0.00) 40%,
    rgba(234, 160, 34, 0.03) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

.hero-scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Hero title with fan animation */
.hero-title-area {
  position: relative;
  cursor: default;
  margin-bottom: 40px;
}

.hero-title-area h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

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

/* Fan cards container */
.fan-cards-container {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-30%);
  width: 600px;
  height: 260px;
  z-index: 10;
  pointer-events: none;
}

.fan-card {
  position: absolute;
  width: 180px;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateY(0deg) rotate(0deg);
}

.fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title-area:hover .fan-card {
  opacity: 1;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.btn-explore::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transform: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-explore span,
.btn-explore svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.btn-explore:hover::before {
  height: 100%;
  transform: none;
}

.btn-explore:hover {
  color: var(--dark);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
  transform: translateY(-3px);
}

.hero-call {
  color: var(--text-dark);
}

.hero-call .label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-call .number {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

/* Follow us vertical */
.hero-follow {
  position: absolute;
  right: 50px;
  bottom: 80px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-follow .follow-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.hero-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--primary));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ────────────────────────────────────────────────────
   INNER PAGE HERO (About, Projects, Contact, Details)
──────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: center;
  padding: 120px 50px 60px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top;
  /* filter: brightness(0.45); */
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(15deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(183, 155, 111, 0.2) 20%);
  z-index: 1;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  pointer-events: none;
  z-index: 2;
}

.page-hero-grid div {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

@media (max-width: 768px) {
  .page-hero-content {
    max-width: fit-content;
    padding: 30px 35px;
    /* background: rgba(255, 255, 255, 0.15); */
    backdrop-filter: blur(5px);
    /* -webkit-backdrop-filter: blur(15px); */
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

/* Title area with fan cards - for inner pages */
.page-title-fan-area {
  position: relative;
  display: inline-block;
  cursor: default;
}

.page-title-fan-area h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 400;
  line-height: 1.05;
  /* color: var(--white); */
  color: var(--dark);
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

/* Inner page fan cards */
.page-fan-cards {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -70%);
  width: 700px;
  height: 280px;
  pointer-events: none;
  z-index: 10;
}

.page-fan-card {
  position: absolute;
  width: 190px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  top: 50%;
  left: 50%;
  will-change: transform, opacity;
}

.page-fan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title-fan-area:hover .page-fan-card {
  opacity: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}

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

.page-breadcrumb .sep {
  color: var(--dark);
  font-size: 20px;
}

.page-breadcrumb .current {
  color: var(--dark);
}

/* ────────────────────────────────────────────────────
   SECTION BASE STYLES
──────────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--body-bg);
}

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

.section-dark {
  background: var(--dark-2);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -1px;
  max-width: 750px;
}

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

.section-title em {
  font-style: italic;
  color: var(--primary);
}


/* ────────────────────────────────────────────────────
   ABOUT SECTION
──────────────────────────────────────────────────── */
#about {
  background: var(--body-bg);
}

.kreeva-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .kreeva-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

.about-tag-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.about-tag-text {
  font-size: 13px;
  color: #B79B6F;
  font-weight: 500;
}

.about-tag-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  color: #111;
  letter-spacing: -1px;
  max-width: 650px;
}

.about-user-stack {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.user-avatars {
  display: flex;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--body-bg);
  overflow: hidden;
  margin-left: -14px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.user-avatar:first-child {
  margin-left: 0;
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-stack-count {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1;
}

.user-stack-label {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.about-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
}

.btn-about-company {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
}

.btn-about-company::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-about-company:hover::before {
  height: 100%;
}

.btn-about-company:hover {
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
  transform: translateY(-3px);
  opacity: 1;
}

.btn-about-company span,
.btn-about-company svg,
.btn-about-company i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transform: none;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.btn-primary:hover::before {
  height: 100%;
  transform: none;
}

.btn-primary:hover {
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid var(--text-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
}

.btn-outline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--dark);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-outline:hover::before {
  height: 100%;
}

.btn-outline:hover {
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  background: transparent;
}

.btn-outline span,
.btn-outline svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* ────────────────────────────────────────────────────
   ABOUT SECTION — MARQUEE TAG ROWS
──────────────────────────────────────────────────── */
.about-right {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 40px 0;
  /* extend past container edge for full bleed feel */
  margin-right: -50px;
}

.tag-marquee-row {
  overflow: hidden;
  display: flex;
  width: 100%;
}

.tag-marquee-inner {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  animation: tagScrollLeft 22s linear infinite;
  will-change: transform;
  padding-right: 12px;
}

.tag-marquee-row.row-reverse .tag-marquee-inner {
  animation-name: tagScrollRight;
  animation-duration: 26s;
}

.tag-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 16px 36px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  background: transparent;
  font-size: 24px;
  font-weight: 300;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.tag-pill-count {
  font-weight: 400;
  color: #111;
}

.tag-pill:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.02);
}

@keyframes tagScrollLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes tagScrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* old chips removed — replaced by marquee rows above */

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--border);
}

.stat-item {
  padding: 40px 30px;
  border-right: 1px solid var(--border);
  position: relative;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span.unit {
  font-size: 0.5em;
  color: var(--primary);
}

.stat-label {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* ────────────────────────────────────────────────────
   PROJECTS / PORTFOLIO
──────────────────────────────────────────────────── */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  border-radius: 100px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-card:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
}

.project-card:nth-child(2) {
  grid-column: span 5;
}

.project-card:nth-child(3) {
  grid-column: span 5;
}

.project-card:nth-child(4) {
  grid-column: span 4;
}

.project-card:nth-child(5) {
  grid-column: span 8;
}

.project-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-card:nth-child(1) .project-card-img {
  aspect-ratio: 3/4;
  height: 100%;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.project-card:hover .project-card-overlay {
  opacity: 1;
}

.project-card-info {
  padding: 20px 0 0;
}

.project-location {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.project-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s;
}

.project-card:hover .project-name {
  color: var(--primary);
}

.project-overlay-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  font-weight: 400;
}

.project-overlay-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.project-overlay-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.project-overlay-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
}

/* ────────────────────────────────────────────────────
   ARCHITECTURAL SKETCH SECTION
──────────────────────────────────────────────────── */
#sketch-section {
  position: relative;
  width: 100%;
  background: #f5f5f3;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sketch-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

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

/* Hotspot zones over the sketch */
.hotspot-zone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  z-index: 3;
}

.hotspot-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border: 1px solid var(--primary);
  z-index: 4;
}

.hotspot-zone:hover+.hotspot-label {
  opacity: 1;
}

.hotspot-reveal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.hotspot-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.hotspot-zone:hover .hotspot-reveal {
  opacity: 1;
  visibility: visible;
}

.hotspot-zone:hover .hotspot-reveal img {
  transform: scale(1);
}

/* Add a blinking overlay to hotspot zones to indicate they are hoverable */
.hotspot-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(183, 155, 111, 0.15);
  /* light gold tint */
  animation: zoneBlink 2s infinite alternate ease-in-out;
  pointer-events: none;
  /* so hover works on the zone itself */
  z-index: 2;
  transition: opacity 0.4s;
}

@keyframes zoneBlink {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 0.8;
  }
}

/* Hide the blinking overlay on hover */
.hotspot-zone:hover::before {
  opacity: 0;
  animation: none;
}

.sketch-section-label {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sketch-section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--primary);
}

/* ────────────────────────────────────────────────────
   EXPERTISE / SERVICES — LIGHT PREMIUM VERSION
──────────────────────────────────────────────────── */
#expertise {
  /* background: linear-gradient(135deg, var(--white) 0%, var(--body-bg) 100%); */
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

/* Expertise Hero Heading */
.expertise-hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
}

.expertise-big-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 400;
  color: var(--dark);
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.expertise-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 400px;
  line-height: 1.7;
  margin-left: 4px;
}

/* Service rows — slide in from right */
.expertise-rows {
  display: flex;
  flex-direction: column;
}

.expertise-row {
  display: grid;
  grid-template-columns: 380px 1fr 220px;
  gap: 40px;
  align-items: start;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-row.slide-in {
  opacity: 1;
  transform: translateX(0);
}

.expertise-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.expertise-row-left {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.expertise-row-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
  min-width: 32px;
  flex-shrink: 0;
  padding-top: 8px;
}

.expertise-row-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.4s ease, transform 0.4s ease;
  display: inline-block;
}

.expertise-row:hover .expertise-row-name {
  color: var(--primary);
  transform: translateX(10px);
}

.expertise-row-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  padding-top: 6px;
}

.expertise-row-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
  align-items: flex-end;
}

.expertise-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: color 0.4s ease, transform 0.4s ease;
  opacity: 0.7;
}

.expertise-row:hover .expertise-tag {
  color: var(--dark);
  opacity: 1;
  transform: translateX(-5px);
}

/* ────────────────────────────────────────────────────
   TESTIMONIALS
──────────────────────────────────────────────────── */
#testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 16px;
}

.rating-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
}

.rating-sub {
  font-size: 12px;
  color: var(--text);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  padding: 50px 40px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.testimonial-card:hover {
  border-color: rgba(183, 155, 111, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.testimonial-quote-icon {
  font-size: 60px;
  color: var(--primary);
  font-family: var(--font-display);
  line-height: 0.6;
  margin-bottom: 20px;
  opacity: 0.4;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.author-role {
  font-size: 12px;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* ────────────────────────────────────────────────────
   TEAM
──────────────────────────────────────────────────── */
#team {
  background: var(--body-bg);
  overflow: hidden;
}

.team-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.team-large-text {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  line-height: 1;
  margin-bottom: -20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.team-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(30%);
}

.team-card:hover .team-card-img img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.team-card-info {
  padding: 16px 0 0;
}

.team-card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.team-card-role {
  font-size: 11px;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ────────────────────────────────────────────────────
   PROCESS
──────────────────────────────────────────────────── */
#process {
  background: var(--dark-2);
}

.process-header {
  margin-bottom: 70px;
}

.process-header .section-title {
  color: var(--white);
}

.process-header .section-tag {
  color: var(--primary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  padding: 50px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  line-height: 1;
  margin-bottom: 30px;
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--primary);
  transition: var(--transition);
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  color: var(--dark);
  border-color: var(--primary);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.process-step-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* ────────────────────────────────────────────────────
   BLOG
──────────────────────────────────────────────────── */
#blog {
  background: var(--body-bg);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

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

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.blog-card-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.blog-category {
  color: var(--primary);
  font-weight: 600;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 14px;
  transition: color 0.3s;
}

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

.blog-excerpt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, gap 0.3s;
}

.blog-link:hover {
  color: var(--primary);
  gap: 14px;
}

/* ────────────────────────────────────────────────────
   CLIENTS / PARTNERS
──────────────────────────────────────────────────── */
.clients-section {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.clients-track {
  display: flex;
  gap: 80px;
  animation: clientsScroll 25s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes clientsScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition);
  flex-shrink: 0;
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.client-logo img {
  height: 30px;
  object-fit: contain;
}

/* ────────────────────────────────────────────────────
   MARQUEE / CTA SECTION  
──────────────────────────────────────────────────── */
#marquee-section {
  overflow: hidden;
  position: relative;
}

.marquee-top {
  padding: 0 50px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}



.marquee-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
}

.marquee-meta-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.marquee-cta-center {
  text-align: center;
}

.marquee-join-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}

.btn-dark-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
}

.btn-dark-gold::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-dark-gold:hover::before {
  height: 100%;
}

.btn-dark-gold:hover {
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
  transform: translateY(-3px);
  background: var(--dark);
}

.btn-dark-gold span,
.btn-dark-gold svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* The big marquee text */
.marquee-text-track {
  /* padding: 50px 0 30px; */
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(70px, 10vw, 100px);
  font-weight: 400;
  color: var(--dark);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 0.85;
}

.marquee-item::after {
  content: '✦';
  font-size: 0.4em;
  color: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ────────────────────────────────────────────────────
   FOOTER — REDESIGNED
──────────────────────────────────────────────────── */
#footer {
  /* background: #0a0a0a; */
  overflow: hidden;
  position: relative;
}

.footer-main {
  position: relative;
  padding: 80px 0 60px;
}

.footer-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(230, 168, 57, 0.8),
    transparent
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.footer-brand .logo {
  font-size: 22px;
  margin-bottom: 24px;
  display: inline-flex;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.9;
  /* color: rgba(255, 255, 255, 0.5); */
  max-width: 300px;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-consult-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-consult-link:hover {
  color: var(--primary-light);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  /* color: rgba(255, 255, 255, 0.4); */
  margin-bottom: 24px;
}

/* Two-column nav within footer nav column */
.footer-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-links a {
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.55); */
  transition: color 0.3s, padding-left 0.3s;
  display: block;
  padding: 7px 0;
  border-bottom: 1px solid rgba(80, 87, 99, 0.3);
}

.footer-links a:last-child {
  border-bottom: none;
}

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

.footer-contact-item {
  display: flex;
  gap: 0;
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.55); */
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(80, 87, 99, 0.3);
  line-height: 1.6;
}

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

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  /* color: rgba(255, 255, 255, 0.45); */
  padding: 8px 0;
  border-bottom: 1px solid rgba(80, 87, 99, 0.3);
  gap: 16px;
}

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

.footer-hours-day {
  /* color: rgba(255, 255, 255, 0.3); */
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.footer-hours-time {
  /* color: rgba(255, 255, 255, 0.6); */
  font-size: 14px;
}

.footer-hours-closed {
  color: rgba(255, 0, 0, 0.5);
  font-size: 11px;
  font-style: italic;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

.footer-bottom-text a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-bottom-text a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  text-decoration: none;
  letter-spacing: 0;
}

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

/* Footer outline marquee — HUGE text at very bottom */
.footer-marquee-wrap {
  padding: 0 0 50px;
  /* overflow: hidden; */
  position: relative;
  border-bottom: 1px solid var(--primary);
}

.footer-marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: footerMarquee 25s linear infinite;
  will-change: transform;
  font-size: 220px; /* Desktop */
  margin-right: 80px;

}

/* Tablet */
@media (max-width: 991px) {
  .footer-marquee-track {
    animation-duration: 8s;

  }
}

@media (max-width: 767px) {
  .footer-marquee-text {
    font-size: 90px;      /* Reduce size */
    margin-right: 30px;   /* Reduce gap */
  }

  .footer-marquee-track {
    animation-duration: 16s;
  }
}

.footer-marquee-text {
  font-family: var(--font-display);
  font-size: clamp(80px, 13vw, 180px);
  font-weight: 400;
  /* color: transparent; */
  -webkit-text-stroke: 1px #505763b7;
  white-space: nowrap;
  letter-spacing: -2px;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes footerMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ────────────────────────────────────────────────────
   PROJECT DETAILS PAGE
──────────────────────────────────────────────────── */

.project-detail-img {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

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

.project-detail-meta-bar {
  background: var(--dark);
  padding: 40px 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.meta-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 30px;
}

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

.meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.meta-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.project-detail-body {
  padding: 100px 0;
  background: var(--body-bg);
  padding-top: 90px;
}

.project-detail-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 80px;
  align-items: start;
}

.project-detail-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.project-detail-text p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.project-gallery-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.project-sidebar {
  position: fixed;
  top: 120px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-detail {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.sidebar-detail-label {
  color: var(--text);
}

.sidebar-detail-value {
  color: var(--text-dark);
  font-weight: 600;
}

.progress-bar-wrap {
  margin-top: 30px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text);
  margin-bottom: 8px;
}

.progress-bar {
  height: 3px;
  background: var(--border);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  width: 0%;
  transition: width 1.5s ease;
}

/* ────────────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────────────── */
#contact-section {
  background: var(--body-bg);
  padding: 120px 0;
}



/* ────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.revealed {
  opacity: 1;
}

/* Accessibility: disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ────────────────────────────────────────────────────
   PROJECTS PAGE
──────────────────────────────────────────────────── */
.all-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-list-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  border-radius: 20px;
}

.project-list-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.project-list-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-list-img img {
  /* object-fit: ; */
  transition: transform 0.7s ease;
}

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

.project-list-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  background: var(--white);
}

.project-list-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.project-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 4px 10px;
  border: 1px solid var(--primary);
  border-radius: 100px;
}

.project-list-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.project-list-card:hover .project-list-name {
  color: var(--primary);
}

.project-list-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .process-step {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expertise-left {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  #header {
    padding: 0 30px;
  }

  nav {
    gap: 24px;
  }

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

  .about-right {
    height: 400px;
  }

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

  .project-card:nth-child(n) {
    grid-column: span 6 !important;
    grid-row: span 1 !important;
  }

  .testimonials-slider {
    grid-template-columns: 1fr 1fr;
  }

  .all-projects-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .marquee-top {
    grid-template-columns: 1fr 1fr;
  }

  #header nav {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .btn-header {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 0 24px;
  }

  .container {
    padding: 0 24px;
  }

  .section {
    padding: 60px 0;
  }

  #hero {
    padding: 0 24px 60px;
  }

  .hero-follow {
    right: 24px;
    bottom: 60px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .all-projects-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-content {
    grid-template-columns: 1fr;
  }

  .project-detail-meta-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 24px;
  }

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

  .contact-form-wrap {
    padding: 30px 24px;
  }

  .marquee-top {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .project-card:nth-child(n) {
    grid-column: span 12 !important;
  }

  .page-fan-cards {
    display: none;
  }

  .fan-cards-container {
    display: none;
  }
}






/* ======================================
   FLOOR PLAN SECTION
====================================== */

.fpx-floorplan-section {
  padding: 100px 0;
  background: var(--body-bg);
}

.fpx-container {
  width: min(1320px, 92%);
  margin: auto;
}

/* ======================================
   HEADING
====================================== */

.fpx-heading {
  margin-bottom: 55px;
}

.fpx-subtitle {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.fpx-subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, .08);
}

.fpx-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1.05;
  font-weight: 400;
  color: var(--dark);
  max-width: 900px;
}

/* ======================================
   MAIN CARD
====================================== */

.fpx-floorplan-card {
  background: #fff;
  border-radius: 18px;
  padding: 12px;

  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 12px;

  border: 1px solid rgba(0, 0, 0, .04);
}

/* ======================================
   LEFT MENU
====================================== */

.fpx-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fpx-tab {
  height: 60px;
  border: none;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 24px;

  background: #f7f7f7;

  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;

  cursor: pointer;
  transition: var(--transition);
}

.fpx-tab:hover {
  background: #efefef;
}

.fpx-tab.active {
  background: #000;
  color: #fff;
}

.fpx-tab span:last-child {
  font-size: 24px;
}

/* ======================================
   INNER GREY AREA
====================================== */

.fpx-main-content {
  background: #f8f8f8;
  border-radius: 14px;

  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 70px;

  padding: 40px 35px;
}

/* ======================================
   IMAGE AREA
====================================== */

.fpx-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  cursor: pointer;
}

.fpx-image-wrapper img {
  max-width: 100%;
  max-height: 520px;
  width: auto;
  object-fit: contain;
  transition: .4s ease;
}

.fpx-image-wrapper:hover img {
  transform: scale(1.02);
}

/* ======================================
   CONTENT
====================================== */

.fpx-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fpx-content-inner {
  max-width: 520px;
}

.fpx-description {
  margin: 0 0 35px;

  color: #666;

  font-size: 18px;
  line-height: 1.9;
}

.fpx-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fpx-spec-list li {
  margin-bottom: 22px;
}

.fpx-spec-list strong {
  color: var(--dark);
  font-weight: 600;
}

.fpx-spec-list span {
  color: #555;
}

/* ======================================
   BUTTONS
====================================== */

.fpx-buttons {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.fpx-btn-primary {
  min-width: 170px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #000;
  color: #fff;

  text-decoration: none;

  font-weight: 500;

  border-radius: 8px;

  transition: .3s;
}

.fpx-btn-primary:hover {
  background: var(--primary);
}

.fpx-btn-secondary {
  min-width: 220px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, .08);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}

.fpx-btn-secondary::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.fpx-btn-secondary:hover::before {
  height: 100%;
}

.fpx-btn-secondary:hover {
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
}

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

.fpx-lightbox {
  position: sticky;
  inset: 0;
  background: rgba(0, 0, 0, .9);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  cursor: pointer;
}

.fpx-lightbox img {
  max-width: 90%;
  max-height: 90%;
}

/* ======================================
   RESPONSIVE
====================================== */

@media(max-width:1200px) {

  .fpx-main-content {
    grid-template-columns: 380px 1fr;
    gap: 40px;
  }

  .fpx-title {
    font-size: 60px;
  }

}

@media(max-width:991px) {

  .fpx-floorplan-card {
    grid-template-columns: 1fr;
  }

  .fpx-main-content {
    grid-template-columns: 1fr;
  }

  .fpx-image-wrapper {
    min-height: 420px;
  }

  .fpx-title {
    font-size: 48px;
  }

}

@media(max-width:767px) {

  .fpx-floorplan-section {
    padding: 70px 0;
  }

  .fpx-title {
    font-size: 38px;
  }

  .fpx-buttons {
    flex-direction: column;
  }

  .fpx-btn-primary,
  .fpx-btn-secondary {
    width: 100%;
  }

}



/* ======================================
   MAP SECTION
====================================== */
.map-section-container {
  /* max-width: 1100px; */
  margin: 60px auto 20px auto;
  font-family: var(--font-display);

  /* padding: 0 20px; */
}

.map-title {
  text-align: center;
  color: #111111;
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

#kreeva-interactive-map {
  width: 100%;
  height: 550px;
  /* Explicit height constraints */
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
  border: 1px solid #eaeaea;
  display: block;
  /* Ensures container renders properly */
}

/* Premium Location Grid Overhaul Styling */
.premium-location-advantages {
  /* max-width: 1100px; */
  margin: 40px auto 80px auto;
  /* padding: 0 20px; */
  font-family: var(--font-display);
  box-sizing: border-box;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.advantages-card {
  border-top: 2px solid #111111;
  padding-top: 20px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.card-icon {
  font-size: 1.2rem;
  opacity: 0.8;
}

.advantages-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: #111111;
  margin: 0;
  letter-spacing: -0.3px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}

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

/* Micro-interaction highlight effects */
.linkable-item {
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.linkable-item:hover {
  transform: translateX(4px);
  opacity: 0.85;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.location-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
}

.location-meta {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.4;
}

.distance-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111111;
  background: #f7f7f7;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #e0e0e0;
}

.distance-tag.main-project {
  background: #f3ece2;
  color: #8c7653;
  border-color: #e6dcce;
}

/* Custom Tooltip Interface overrides */
.leaflet-tooltip-kreeva {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  padding: 8px 14px !important;
}

.leaflet-tooltip-kreeva:before {
  display: none !important;
}

.tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tooltip-title {
  color: #1a202c;
  font-size: 13px;
  font-weight: 600;
}

.tooltip-distance {
  color: #718096;
  font-size: 11px;
  font-weight: 500;
}

.tooltip-main-title {
  color: #8c7653;
  font-size: 14px;
  font-weight: 700;
}

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


/* ────────────────────────────────────────────────────
   ABOUT SECTION NEW
──────────────────────────────────────────────────── */
.about-section {
  padding: 80px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-left {
  max-width: 520px;
}

.tag-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.tag-text {
  /* font-size: 12px; */
  color: #B79B6F;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tag-line {
  flex: 1;
  height: 1px;
  background: #e2e2e2;
}

.about-title {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  /* margin-bottom: 36px; */
  /* letter-spacing: -1.05px; */
  font-family: var(--font-display);
}

.user-review {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  background: #ddd;
}

.avatars img:first-child {
  margin-left: 0;
}

.review-text strong {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  display: block;
  line-height: 1.3;
}

.review-text span {
  font-size: 11px;
  color: #999;
}

.divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
  margin: 28px 0;
}

.about-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.85;
  margin-bottom: 36px;
}

.btn-black {
  display: inline-flex;
  background: #111;
  color: #fff;
  padding: 13px 26px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 4px;
}

.btn-black::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: all 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

.btn-black:hover::before {
  height: 100%;
}

.btn-black:hover {
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(183, 155, 111, 0.2);
  transform: translateY(-3px);
  background: transparent;
}

.btn-black span,
.btn-black svg {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Right marquee */
.about-right {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}

.pill-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.pill-inner {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.row-left .pill-inner {
  animation: scrollLeft 22s linear infinite;
}

.row-right .pill-inner {
  animation: scrollRight 22s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 22px 40px;
  border: 1px solid #e6e6e6;
  border-radius: 50px;
  font-size: 34px;
  font-weight: 400;
  /* color: #aaa; */
  white-space: nowrap;
  /* background: #fff; */
  flex-shrink: 0;
}

.pill strong {
  color: #333;
  font-weight: 400;
}

@media (max-width: 780px) {}

/* ============================================================
   BLENDING SECTION — PRODUCTION EXACT MATCH
   ============================================================ */

.blending-section {
  position: relative;
  /* background-color: #efefed; */
  z-index: 50;
}

.blending-sticky {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 8vh 24px 24px;
  box-sizing: border-box;
}

/* ── Title: big, behind everything, anchored top-center ── */
.blending-header {
  position: relative;
  width: 100%;
  text-align: center;
  flex: 0 0 auto;
  z-index: 1;
  pointer-events: none;
  margin-bottom: 2vh;
}

.blending-title {
  font-family: var(--font-display, "Inter", sans-serif);
  font-size: clamp(5rem, 13.5vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0d0d0d;
  line-height: 0.88;
  margin: 0;
  display: block;
}

.blending-subtitle {
  font-size: 0.95rem;
  /* color: #aaa; */
  margin-top: 10px;
  letter-spacing: 0.01em;
  font-family: var(--font-main, "Inter", sans-serif);
}

/* ── Cards stack: native CSS sticky ── */
.blending-cards-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  padding-bottom: 20vh;
  /* space for the last card to remain stacked */
}

.blending-card {
  position: fixed;
  top: calc(14vh + 24px);
  /* centered vertically when stuck */
  height: calc(100vh - 28vh - 48px);
  /* exactly as it was originally */
  min-height: 400px;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 12px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

/* ── Card inner layout ───────────────────────────────────── */
.blending-card-inner {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 12px;
}

/* Left: text area, grey background, rounded */
.blending-card-left {
  flex: 0 0 40%;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.blending-card-title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  font-family: var(--font-main, "Inter", sans-serif);
  letter-spacing: -0.03em;
  margin: 0;
}

.blending-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #777;
  font-weight: 400;
  margin-top: 16px;
}

.blending-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.blending-card-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

/* Right: image fills the rest */
.blending-card-right {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.blending-card-img-wrapper {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.blending-card-img-wrapper img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transform: translateY(0%);
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 860px) {
  .blending-title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .blending-cards-container {
    width: 100%;
  }

  .blending-card-inner {
    flex-direction: column;
  }

  .blending-card-left {
    flex: 0 0 auto;
    padding: 24px 22px 18px;
  }

  .blending-card-left::after {
    display: none;
  }

  .blending-card-right {
    flex: 1 1 auto;
    margin: 0 8px 8px 8px;
    min-height: 0;
  }

  .blending-card-title {
    font-size: 20px;
  }

  .blending-card-desc {
    font-size: 13px;
    margin-top: 8px;
  }

  .blending-card-tags {
    margin-top: 14px;
  }
}

/* ============================================================
   PROPERTY SHOWCASE CAROUSEL SECTION
   ============================================================ */
.property-showcase {
  padding: 120px 0;
  background-color: var(--white);
  overflow: hidden;
}

.showcase-container {
  display: flex;
  gap: 80px;
  align-items: center;
}

.showcase-left {
  flex: 0 0 35%;
  max-width: 450px;
}

.showcase-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 60px;
}

.showcase-nav {
  display: flex;
  flex-direction: column;
}

.showcase-nav-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: var(--transition);
  position: relative;
}

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

.showcase-nav-item .nav-num {
  font-size: 16px;
  color: #ccc;
  margin-right: 20px;
  font-weight: 400;
  transition: var(--transition);
}

.showcase-nav-item .nav-arrow {
  margin-left: auto;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.showcase-nav-item.active .nav-num {
  color: var(--primary);
}

.showcase-nav-item.active .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.showcase-controls {
  display: flex;
  gap: 12px;
  margin-top: 60px;
}

.showcase-prev,
.showcase-next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  transition: var(--transition);
}

.showcase-prev svg,
.showcase-next svg,
.showcase-nav-item .nav-arrow svg,
.kl-icon svg {
  display: block;
}

.showcase-prev:hover,
.showcase-next:hover {
  border-color: var(--dark);
  background-color: var(--dark);
  color: var(--white);
}

.showcase-right {
  flex: 1;
  min-width: 0;
}

.showcase-carousel-wrapper {
  width: 100%;
  overflow: hidden;
}

.showcase-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.showcase-slide {
  flex: 0 0 85%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
}

.showcase-slide img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}

@media (max-width: 1024px) {
  .showcase-container {
    flex-direction: column;
    gap: 40px;
  }

  .showcase-left {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .showcase-slide {
    flex: 0 0 90%;
  }
}


/* ══════════════════════════════════════════════════
   EDITORIAL PROJECTS SECTION (PREMIUM MASONRY)
══════════════════════════════════════════════════ */
.editorial-projects-section {
  position: relative;
  background-color: var(--bg);
  padding: 120px 0 160px;
  overflow: hidden;
  color: var(--text);
}

.editorial-projects-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Sticky Intro Area */
.editorial-intro-sticky {
  position: fixed;
  top: 150px;
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
}

.editorial-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.editorial-title {
  font-size: 5rem;
  font-family: var(--font-display);

  line-height: 1;
  font-weight: 400;
  color: var(--primary);
  margin: 0;
  letter-spacing: -0.02em;
}

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

.editorial-arrow {
  color: var(--gold);
  margin-top: 10px;
  margin-bottom: 20px;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.editorial-arrow.revealed {
  stroke-dashoffset: 0;
}

.editorial-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.editorial-actions {
  margin-top: 20px;
}

/* Masonry Flow Area */
.editorial-masonry-flow {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
  /* Large vertical gap for flowing layout */
  padding-top: 80px;
}

/* Row Layouts */
.ed-row {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.ed-row-large-small {
  align-items: flex-start;
}

.ed-row-featured {
  justify-content: center;
  padding: 40px 0;
}

.ed-row-small-large {
  align-items: flex-end;
}

/* Card Sizes */
.ed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}

.ed-card-large {
  flex: 0 0 calc(65% - 20px);
}

.ed-card-small {
  flex: 0 0 calc(35% - 20px);
  margin-top: 120px;
  /* Offset the small card */
}

.ed-row-small-large .ed-card-small {
  margin-top: 0;
  margin-bottom: 80px;
  /* Offset upwards */
}

.ed-card-featured {
  flex: 0 0 85%;
}

/* Card Visuals */
.ed-card-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Aspect ratios to ensure images look good even before loading completely */
.ed-card-large .ed-card-img {
  aspect-ratio: 4/3;
}

.ed-card-small .ed-card-img {
  aspect-ratio: 3/4;
}

.ed-card-featured .ed-card-img {
  aspect-ratio: 16/9;
}

.ed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

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

/* Overlay for images (subtle darkening) */
.ed-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ed-card:hover .ed-card-img::after {
  opacity: 1;
}

/* Card Content */
.ed-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
}

.ed-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.ed-name {
  font-size: 1.75rem;
  font-family: var(--font-display);

  font-weight: 400;
  color: var(--primary);
  margin: 0;
  position: relative;
  display: inline-block;
}

/* Interactive underline for card title */
.ed-name::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.4s ease;
}

.ed-card:hover .ed-name::after {
  width: 100%;
}

/* Parallax element styling */
.parallax-element {
  will-change: transform;
}

/* Responsive */
@media (max-width: 1024px) {
  .editorial-projects-container {
    flex-direction: column;
    gap: 60px;
    padding: 0 24px;
  }

  .editorial-intro-sticky {
    position: static;
    flex: none;
    width: 100%;
  }

  .editorial-title {
    font-size: 4rem;
  }

  .editorial-masonry-flow {
    padding-top: 20px;
    gap: 80px;
  }
}

@media (max-width: 768px) {
  .ed-row {
    flex-direction: column;
    gap: 40px;
  }

  .ed-card-large,
  .ed-card-small,
  .ed-card-featured {
    flex: none;
    width: 100%;
    margin: 0 !important;
  }

  .ed-card-large .ed-card-img,
  .ed-card-small .ed-card-img,
  .ed-card-featured .ed-card-img {
    aspect-ratio: 4/3;
  }
}


/* ══════════════════════════════════════════════════
   PREMIUM PROJECTS SECTION (LIGHT THEME REFINE)
══════════════════════════════════════════════════ */
.premium-projects-section {
  position: relative;
  /* background-color: #f4f4f4; */
  padding: 120px 0 160px;
  overflow: hidden;
  color: #111;
  font-family: var(--font-display);

}

.premium-projects-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

/* Intro Area */
.premium-intro-area {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: fixed;
  top: 120px;
  z-index: 1;
  pointer-events: none;
}

.premium-intro-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.premium-section-tag {
  font-size: 14px;
  color: #bfa175;
  text-transform: capitalize;
  white-space: nowrap;
}

.premium-intro-line {
  flex: 1;
  height: 1px;
  background-color: #e0e0e0;
}

.premium-intro-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.premium-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #111;
}

.premium-intro-right {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 450px;
  margin-top: 20px;
}

.premium-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Masonry Flow Area */
.premium-masonry-flow {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  z-index: 2;
  margin-top: 550px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Row Layouts */
.pm-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.pm-row-featured {
  justify-content: center;
}

.pm-row-small-large {
  align-items: flex-end;
}

/* Cards */
.pm-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pm-card-large {
  flex: 0 0 calc(60% - 30px);
}

.pm-card-small {
  flex: 0 0 calc(40% - 30px);
  margin-top: 150px;
}

.pm-row-small-large .pm-card-small {
  margin-top: 0;
  margin-bottom: 100px;
}

.pm-card-featured {
  flex: 0 0 65%;
}

/* Image inside Card */
.pm-card-img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}

.pm-card-large .pm-card-img {
  aspect-ratio: 16/10;
}

.pm-card-small .pm-card-img {
  aspect-ratio: 4/3;
}

.pm-card-featured .pm-card-img {
  aspect-ratio: 16/9;
}

.pm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Location Pill */
.pm-location-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  text-transform: uppercase;
}

/* Card Content Area */
.pm-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.pm-desc-text {
  font-size: 14px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}

/* Pills Container */
.pm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pm-pills span {
  font-size: 11px;
  color: #555;
  border: 1px solid #eaeaea;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .premium-intro-main {
    flex-direction: column;
    gap: 30px;
  }

  .premium-title {
    font-size: 3.5rem;
  }

  .pm-row {
    flex-direction: column;
    gap: 40px;
  }

  .pm-card-large,
  .pm-card-small,
  .pm-card-featured {
    flex: none;
    width: 100%;
    margin: 0 !important;
  }
}

/* ────────────────────────────────────────────────────
   TESTIMONIALS SECTION
──────────────────────────────────────────────────── */
.testimonials-section {
  position: relative;
  padding: 160px 0;
  background: var(--body-bg);
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background: var(--body-bg);
  background-image: radial-gradient(rgba(183, 155, 111, 0.15) 2px, transparent 2px);
  background-size: 40px 40px;
  background-position: center;
  z-index: 0;
  transform-origin: center;
  will-change: transform;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at center, transparent 0%, var(--body-bg) 80%); */
  z-index: 1;
}

.testimonial-container {
  position: relative;
  z-index: 5;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonial-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--dark);
  font-weight: 400;
  margin-top: 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  padding: 50px 40px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.testimonial-card:hover {
  border-color: rgba(183, 155, 111, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--primary);
  line-height: 0.5;
  margin-bottom: 20px;
  opacity: 0.5;
}

.t-text {
  font-size: 18px;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 25px;
}

.t-author img,
.t-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(183, 155, 111, 0.5);
}

.t-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
  background: rgba(183, 155, 111, 0.1);
}

.t-info h4 {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 2px;
}

.t-info span {
  font-size: 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ────────────────────────────────────────────────────
   FUN FACTS / STATS SECTION
──────────────────────────────────────────────────── */
/* .stats-section {
  padding: 80px 0 100px;
  background: var(--body-bg);
} */

.stats-heading {
  text-align: center;
  margin-bottom: 50px;
}

.stats-heading p {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 0;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

/* Vertical borders between columns */
.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  width: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.stat-label {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  margin-bottom: 15px;
  min-height: 40px;
  /* Aligns all labels nicely */
}

.stat-val {
  font-family: var(--font-main);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
    border-bottom: none;
  }

  .stat-col:nth-child(3)::after {
    display: none;
  }

  .stat-col:not(:last-child)::after {
    height: 60px;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    border-top: none;
    row-gap: 30px;
  }

  .stat-col {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .stat-col:not(:last-child)::after {
    display: none;
  }
}

/* ────────────────────────────────────────────────────
   VIDEO SHOWREEL SECTION
──────────────────────────────────────────────────── */
.video-showreel-section {
  padding: 0px 50px 120px;
  background: var(--body-bg);
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.video-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-wrapper:hover .video-cover {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.4s ease;
}

.video-wrapper:hover .video-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 2;
  pointer-events: none;
  /* Let wrapper handle clicks */
}

.play-icon {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.play-icon svg {
  margin-left: 5px;
  /* Visual center for play icon */
}

.video-wrapper:hover .play-icon {
  transform: scale(1.1);
}

.play-text {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .video-showreel-section {
    padding: 0px 20px 80px;
  }

  .video-wrapper {
    height: 50vh;
    min-height: 400px;
    border-radius: 12px;
  }

  .play-icon {
    width: 60px;
    height: 60px;
  }

  .play-text {
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────────
   VIDEO MODAL
──────────────────────────────────────────────────── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  transition: color 0.3s;
  background: transparent;
}

.video-modal-close:hover {
  color: var(--primary);
}

.video-iframe-container{
    width:100%;
    max-height:80vh;
}


.video-iframe-container video{
    width:100%;
    max-height:80vh;
    object-fit:contain;
}

.video-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width:768px){

    .video-modal-content{
        width:95%;
        max-width:95%;
    }

    .video-modal-close{
        top:-45px;
        right:0;
        font-size:34px;
    }

}
/* ────────────────────────────────────────────────────
   NEW ABOUT INTRO SECTION
──────────────────────────────────────────────────── */
.new-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.about-tag {
  color: var(--primary);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.about-tag-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.about-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.about-users {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.about-users .user-avatars {
  display: flex;
}

.about-users .user-avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--body-bg);
  margin-left: -12px;
  object-fit: cover;
  position: relative;
}

.about-users .user-avatars img:first-child {
  margin-left: 0;
  z-index: 4;
}

.about-users .user-avatars img:nth-child(2) {
  z-index: 3;
}

.about-users .user-avatars img:nth-child(3) {
  z-index: 2;
}

.about-users .user-avatars img:nth-child(4) {
  z-index: 1;
}

.about-users-text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

.about-users-text strong {
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.about-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 90%;
}

@media (max-width: 992px) {
  .new-about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-desc {
    max-width: 100%;
  }
}

/* ────────────────────────────────────────────────────
   HISTORY SECTION
──────────────────────────────────────────────────── */
.history-section {
  padding: 120px 0;
  background: var(--white);
}

.history-header {
  text-align: center;
  margin-bottom: 80px;
}

.history-title {
  font-family: var(--font-main);
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 15px;
}

.history-subtitle {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.history-list {
  max-width: 1000px;
  margin: 0 auto;
}

.history-table-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.3);
}

.history-table-head .col-year {
  width: 30%;
}

.history-table-head .col-desc {
  width: 70%;
  text-align: left;
}

.history-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 40px 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.history-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Hover Effect on the entire row */
.history-row:hover {
  border-bottom-color: var(--primary);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
  padding-left: 20px;
}

.history-year {
  width: 30%;
  font-family: var(--font-main);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -1px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Effect on the year */
.history-row:hover .history-year {
  color: var(--primary);
}

.history-desc {
  width: 70%;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 400;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Effect on the text */
.history-row:hover .history-desc {
  color: var(--dark);
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .history-table-head {
    display: none;
  }

  .history-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 40px 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
  }

  .history-row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  /* Hover Effect on the entire row */
  .history-row:hover {
    border-bottom-color: var(--primary);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.02) 0%, transparent 100%);
    padding-left: 20px;
  }

  .history-year {
    width: 30%;
    font-family: var(--font-main);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -1px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Hover Effect on the year */
  .history-row:hover .history-year {
    color: var(--primary);
  }

  .history-desc {
    width: 70%;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Hover Effect on the text */
  .history-row:hover .history-desc {
    color: var(--dark);
    transform: translateX(10px);
  }
}

/* ────────────────────────────────────────────────────
   HOW IT WORKS (ACCORDION) SECTION
──────────────────────────────────────────────────── */
.hiw-section {
  padding: 120px 0;
  background: var(--body-bg);
}

.hiw-header {
  margin-bottom: 60px;
}

.hiw-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hiw-tag {
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hiw-tag-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.hiw-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -1px;
}

.hiw-container {
  display: flex;
  height: 600px;
  gap: 15px;
  width: 100%;
}

.hiw-panel {
  position: relative;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiw-panel.active {
  width: 70%;
  background: #000;
  cursor: default;
  align-items: flex-start;
  justify-content: flex-start;
}

.hiw-panel::before {
  content: attr(data-step);
  position: absolute;
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 500;
  color: var(--primary);
  opacity: 1;
  transition: opacity 0.3s;
}

.hiw-panel.active::before {
  opacity: 0;
}

.hiw-panel-inner {
  padding: 50px;
  width: 100%;
  min-width: 700px;
  /* Prevent text reflow glitch during animation */
  height: 100%;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease 0.2s;
}

.hiw-panel.active .hiw-panel-inner {
  opacity: 1;
  visibility: visible;
}

.hiw-panel-header {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.hiw-num {
  font-family: var(--font-main);
  font-size: 44px;
  color: var(--primary);
  line-height: 1;
  font-weight: 500;
}

.hiw-panel-text h3 {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 15px;
}

.hiw-panel-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 500px;
}

.hiw-panel-img {
  flex: 1;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.hiw-panel-img img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media (max-width: 992px) {
  .hiw-container {
    flex-direction: column;
    height: 800px;
  }

  .hiw-panel {
    width: 100%;
    height: 12%;
  }

  .hiw-panel.active {
    width: 100%;
    height: 64%;
  }

  .hiw-panel-inner {
    padding: 30px;
    min-width: 100%;
  }

  .hiw-panel-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .hiw-num {
    font-size: 32px;
  }

  .hiw-panel-text h3 {
    font-size: 20px;
  }
}

/* ────────────────────────────────────────────────────
   BACK TO TOP BUTTON
──────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #111;
  border: 2px solid var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Disable fan cards completely */
.fan-cards-container,
.page-fan-cards {
  display: none !important;
}


/* ══════════════════════════════════════════════════
   PROJECT DETAILS PAGE (APARTMENT)
══════════════════════════════════════════════════ */

/* HERO */
.pd-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.1);
  animation: pdHeroZoom 20s ease-out forwards;
}

@keyframes pdHeroZoom {
  to {
    transform: scale(1);
  }
}

.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 11, 11, 0.2) 0%, rgba(11, 11, 11, 0.8) 100%);
  z-index: 1;
}

.pd-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px;
  /* Offset for header */
}

.pd-hero-tags {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.pd-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.pd-hero-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.pd-hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 400;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #B79B6F;
  animation: scrollLineDrop 2s infinite ease-in-out;
}

@media (max-width: 991px) {
  .hero-scroll {
    display: none !important;
  }
}

/* OVERVIEW STATS */
.pd-overview-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.pd-stat-card {
  position: relative;
}

.pd-stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.pd-stat-label {
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.pd-stat-value {
  font-size: 24px;
  color: #B79B6F;
  font-weight: 300;
}

/* ABOUT */
.pd-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pd-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}

.pd-about-right p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* GALLERY */

.pd-carousel-wrapper {
  --pd-accent: var(--primary, #c9a876);
  --pd-muted: rgba(33, 29, 25, 0.25);
  position: relative;
}

.pd-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  border-radius: 12px;
  scrollbar-width: none;
}

.pd-carousel::-webkit-scrollbar {
  display: none;
}

.pd-slide {
  scroll-snap-align: start;
  flex: 0 0 100%;
  height: 560px;
  position: relative;
}

.pd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 44px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  color: #fff;
}

.pd-slide-index {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pd-accent);
  margin-bottom: 6px;
}

.pd-slide-title {
  font-size: 1.6rem;
  font-weight: 300;
}

.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}

.pd-nav:hover {
  background: var(--pd-accent);
  color: #fff;
}

.pd-nav:focus-visible {
  outline: 2px solid var(--pd-accent);
  outline-offset: 2px;
}

.pd-nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-nav.prev {
  left: 18px;
}

.pd-nav.next {
  right: 18px;
}

.pd-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--pd-muted);
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.pd-dot:focus-visible {
  outline: 2px solid var(--pd-accent);
  outline-offset: 2px;
}

/* default state: slide 1 active */
.pd-dot[data-index="0"] {
  width: 24px;
  border-radius: 4px;
  background: var(--pd-accent);
  border-color: var(--pd-accent);
}

/* no-JS fallback: highlight the dot matching whichever slide is :target */
.pd-carousel-wrapper:has(#skyview-slide-2:target) .pd-dot[data-index="0"],
.pd-carousel-wrapper:has(#skyview-slide-3:target) .pd-dot[data-index="0"],
.pd-carousel-wrapper:has(#skyview-slide-4:target) .pd-dot[data-index="0"] {
  width: 8px;
  border-radius: 50%;
  background: transparent;
  border-color: var(--pd-muted);
}

.pd-carousel-wrapper:has(#skyview-slide-2:target) .pd-dot[data-index="1"] {
  width: 24px;
  border-radius: 4px;
  background: var(--pd-accent);
  border-color: var(--pd-accent);
}

.pd-carousel-wrapper:has(#skyview-slide-3:target) .pd-dot[data-index="2"] {
  width: 24px;
  border-radius: 4px;
  background: var(--pd-accent);
  border-color: var(--pd-accent);
}

.pd-carousel-wrapper:has(#skyview-slide-4:target) .pd-dot[data-index="3"] {
  width: 24px;
  border-radius: 4px;
  background: var(--pd-accent);
  border-color: var(--pd-accent);
}

/* JS sets this directly once it's running; same rule shape, just driven by JS instead of :target */
.pd-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--pd-accent);
  border-color: var(--pd-accent);
}

.pd-dot:not(.is-active).js-managed {
  width: 8px;
  border-radius: 50%;
  background: transparent;
  border-color: var(--pd-muted);
}

.pd-sr-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 640px) {
  .pd-slide {
    height: 360px;
  }

  .pd-slide-caption {
    padding: 24px;
  }

  .pd-nav {
    width: 38px;
    height: 38px;
  }
}

/* AMENITIES */

.amenities-light {
  --op-card: #f5f2ee;
  /* card surface, a touch lighter */
  --op-border: #c9a87644;
  /* hairline divider / border */
  --op-ink: #211d19;
  /* heading / label text */
  --op-muted: #8a8074;
  /* default icon + meta text */
  --op-accent: #c9a876;
  /* gold accent — buttons, tag, values */
  background: var(--op-bg);
  /* padding: 100px 0; */
}

.amenities-light .container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.amenities-light .section-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--op-accent);
  font-weight: 600;
  margin-bottom: 18px;
}

.amenities-light .section-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--op-accent);
}

.amenities-light h2 {
   font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--op-ink);
  margin: 0 0 44px;
}

.amenity-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--op-border);
  border: 1px solid var(--op-border);
}

@keyframes amenityIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

.amenity-card {
  position: relative;
  background: var(--op-card);
  padding: 30px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  cursor: default;
  animation: amenityIn 0.6s ease both;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* stagger the reveal across the grid — pure CSS, no JS required,
     so it can't get stuck if a script tag gets stripped on paste */
.amenity-card:nth-child(1) {
  animation-delay: 0.02s;
}

.amenity-card:nth-child(2) {
  animation-delay: 0.08s;
}

.amenity-card:nth-child(3) {
  animation-delay: 0.14s;
}

.amenity-card:nth-child(4) {
  animation-delay: 0.20s;
}

.amenity-card:nth-child(5) {
  animation-delay: 0.26s;
}

.amenity-card:nth-child(6) {
  animation-delay: 0.08s;
}

.amenity-card:nth-child(7) {
  animation-delay: 0.14s;
}

.amenity-card:nth-child(8) {
  animation-delay: 0.20s;
}

.amenity-card:nth-child(9) {
  animation-delay: 0.26s;
}

.amenity-card:nth-child(10) {
  animation-delay: 0.32s;
}

.amenity-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--op-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.amenity-card:hover {
  background: #ffffff;
  box-shadow: 0 18px 30px -20px rgba(33, 29, 25, 0.25);
  z-index: 1;
}

.amenity-card:hover::after {
  transform: scaleX(1);
}

.amenity-icon {
  flex: none;
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--op-border);
  color: var(--op-muted);
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.amenity-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--op-accent);
  transform: scale(0);
  transition: transform 0.35s ease;
  z-index: -1;
}

.amenity-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.amenity-card:hover .amenity-icon {
  color: #fff;
  border-color: var(--op-accent);
  transform: scale(1.06);
}

.amenity-card:hover .amenity-icon::before {
  transform: scale(1);
}

.amenity-label {
  color: var(--op-ink);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {

  .amenity-card,
  .amenity-card::after,
  .amenity-icon,
  .amenity-icon::before {
    transition: none;
    animation: none;
  }

  .amenity-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .amenities-light h2 {
    font-size: 34px;
  }
}

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

/* VIDEO */
.pd-video-wrapper {
  position: relative;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.pd-video-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.pd-video-wrapper:hover .pd-video-bg {
  transform: scale(1.05);
}

.pd-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.pd-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: #B79B6F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pd-play-btn:hover {
  transform: scale(1.1);
}

.pd-video-text {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 360 TOUR */
.pd-360-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.pd-360-container {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

.pd-360-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}

.pd-360-placeholder:active {
  cursor: grabbing;
}

.pd-360-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FLOOR PLANS */
.pd-tabs-container {
  margin-top: 50px;
}

.pd-tabs-header {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pd-tab-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.pd-tab-btn.active {
  background: #B79B6F;
  color: #fff;
  border-color: #B79B6F;
}

.pd-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.pd-tab-content.active {
  display: block;
}

.pd-plan-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}


/* Mobile Polish for About Us Section */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .about-left {
    max-width: 100% !important;
    text-align: center;
  }

  .about-desc {
    margin: 0 auto 30px;
  }

  .user-review {
    justify-content: center;
  }

  /* Show only 2 rows of pills on mobile for a cleaner look */
  .pill-wrapper .pill-row:nth-child(3) {
    display: none !important;
  }

  /* Adjust right side height to fit 2 rows beautifully */
  .about-right {
    height: auto !important;
    padding: 20px 0;
  }
}

/* ============================================================
   AMOGHA ABOUT SECTION (HOME PAGE)
   ============================================================ */
.amogha-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.amogha-img-wrapper {
  position: relative;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
}

.amogha-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  display: block;
}

.amogha-legacy-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: #1a3c34;
  color: white;
  padding: 35px 45px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(26, 60, 52, 0.4);
}

.amogha-legacy-badge .legacy-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5px;
}

.amogha-legacy-badge .legacy-text {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.amogha-tag-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.amogha-tag-line {
  width: 40px;
  height: 1px;
  background-color: #cda274;
}

.amogha-tag-text {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.amogha-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 400;
  color: #222;
  line-height: 1.15;
  margin-bottom: 30px;
}

.amogha-desc {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 95%;
}

.amogha-stats-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  max-width: 90%;
}

.amogha-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.amogha-stat .stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: #222;
}

.amogha-stat .stat-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  font-weight: 600;
}

.amogha-read-more {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #1a3c34;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.amogha-read-more:hover {
  transform: translateX(8px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .amogha-about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 60px 0;
  }

  .amogha-legacy-badge {
    right: 20px;
    bottom: -20px;
    padding: 25px 35px;
  }

  .amogha-stats-row {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

  .amogha-stat .stat-num {
    font-size: 20px;
  }

  .amogha-stat .stat-label {
    font-size: 9px;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .amogha-legacy-badge {
    right: 10px;
    padding: 15px 20px;
  }

  .amogha-legacy-badge .legacy-number {
    font-size: 32px;
  }
}

/* ============================================================
   KREEVA FEATURED SECTION (HOME PAGE)
   ============================================================ */
.kreeva-featured-section {
  background-color: #421b06;
  padding: 100px 0;
  color: #fff;
}

.kreeva-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.kreeva-fh-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: #fff;
  margin: 0;
  margin-top: 15px;
}

.kreeva-view-all {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding-bottom: 15px;
}

.kreeva-view-all:hover {
  color: #dfad65;
}

.kreeva-featured-card {
  background-color: #733714;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.kreeva-fc-left {
  flex: 0 0 50%;
  position: relative;
}

.kreeva-new-launch {
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: #fefaec;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 50px;
  z-index: 2;
}

.kreeva-fc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kreeva-fc-right {
  flex: 0 0 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kreeva-location {
  color: #eaa022;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.kreeva-card-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
}

.kreeva-card-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.kreeva-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.kreeva-stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.k-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.k-stat-val {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.kreeva-actions {
  display: flex;
  gap: 20px;
}

.kreeva-btn-primary {
  background-color:#eaa022;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.kreeva-btn-primary:hover {
  background-color: #c99b59;
}

.kreeva-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.kreeva-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .kreeva-featured-card {
    flex-direction: column;
  }

  .kreeva-fc-left,
  .kreeva-fc-right {
    flex: 0 0 100%;
  }

  .kreeva-fc-left {
    height: 350px;
  }

  .kreeva-fc-right {
    padding: 40px;
  }

  .kreeva-featured-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .kreeva-view-all {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .kreeva-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kreeva-fc-right {
    padding: 30px 20px;
  }

  .kreeva-actions {
    flex-direction: column;
    gap: 15px;
  }

  .kreeva-actions a {
    justify-content: center;
    width: 100%;
  }
}

/* ============================================================
   WHY CHOOSE AMOGHA SECTION
   ============================================================ */
.amogha-why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.amogha-why-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #111;
  margin: 15px 0 20px;
}

.amogha-why-subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.amogha-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.amogha-why-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amogha-why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.amogha-why-card:hover .why-icon-wrap {
  background-color: var(--primary);
}

.amogha-why-card:hover .why-icon-wrap svg {
  stroke: white;
}

.why-icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #fdfaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
  transition: stroke 0.3s ease;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: #222;
  margin: 0 0 15px 0;
}

.why-card-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .amogha-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .amogha-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AMOGHA FLOOR PLANS SECTION
   ============================================================ */
.amogha-floorplans-section {
  padding: 100px 0;
  background-color: #fff;
}

.amogha-fp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.amogha-fp-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: #111;
  margin: 15px 0 0;
}

.amogha-fp-header-right {
  display: flex;
  gap: 15px;
}

.amogha-fp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #cda274;
  border-radius: 50px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.amogha-fp-btn-outline:hover {
  background-color: #cda274;
  color: #fff;
}

.amogha-fp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #0b1a16;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.amogha-fp-btn-solid:hover {
  background-color: #eaa022;
}

.amogha-fp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.amogha-fp-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amogha-fp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.amogha-fp-img-wrapper {
  position: relative;
  height: 350px;
  width: 100%;
}

.amogha-fp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.amogha-fp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.amogha-fp-content {
  padding: 30px;
}

.amogha-fp-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: #111;
  margin: 0 0 5px 0;
}

.amogha-fp-price {
  color: #666;
  font-size: 15px;
  margin: 0 0 30px 0;
}

.amogha-fp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.amogha-fp-view {
  color: #1c5253;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.amogha-fp-view:hover {
  opacity: 0.7;
}

.amogha-fp-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #eaa022;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.amogha-fp-pdf:hover {
  opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .amogha-fp-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

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

/* ============================================================
   AMOGHA LOCATION SECTION (HOME PAGE)
   ============================================================ */
.amogha-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}

.amogha-location-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: #111;
  margin: 15px 0 20px;
}

.amogha-location-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.amogha-location-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amogha-loc-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amogha-loc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.kreeva-amenity-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.kreeva-amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

  .kreeva-amenity-icon {
      font-size: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.kreeva-amenity-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--primary, #eaa022);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.kreeva-amenity-icon::after {
  content: '';
  position: absolute;
  top: 15px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary, #eaa022);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.kreeva-amenity-card:hover .kreeva-amenity-icon {
  transform: scale(1.05);
}

.kreeva-amenity-card:hover .kreeva-amenity-icon::before {
  transform: translate(6px, -6px);
  opacity: 0.6;
}

.kreeva-amenity-card:hover .kreeva-amenity-icon::after {
  transform: translate(-4px, -4px);
  opacity: 0.8;
}

.kreeva-amenity-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kreeva-amenity-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: var(--font-display, serif);
  text-align: center;
}

.amogha-loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fefaec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amogha-loc-icon svg {
  width: 20px;
  height: 20px;
}

.amogha-loc-text h4 {
  font-size: 15px;
  font-weight: 500;
  color: #111;
  margin: 0 0 4px 0;
}

.amogha-loc-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .amogha-location-grid {
    grid-template-columns: 1fr;
  }

  .amogha-location-desc {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .amogha-location-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-right {
    width: 100%;
  }

  .showcase-slide {
    flex: 0 0 100%;
    aspect-ratio: 16 / 9;
    /* Make it a bit wider instead of square on mobile so it doesn't get too tall */
  }

  .showcase-carousel-track {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .showcase-container {
    align-items: stretch;
  }

  .showcase-right {
    width: 100%;
  }
}

/* ============================================================
   ABOUT PAGE CUSTOM STYLES (Moved from about.html)
   ============================================================ */
/* Stats Bar Mobile Responsiveness & Redesign */
.about-stats-bar {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  margin-top: 50px;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.about-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 991px) {
  .about-stats-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 30px;
  }

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

  .about-stats-bar .stat-item:nth-child(1),
  .about-stats-bar .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
  }

  .about-stats-bar .stat-item:nth-child(3),
  .about-stats-bar .stat-item:nth-child(4) {
    padding-top: 20px;
  }
}

@media (max-width: 576px) {
  .about-stats-bar {
    grid-template-columns: 1fr !important;
    gap: 0;
    padding: 20px;
  }

  .about-stats-bar .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 20px 0 !important;
  }

  .about-stats-bar .stat-item:last-child {
    border-bottom: none !important;
  }

  .about-stats-bar .stat-number {
    font-size: 40px !important;
  }
}

/* MVV Section Styles */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mvv-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
  z-index: 1;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(183, 155, 111, 0.15);
}

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

.mvv-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: rgba(183, 155, 111, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.mvv-card h3 {
  font-size: 26px;
  font-family: var(--font-display);
  margin-bottom: 20px;
  color: var(--text-dark);
}

.mvv-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  margin: 0;
}

@media (max-width: 991px) {
  .mvv-grid {
    gap: 30px;
  }

  .mvv-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .mvv-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .mvv-header h2 {
    font-size: 32px !important;
  }
}

/* Enhanced T-Initials for Why Homebuyers Trust Amogha */
.t-initials {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(183, 155, 111, 0.1) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(183, 155, 111, 0.2) !important;
  transition: all 0.4s ease !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.testimonial-card:hover .t-initials {
  background: var(--primary) !important;
  color: var(--white) !important;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(183, 155, 111, 0.3) !important;
}

.t-initials svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}


/* Footer Credit styling */
.footer-credit {
  color: #888;
  font-size: 14px;
}

.footer-credit a {
  color: var(--primary, #cda274);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.footer-credit a:hover {
  color: #505763;
}


/* ============================================================
   KREEVA PAGE - COMPONENT STYLES
   ============================================================ */

/* -- Overview Stats Bar ------------------------------------ */
.kov-bar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.18);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.kov-logo-section {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfaf5;
  padding: 30px;
}

.kov-project-logo {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.kov-item {
  flex: 1;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
  gap: 4px;
}

.kov-item:hover {
  background: #FDFAF3;
}

.kov-number {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 4px;
}

.kov-number span {
  font-size: 14px;
  color: #888;
  font-family: var(--font-main);
  font-weight: 400;
}

.kov-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.kov-icon {
  margin-top: 8px;
  color: var(--primary);
}

.kov-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
  margin: 20px 0;
}

@media(max-width:900px) {
  .kov-bar {
    flex-wrap: wrap;
  }

  .kov-logo-section {
    flex: 0 0 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .kov-item {
    flex: 0 0 calc(50% - 1px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .kov-divider {
    display: none;
  }
}

@media(max-width:480px) {
  .kov-item {
    flex: 0 0 100%;
    border-right: none;
  }

  .kreeva-overview-stats {
    margin-top: 30px !important;
    padding: 0 15px !important;
  }
}

/* -- About Section Responsive ----------------------------- */
@media(max-width:900px) {
  .section[style*="background-color: #FAF9F6"]>.container>div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* -- Amenities Grid ---------------------------------------- */
.kreeva-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kreeva-amenity-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.kreeva-amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.kreeva-amenity-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: all 0.4s ease;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(234, 160, 34, 0.04);
}

.kreeva-amenity-card:hover .kreeva-amenity-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #1a1a1a;
}

.kreeva-amenity-icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.kreeva-amenity-label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  font-family: var(--font-main);
}

@media(max-width:1024px) {
  .kreeva-amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {
  .kreeva-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .kreeva-amenities h2 {
    font-size: 36px !important;
  }
}

@media(max-width:480px) {
  .kreeva-amenity-grid {
    grid-template-columns: 1fr;
  }
}

/* -- Gallery Carousel -------------------------------------- */
.kgal-section {
  background: #111;
  padding: 80px 0 0;
  overflow: hidden;
}

.kgal-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.kgal-header h2 {
  color: #fff !important;
}

.kgal-counter {
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: -1px;
  white-space: nowrap;
  padding-bottom: 6px;
}

.kgal-counter #kgalCurrent {
  color: var(--primary);
  font-size: 36px;
}

.kgal-thumbnails {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.kgal-thumbnails::-webkit-scrollbar {
  display: none;
}

.kgal-thumb {
  width: 100px;
  height: 65px;
  flex-shrink: 0;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.kgal-thumb.active,
.kgal-thumb:hover {
  opacity: 1;
  border-color: var(--primary);
}

.kgal-main {
  position: relative;
  width: 100%;
  height: clamp(340px, 55vw, 680px);
  overflow: hidden;
}

.kgal-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.kgal-slide.active {
  opacity: 1;
  z-index: 1;
}

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

.kgal-slide-info {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 5;
  color: #fff;
}

.kgal-slide-num {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  margin-bottom: -15px;
}

.kgal-slide-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: block;
}

.kgal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.kgal-nav:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.kgal-prev {
  left: 30px;
}

.kgal-next {
  right: 30px;
}

.kgal-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.kgal-progress-bar {
  height: 100%;
  background: var(--primary);
  transition: width 0.4s ease;
  width: 25%;
}

@media(max-width:768px) {
  .kgal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 20px 30px;
  }

  .kgal-thumbnails {
    padding: 0 20px 16px;
  }

  .kgal-thumb {
    width: 72px;
    height: 48px;
  }

  .kgal-slide-info {
    bottom: 30px;
    left: 20px;
  }

  .kgal-slide-num {
    font-size: 50px;
  }

  .kgal-slide-title {
    font-size: 18px;
  }

  .kgal-prev {
    left: 15px;
  }

  .kgal-next {
    right: 15px;
  }

  .kgal-main {
    height: clamp(250px, 60vw, 420px);
  }
}

/* -- Floor Plans Grid -------------------------------------- */
.kreeva-floorplans-section {
  background: #fff;
}

.kreeva-fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.kreeva-fp-specs-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.kreeva-fp-specs-row span {
  font-size: 11px;
  color: #555;
  background: #FAF9F6;
  border: 1px solid #e8e4d9;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media(max-width:1024px) {
  .kreeva-fp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media(max-width:600px) {
  .kreeva-fp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .amogha-fp-header {
    flex-direction: column;
    gap: 20px;
  }

  .amogha-fp-header-right {
    align-self: flex-start;
  }
}

/* -- Location Highlights ----------------------------------- */
.kreeva-location-layout {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 50px;
  align-items: stretch;
}

.kl-advantages {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 650px;
  overflow-y: auto;
  padding-right: 15px;
}

.kl-advantages::-webkit-scrollbar {
  width: 4px;
}

.kl-advantages::-webkit-scrollbar-track {
  background: transparent;
}

.kl-advantages::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.5);
  border-radius: 10px;
}

.kl-category {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.kl-cat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 15px;
}

.kl-cat-header .kl-icon {
  font-size: 24px;
}

.kl-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kl-cat-header h3 {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0;
  font-family: var(--font-display);
}

.kl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: #faf9f6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.kl-item:hover {
  transform: translateX(5px);
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.kl-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.kl-info p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.kl-distance {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #eee;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.kl-distance.main {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.kl-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  height: 650px;
  position: relative;
}

#kreeva-interactive-map {
  width: 100% !important;
  height: 100% !important;
  border-radius: 20px;
  z-index: 1;
  position: relative;
}

.kl-map-wrapper #kreeva-interactive-map {
  width:100% !important;
  height:100% !important;
  border-radius:20px;
  z-index:1;
}

.map-fallback-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.map-fallback-visible #kreeva-interactive-map {
  opacity: 0;
  pointer-events: none;
}

.map-fallback-visible .map-fallback-frame {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.custom-map-marker {
  background: transparent;
  border: 0;
}

.custom-map-marker span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  position: relative;
}

.custom-map-marker span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: inherit;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

.custom-map-marker-main span {
  background: linear-gradient(135deg, #eaa022 0%, #8a6f44 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.custom-map-marker-landmark span {
  background: linear-gradient(135deg, #153a72 0%, #3d74c5 100%);
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.amogha-location-map {
  height: 600px;
  position: relative;
}

@media(max-width:1024px) {
  .kreeva-location-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kl-advantages {
    height: auto;
    overflow: visible;
    padding-right: 0;
  }

  .kl-map-wrapper {
    height: 450px;
  }
}

/* -- Video Section ----------------------------------------- */
.pd-video-wrapper:hover .pd-video-bg {
  transform: scale(1.05);
}

.pd-video-wrapper:hover .pd-play-btn {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

@media(max-width:768px) {
  .pd-video-wrapper {
    height: 400px !important;
    border-radius: 16px !important;
  }
}

/* -- Video Modal ------------------------------------------- */
.kreeva-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.kreeva-video-modal.active {
  display: flex;
}
.kreeva-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.kreeva-modal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kreeva-video-modal.active .kreeva-modal-content {
  transform: scale(1);
}

.kreeva-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.kreeva-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.kreeva-video-player {
  width: 100%;
  height: auto;
  max-height: 90vh;
  max-width: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}

.kreeva-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 3;
}

.kreeva-modal-close:hover {
  color: var(--primary);
}

@media(max-width:768px) {
  .kreeva-modal-close {
    top: -35px;
  }
}

/* Disable custom cursor on mobile / touch devices */
@media (max-width: 768px) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@media (pointer: coarse) {

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

@media (max-height: 500px) {
  .kreeva-modal-content {
    max-height: 92vh;
  }
  .kreeva-video-player {
    max-height: 92vh;
  }
}

@media (max-width: 768px) {
  .kreeva-video-modal {
    padding: 12px;
  }

  .kreeva-modal-content {
    max-height: 80vh;
  }

  .kreeva-video-player {
    max-height: 80vh;
  }

  .kreeva-modal-close {
    top: -36px;
    right: 4px;
    font-size: 28px;
  }
}
/* ────────────────────────────────────────────────────
   IMAGE LIGHTBOX
──────────────────────────────────────────────────── */
.img-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.img-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.img-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.img-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-lightbox-modal.active .img-lightbox-content {
  transform: scale(1);
}

.img-lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: block;
}

.img-lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 0;
}

.img-lightbox-close:hover {
  color: var(--primary);
}

@media(max-width:768px) {
  .img-lightbox-close {
    top: -40px;
    right: 0;
  }
}

/* ────────────────────────────────────────────────────
   CONTACT PAGE STYLES (Moved from contact.html)
──────────────────────────────────────────────────── */
.contact-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--body-bg);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer;
}
.contact-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.contact-card-v2 h4 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.contact-card-v2 p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.contact-card-v2 a {
  color: inherit;
  text-decoration: none;
}


/* Prevent Flash of Unstyled Content (FOUC) & Split Screen Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 99999; pointer-events: all;
  background: transparent;
}
.preloader-top, .preloader-bottom {
  position: absolute; left: 0; width: 100%; height: 50vh; background: #0b0b0b;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader-top { top: 0; transform-origin: top; }
.preloader-bottom { bottom: 0; transform-origin: bottom; }

.preloader-line {
  position: absolute; top: 50%; left: 0; width: 0; height: 1px; background: #fff;
  transform: translateY(-50%);
  transition: width 0.6s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s;
  z-index: 2;
}

body.line-loaded .preloader-line { width: 100%; }

body.split-loaded .preloader-top { transform: translateY(-100%); }
body.split-loaded .preloader-bottom { transform: translateY(100%); }
body.split-loaded .preloader-line { opacity: 0; }

/* Contact Page Specific Responsive Styles */
.contact-page-inner {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.06);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-map-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  min-height: 500px; /* Provide default min-height */
}

@media (max-width: 991px) {
  .contact-page-inner {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
  }
  .contact-map-panel {
    min-height: 450px;
  }
  .contact-info-panel .section-title {
    font-size: 36px !important;
  }
}

@media (max-width: 576px) {
  .contact-page-inner {
    padding: 30px 20px;
    gap: 30px;
  }
  .contact-map-panel {
    min-height: 350px;
  }
  .contact-info-panel .section-title {
    font-size: 28px !important;
  }
}

/* -- Responsive Footer Grid -- */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .contact-card-v2 {
    padding: 20px !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }
  .contact-card-v2 .details {
    display: flex;
    flex-direction: column;
    align-items: center;
  }


/* Premium Contact Icons */
.contact-icon-premium {
  width: 60px;
  height: 60px;
  background: rgba(183,155,111, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(183,155,111, 0.2);
  transition: all 0.4s ease;
}
.contact-card-v2:hover .contact-icon-premium {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(183,155,111, 0.4);
}

/* ────────────────────────────────────────────────────
   GLOBAL BUTTON HOVER FIX (Prevents Flickering)
──────────────────────────────────────────────────── */
.btn-header::after,
.btn-primary::after,
.btn-outline::after,
.btn-dark-gold::after,
.btn-black::after,
.btn-about-company::after,
.fpx-btn-secondary::after,
.hero-call::after,
.back-to-top::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: -15px; /* Creates an invisible bridge that extends below the button */
  background: transparent;
  z-index: -2;
}

.hero-cta{
    position: relative;
    display: inline-block;
}

.hero-tagline{
    position: absolute;
    left: 0;
    top: calc(100% + 18px);

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #F4A621;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-tagline::before{
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}