@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Reference Fonts from Modus Projects (Hosted Locally to bypass CORS issues) */
@font-face {
  font-family: 'Jubilee Silver';
  src: url('assets/fonts/OTJubilee-SilverExtralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Jubilee Silver';
  src: url('assets/fonts/OTJubilee-SilverRegular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Jubilee Silver';
  src: url('assets/fonts/OTJubilee-SilverMedium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Jubilee Silver';
  src: url('assets/fonts/OTJubilee-SilverBold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Telegraf';
  src: url('assets/fonts/PPTelegraf-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('assets/fonts/PPNeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('assets/fonts/PPNeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

:root {
  /* Color Palette */
  --bg-light: #FAF9F6;
  --bg-dark: #111315;
  --bg-deep-dark: #0B0C0D;
  --color-text-dark: #1F2225;
  --color-text-light: #F3F2EE;
  --color-text-muted-dark: #6C727A;
  --color-text-muted-light: #9DA4AD;
  --color-accent: #C5A880;
  --color-accent-hover: #B3966E;
  --color-accent-rgb: 197, 168, 128;
  --border-light: #EAE7E1;
  --border-dark: #2A2D31;
  --overlay-bg: rgba(11, 12, 13, 0.4);

  /* Typography Scales */
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --font-secondary: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Sizing/Spacing Tokens */
  --container-max-width: 1320px;
  --header-height: 100px;
  --header-shrink-height: 76px;
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-s: 4px;
  --border-radius-m: 8px;
  --border-radius-l: 16px;
}

/* Global Reset & Base Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: initial; /* Managed by Lenis smooth scroll */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}

.col {
  padding-left: 1rem;
  padding-right: 1rem;
  flex: 1 1 0;
}

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

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: 1px solid var(--color-accent);
  background-color: transparent;
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.button div {
  z-index: 2;
  position: relative;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  transform: translateY(102%);
  transition: var(--transition-smooth);
  border-radius: 100px;
  z-index: 1;
}

.button:hover {
  color: var(--bg-light) !important;
  border-color: var(--color-accent);
}

.button:hover::before {
  transform: translateY(0);
}

/* Dark mode specific buttons */
.is__dark .button {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text-light);
}

.is__dark .button::before {
  background-color: var(--color-text-light);
}

.is__dark .button:hover {
  color: var(--bg-dark) !important;
  border-color: var(--color-text-light);
}

/* Global Sections */
section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

section.is__nopadding {
  padding: 0;
}

section.is__dark {
  background-color: var(--bg-dark);
  color: var(--color-text-light);
}

section.is__dark p {
  color: var(--color-text-muted-light);
}

/* Titles & Headers styling */
.h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.h1 span {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--color-accent);
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.h2 span {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--color-accent);
}

/* Enhanced high-contrast accent color for heading spans in light sections to guarantee legibility */
section:not(.is__dark) .h1 span,
section:not(.is__dark) .h2 span,
section:not(.is__dark) .h3 span {
  color: #A68A62; /* Slightly richer bronze/gold for perfect readability on light off-white sections */
}

.h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.h3 span {
  font-style: italic;
  font-family: var(--font-accent);
  font-weight: 500;
  color: var(--color-accent);
}

/* Typography Clip-Reveal Mask Utility classes */
.clip-text {
  visibility: visible; /* Default visible if JS or CDNs fail to load */
}
.gsap-active .clip-text:not(.is--splitted) {
  visibility: hidden; /* Hide to prevent FOUC only if GSAP is loaded successfully */
}
.clip-text.is--splitted {
  visibility: visible;
}
.clip-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-top: 0.15em;
  margin-top: -0.15em;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  padding-left: 0.05em;
  margin-left: -0.05em;
  padding-right: 0.25em; /* Protect slanted/italic letters from right edge clipping */
  margin-right: 0.05em;   /* Space between words, adjusted to compensate for right padding */
}
.clip-word-inner {
  display: inline-block;
  will-change: transform;
}

.body__l {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
}

.is__dark .body__l {
  color: var(--color-text-muted-light);
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.max__400 { max-width: 400px; }
.max__500 { max-width: 500px; }
.max__600 { max-width: 600px; }
.mb__m { margin-bottom: 2rem; }
.mb__l { margin-bottom: 3.5rem; }

/* 1. Header/Navigation Component */
.nav__component {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: var(--transition-smooth);
}

.nav__wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  background-color: rgba(250, 249, 246, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 0.8rem 2rem;
  transition: var(--transition-smooth);
}

/* Nav scrolling shrink state */
.nav__component.is__scrolled {
  padding: 0.8rem 2rem;
}

.nav__component.is__scrolled .nav__wrapper {
  box-shadow: 0 10px 30px rgba(17, 19, 21, 0.05);
  background-color: rgba(250, 249, 246, 0.95);
}

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

.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
}

.nav__right {
  justify-content: flex-end;
}

.nav__center {
  display: flex;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.2rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.nav__logo span {
  color: var(--color-accent);
}

.nav__toggle {
  display: none;
  color: var(--color-text-dark);
  z-index: 105;
}

/* 2. Hero Section */
.home-hero__wrapper {
  height: 250vh; /* Scroll track length */
  width: 100%;
  position: relative;
  background-color: var(--bg-deep-dark);
  padding: 0;
  overflow: visible !important; /* Enable sticky positioning for children */
}

.image-sequence__element {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.image-sequence__element::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 12, 13, 0.45) 0%, rgba(11, 12, 13, 0.5) 45%, rgba(11, 12, 13, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.image-sequence__canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh; /* Overlay on the first fold */
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  margin-top: 0;
  pointer-events: none; /* Mouse coordinates pass to canvas underneath */
}

.home-hero__content h1.h1 {
  text-shadow: 0 4px 25px rgba(11, 12, 13, 0.75), 0 2px 10px rgba(11, 12, 13, 0.5);
}

.home-hero__content p.body__l {
  text-shadow: 0 2px 15px rgba(11, 12, 13, 0.8);
}

.home-hero__content-inner {
  pointer-events: auto; /* Re-enable pointer events for CTA elements inside */
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.home-hero__content-lower {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--color-text-muted-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
}

.scroll-indicator svg {
  animation: scrollBounce 2s infinite;
  fill: currentColor;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* 3. Rotating Image Trail Section (exactly as Modus projects) */
.rotating-image-trail {
  position: relative;
  width: 100%;
  background-color: var(--bg-light);
  overflow: hidden;
  cursor: crosshair;
}

.image-trail__content {
  display: flex;
  align-items: center;
  min-height: 700px;
  position: relative;
  z-index: 2;
  pointer-events: none; /* Mouse coordinates pass to parent */
}

.image-trail__content-inner {
  pointer-events: auto; /* Buttons & text remain interactive */
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.touch-hint {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 500;
}

.rotating-image-trail__collection {
  display: none;
}

.rotating-image-trail__card {
  position: absolute;
  width: 260px;
  height: 340px;
  pointer-events: none;
  z-index: 10;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 19, 21, 0.25);
  transform-origin: center;
  will-change: transform, left, top;
}

.rotating-image-trail__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-trail-item="hidden"] {
  transform: translate(-50%, -50%) scale(0) rotate(-10deg);
  position: absolute;
}

[data-trail-item="visible"] {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
}

[data-trail-item="transition-out"] {
  transform: translate(-50%, -50%) scale(0) rotate(15deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: absolute;
}

/* 4. Amenities Grid Showcase */
.services-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-item__wrapper {
  position: relative;
  height: 480px;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  group: hover;
}

.service-item__button {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  overflow: hidden;
}

.service-item__button-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item__button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 19, 21, 0) 40%, rgba(17, 19, 21, 0.85) 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.h3.is-service-item {
  color: var(--color-text-light);
  margin-bottom: 0;
  z-index: 3;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item__button-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: var(--transition-smooth);
  color: var(--color-text-light);
}

.service-item__button-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.service-item__wrapper:hover .service-item__button-image {
  transform: scale(1.06);
}

.service-item__wrapper:hover .service-item__button-icon {
  background-color: var(--color-accent);
  color: var(--bg-dark);
  transform: rotate(45deg);
}

/* 5. Popup Modals & Slider */
.service-item__popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item__popup-wrapper.is__open {
  opacity: 1;
  pointer-events: auto;
}

.service-item__popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 12, 13, 0.92);
  backdrop-filter: blur(12px);
  z-index: 1;
}

.service-item__popup-close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  z-index: 10;
  transition: var(--transition-smooth);
}

.service-item__popup-close:hover {
  background-color: var(--color-accent);
  color: var(--bg-dark);
  transform: rotate(90deg);
}

.service-item__popup-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.service-item__popup-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  height: 80vh;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--border-radius-l);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  transform: translateY(40px) scale(0.96);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item__popup-wrapper.is__open .service-item__popup-content {
  transform: translateY(0) scale(1);
}

.service-item__popup__slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-deep-dark);
  cursor: grab;
}

.service-item__popup__slider-wrapper:active {
  cursor: grabbing;
}

.service-item__popup__slider-flex {
  display: flex;
  height: 100%;
  width: 300%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-item__popup__slider-image {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
}

.service-item__popup-content__inner {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-text-light);
  border-left: 1px solid var(--border-dark);
}

.service-item__popup-content__inner .h3 {
  font-size: 2.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.service-item__popup-content__inner p {
  color: var(--color-text-muted-light);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* 6. Stats Pillars (USP Cards with GSAP floating coordinates) */
.usp-section__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.usp-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 3.5rem;
  border-radius: var(--border-radius-m);
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

.usp-card:hover {
  box-shadow: 0 30px 60px rgba(17, 19, 21, 0.08);
  border-color: rgba(197, 168, 128, 0.4);
}

.usp-card .h4 {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-accent);
  transform: translateZ(30px);
}

.usp-card p {
  color: var(--color-text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  transform: translateZ(20px);
  margin-top: 1rem;
  margin-bottom: auto;
}

.usp-card__no {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 700;
  color: rgba(17, 19, 21, 0.03);
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  pointer-events: none;
  transform: translateZ(10px);
}

.usp-card.is__2 {
  grid-column: span 1;
}

.usp-card__graphic {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  opacity: 0.15;
  transition: opacity 0.5s ease;
  transform: translateZ(5px);
}

.usp-card:hover .usp-card__graphic {
  opacity: 0.35;
}

/* 7. Corporate Floating Content Section */
.floating-content__text {
  padding-right: 4rem;
}

.floating-content__image-wrapper {
  position: relative;
  border-radius: var(--border-radius-m);
  overflow: hidden;
  height: 540px;
}

.floating-content__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* 8. Cascading Project Slider */
.cascading-slider {
  position: relative;
  width: 100%;
  height: 580px;
  margin-top: 4rem;
  overflow: hidden;
}

.cascading-slider__collection {
  display: none;
}

.cascading-slider__list {
  position: relative;
  width: 100%;
  height: 100%;
}

.cascading-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  will-change: transform;
  clip-path: inset(0px calc(var(--clip) * 1px) 0px calc(var(--clip) * 1px) round var(--radius, 12px));
  cursor: pointer;
}

.cascading-slider__item-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cascading-slider__item-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 12, 13, 0) 30%, rgba(11, 12, 13, 0.8) 100%);
  z-index: 2;
}

.cascading-slider__item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cascading-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cascading-slider__item[data-status="active"] .cascading-slider__img {
  transform: scale(1);
}

.cascading-slider__item-content {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  z-index: 10;
  color: var(--color-text-light);
  pointer-events: none;
}

.cascading-slider__h {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cascading-slider__item[data-status="active"] .cascading-slider__h {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.cascading-slider__nav {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
  gap: 1rem;
  z-index: 50;
}

.cascading-slider__button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.cascading-slider__button:hover {
  background-color: var(--color-accent);
  color: var(--bg-dark);
  border-color: var(--color-accent);
}

.cascading-slider__button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.cascading-slider__button-arrow.is--prev svg {
  transform: rotate(180deg);
}

/* 9. Footer Component */
.footer__wrapper {
  background-color: var(--bg-dark);
  color: var(--color-text-light);
  padding-top: 8rem;
  border-top: 1px solid var(--border-dark);
}

.footer__topper {
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--border-dark);
}

.cta-people {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-people img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-dark);
}

.opacity__65 {
  opacity: 0.65;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
}

.col__footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer__text {
  font-size: 1rem;
  color: var(--color-text-muted-light);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.footer__text.is__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__text a:hover {
  color: var(--color-accent);
}

.footer__logo-massive {
  width: 100%;
  height: auto;
  opacity: 0.05;
  margin-bottom: 4rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-dark);
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
}

.footer__bottom a:hover {
  color: var(--color-accent);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  .services-grid, .usp-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-card.is__2 {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .nav__left, .nav__right {
    display: none; /* Mobile layout handles it */
  }
  
  .nav__toggle {
    display: block;
  }
  
  .image-trail__content-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .service-item__popup-content {
    grid-template-columns: 1fr;
    height: 90vh;
    overflow-y: auto;
  }
  
  .service-item__popup__slider-wrapper {
    height: 380px;
  }
  
  .col__footer {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .services-grid, .usp-section__grid {
    grid-template-columns: 1fr;
  }
  
  .usp-card.is__2 {
    grid-column: span 1;
  }
  
  .home-hero__content-lower {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .col__footer {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .service-item__popup-content__inner {
    padding: 2.5rem;
  }
  
  .rotating-image-trail__card {
    width: 200px;
    height: 260px;
  }
}

/* ==========================================================================
   Vraj Ventures Grid
   ========================================================================== */
.ventures-section {
  margin-top: 6rem;
  border-top: 1px solid var(--border-light);
  padding-top: 6rem;
}

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

.venture-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 2.5rem 1.8rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.01);
  display: flex;
  flex-direction: column;
}

.venture-card:hover {
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 20px 40px rgba(17, 19, 21, 0.05);
  transform: translateY(-6px);
}

.venture-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.venture-card__icon svg {
  width: 22px;
  height: 22px;
}

.venture-card h3.h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.venture-card p {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1199px) {
  .ventures-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Premium Subpage Shared Layouts
   ========================================================================== */
.subpage-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding-top: 160px;
  padding-bottom: 70px;
  background-color: var(--bg-deep-dark);
  background-image: radial-gradient(circle at 80% 20%, rgba(197, 168, 128, 0.07) 0%, transparent 45%);
  color: var(--color-text-light);
  position: relative;
  border-bottom: 1px solid var(--border-dark);
}

.subpage-hero__meta {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.subpage-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

.subpage-hero__title span {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

/* ==========================================================================
   Team Leadership Grid Styles
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 25px 50px rgba(17, 19, 21, 0.06);
}

.team-card__image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background-color: var(--border-light);
}

.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-card:hover .team-card__image {
  transform: scale(1.04);
}

.team-card__info {
  padding: 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card__name {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}

.team-card__role {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}

.team-card__bio {
  font-size: 0.92rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

/* ==========================================================================
   Interactive Projects Tab Filtering Styles
   ========================================================================== */
.projects-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.tab-button {
  padding: 0.8rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.tab-button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.tab-button.is--active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--bg-light) !important;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: opacity 0.4s ease;
}

.project-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 25px 50px rgba(17, 19, 21, 0.06);
}

.project-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background-color: var(--border-light);
}

.project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.project-card__tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(11, 12, 13, 0.65);
  color: var(--color-text-light);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.project-card__info {
  padding: 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
}

.project-card__location {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.project-card__cta {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: var(--transition-fast);
}

.project-card__cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.project-card:hover .project-card__cta {
  color: var(--color-accent-hover);
}

.project-card:hover .project-card__cta svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .projects-tabs {
    flex-wrap: wrap;
  }
  .tab-button {
    padding: 0.6rem 1.6rem;
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   Chronological Awards Timeline Styles
   ========================================================================== */
.timeline-wrap {
  position: relative;
  max-width: 960px;
  margin: 4rem auto 0;
  padding-left: 2.5rem;
  border-left: 2px solid var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 4.5rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: calc(-2.5rem - 7px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-accent);
  border: 4px solid var(--bg-light);
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.01);
  transition: var(--transition-smooth);
}

.timeline-item:hover::before {
  transform: scale(1.3);
}

.timeline-item:hover .timeline-card {
  transform: translateX(8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 15px 30px rgba(17, 19, 21, 0.04);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.35;
  font-family: var(--font-heading);
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .timeline-wrap {
    padding-left: 1.8rem;
  }
  .timeline-item::before {
    left: calc(-1.8rem - 7px);
  }
  .timeline-card {
    padding: 2rem;
  }
  .timeline-title {
    font-size: 1.25rem;
  }
}

/* ==========================================================================
   Media News Card List Styles
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 4rem;
}

.news-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 25px 50px rgba(17, 19, 21, 0.06);
}

.news-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--border-light);
  position: relative;
}

.news-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.news-card:hover .news-card__image {
  transform: scale(1.04);
}

.news-card__info {
  padding: 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__date {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted-dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-card__date svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.45;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card__link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: var(--transition-fast);
}

.news-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__link {
  color: var(--color-accent-hover);
}

.news-card:hover .news-card__link svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

/* ==========================================================================
   Dual Column Contact Page Elements & Form Controls
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.5rem;
  align-items: start;
  margin-top: 4rem;
}

.contact-info__card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 3.5rem;
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
  margin-bottom: 2rem;
}

.contact-info__card:last-child {
  margin-bottom: 0;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 2.2rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.contact-info__item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.2rem;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__text {
  font-size: 0.96rem;
  color: var(--color-text-dark);
  line-height: 1.65;
}

.contact-info__text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.contact-info__text a:hover {
  color: var(--color-accent);
}

.contact-form__card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
}

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

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-control {
  width: 100%;
  padding: 1.05rem 1.4rem;
  border-radius: var(--border-radius-s);
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  transition: var(--transition-fast);
}

.form-control::placeholder {
  color: var(--color-text-muted-dark);
  opacity: 0.6;
}

.form-control:focus {
  border-color: var(--color-accent);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .contact-info__card {
    padding: 2.5rem 2rem;
  }
  .contact-form__card {
    padding: 3rem 2rem;
  }
}

/* ==========================================================================
   Vraj Meridian Specific Premium Modules
   ========================================================================== */
.meridian-highlight__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.meridian-highlight__card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 3rem 2.2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.01);
  transition: var(--transition-smooth);
}

.meridian-highlight__card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 15px 35px rgba(17, 19, 21, 0.04);
}

.meridian-highlight__card h3.h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.meridian-highlight__card p {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

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

.amenity-check {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  transition: var(--transition-fast);
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.005);
}

.amenity-check:hover {
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(197, 168, 128, 0.03);
}

.amenity-check__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-check__icon svg {
  width: 16px;
  height: 16px;
}

.amenity-check span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.hotspots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.hotspot-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(17, 19, 21, 0.015);
}

.hotspot-card h3.h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hotspot-card h3.h3 svg {
  width: 22px;
  height: 22px;
}

.hotspot-list {
  list-style: none;
}

.hotspot-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
  color: var(--color-text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotspot-list li:last-child {
  border-bottom: none;
}

.hotspot-list li span.hotspot-name {
  font-weight: 500;
}

.hotspot-list li span.hotspot-dist {
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  background: var(--bg-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

@media (max-width: 991px) {
  .meridian-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-checklist__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotspots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .meridian-highlight__grid {
    grid-template-columns: 1fr;
  }
  .amenities-checklist__grid {
    grid-template-columns: 1fr;
  }
  .hotspot-card {
    padding: 2.2rem;
  }
}

/* ==========================================================================
   9. Interactive Scheduler Section (Lead Generation)
   ========================================================================== */
.scheduler-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(243, 242, 238, 0.6) 100%);
  border-top: 1px solid rgba(166, 138, 98, 0.15);
  border-bottom: 1px solid rgba(166, 138, 98, 0.15);
  position: relative;
  overflow: hidden;
}

.scheduler__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: start;
}

.scheduler__features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.scheduler-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.scheduler-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-s);
  background-color: rgba(197, 168, 128, 0.08);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.scheduler-feature-icon svg {
  width: 20px;
  height: 20px;
}

.scheduler-feature-text h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.scheduler-feature-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
}

.scheduler-card {
  background: #ffffff;
  border: 1px solid rgba(166, 138, 98, 0.12);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--border-radius-l);
  padding: 3.5rem 3rem;
  box-shadow: 0 30px 60px rgba(17, 19, 21, 0.04), 0 0 0 1px rgba(166, 138, 98, 0.02);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scheduler-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(17, 19, 21, 0.07), 0 0 0 1px rgba(166, 138, 98, 0.05);
}

.booking-form-content {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.booking-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.booking-label {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted-dark);
}

/* Visit Type Buttons */
.visit-type-toggles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.visit-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-s);
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visit-type-btn svg {
  opacity: 0.6;
  transition: var(--transition-fast);
}

.visit-type-btn:hover {
  border-color: var(--color-accent);
  background-color: rgba(197, 168, 128, 0.03);
}

.visit-type-btn.active {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.visit-type-btn.active svg {
  opacity: 1;
}

/* Dropdown */
.select-wrapper {
  position: relative;
  width: 100%;
}

.booking-select {
  width: 100%;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-s);
  appearance: none;
  cursor: pointer;
  transition: var(--transition-fast);
  outline: none;
}

.booking-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}

.select-arrow {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted-dark);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Calendar styling */
.calendar-widget {
  background-color: #FAF9F6;
  border: 1px solid rgba(166, 138, 98, 0.15);
  border-radius: var(--border-radius-s);
  padding: 1.5rem 1.2rem;
  box-shadow: inset 0 2px 8px rgba(17, 19, 21, 0.01);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.calendar-month-year {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.calendar-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(166, 138, 98, 0.2);
  background-color: #ffffff;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted-dark);
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(166, 138, 98, 0.1);
  padding-bottom: 0.6rem;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day-btn {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.calendar-day-btn:hover:not(:disabled):not(.active) {
  background-color: rgba(197, 168, 128, 0.15);
}

.calendar-day-btn.active {
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 600;
}

.calendar-day-btn.is-weekend {
  color: #A68A62;
}

.calendar-day-btn.is-weekend.active {
  color: #ffffff;
}

.calendar-day-btn:disabled {
  color: var(--color-text-muted-light);
  opacity: 0.3;
  cursor: not-allowed;
}

.calendar-day-btn.empty-cell {
  cursor: default;
  pointer-events: none;
}

/* Time slots styling */
.time-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.time-slot-chip {
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.time-slot-chip:hover:not(.active) {
  border-color: var(--color-accent);
  background-color: rgba(197, 168, 128, 0.03);
}

.time-slot-chip.active {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #ffffff;
}

/* Inputs styling */
.inputs-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inputs-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input-wrap {
  width: 100%;
}

.booking-input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-s);
  outline: none;
  transition: var(--transition-fast);
}

.booking-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.1);
}

/* Success Card styling */
.scheduler-success-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  transform: translateY(102%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scheduler-success-card.active {
  transform: translateY(0);
}

.success-icon-wrap {
  width: 68px;
  height: 68px;
  margin-bottom: 1.5rem;
}

.checkmark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #ffffff;
  stroke-miterlimit: 10;
  box-shadow: inset 0 0 0 #A68A62;
  animation: fillAnimation .4s ease-in-out .4s forwards, scaleAnimation .3s ease-in-out .9s forwards;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke: #A68A62;
  stroke-miterlimit: 10;
  fill: none;
  animation: strokeAnimation .6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-width: 3;
  stroke: #A68A62;
  animation: strokeAnimation .3s cubic-bezier(0.65, 0, 0.45, 1) .8s forwards;
}

@keyframes strokeAnimation {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scaleAnimation {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fillAnimation {
  100% {
    box-shadow: inset 0px 0px 0px 0px #A68A62;
  }
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 340px;
}

.success-summary {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-m);
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 0.6rem;
}

.summary-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-label {
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

.summary-val {
  color: var(--color-text-dark);
  font-weight: 600;
}

.summary-val.accent-val {
  color: #A68A62;
  font-family: var(--font-secondary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .scheduler__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .scheduler-card {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .scheduler-section {
    padding: 5rem 0;
  }
  
  .scheduler-card {
    padding: 2rem 1.5rem;
  }
  
  .inputs-sub-row {
    grid-template-columns: 1fr;
  }
  
  .visit-type-toggles {
    grid-template-columns: 1fr;
  }
}


