*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.action-card b {
  color: #e5c07b;
  display: block;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.action-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  text-align: center;
}

.action-card ul li {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.text-center {
  text-align: center;
}

:root {
  --bg: #fdfcfa;
  --bg-alt: #f7f5f2;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-subtle: #9a9a9a;
  --border: rgba(0, 0, 0, 0.06);

  /* 1st section variables (Dark Theme) */
  --color-bg: #0a0a0a;
  --color-text: #ffffff;
  --color-text-muted: #a1a1a1;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-strong: rgba(255, 255, 255, 0.2);
  --color-white: #ffffff;
  --color-black: #000000;
  --color-placeholder-start: #1a1a1a;
  --color-placeholder-end: #2a2a2a;
  --color-placeholder-text: #4a4a4a;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  --hero-padding: 10vh 5vw;
  --section-padding: 5rem 5%;
  --gap-sm: 1rem;
  --gap-lg: 2.5rem;
  --radius-md: 4px;

  --transition-base: 0.3s ease;
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 400 1rem/1.6 "Inter", sans-serif;
  letter-spacing: -0.01em;
}

.snap-container {
  height: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

section,
.main {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  position: relative;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

::selection {
  background: var(--text);
  color: var(--bg);
}

/* Dynamic Header Styling */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2.5rem 0;
}

.main-header.scrolled {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* Slightly stronger shadow */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  transition: color 0.4s ease;
}

.main-header.scrolled .header-logo {
  color: #111;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
}

.nav-link:hover {
  color: #fff;
}

.main-header.scrolled .nav-link {
  color: #666;
}

.main-header.scrolled .nav-link:hover {
  color: #111;
}

.nav-cta {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.8rem .8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 2px;
}

.nav-cta:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.main-header.scrolled .menu-toggle span {
  background: #111;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .main-header {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.15);
    /* Slight dark tint for visibility */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
  }

  .menu-toggle {
    display: flex;
  }

 

  .header-nav.active {
    right: 0;
  }

  .nav-link {
    color: #111;
    font-size: 1.5rem;
  }

  .header-logo {
    color: #fff;
    z-index: 1001;
  }

  .main-header.scrolled .header-logo {
    color: #111;
  }

  .main-header.menu-active .header-logo {
    color: #111;
  }

  .header-logo {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background: #111 !important;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background: #111 !important;
  }
}



/* Creative Light Footer */
.main-footer-section {
  background: #111;
  /* Dark background */
  color: #fff;
  /* White text */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bg-text {
  position: absolute;
  bottom: -5%;
  right: -5%;
  font-family: var(--font-serif);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  /* Lighter for dark bg */
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 5;
}

.footer-simple-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  color: #fff;
}

.footer-link-huge {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #e5c07b;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  font-weight: 700;
}

.footer-link-huge:hover {
  transform: scale(1.05);
  color: #fff;
}

.footer-row-meta {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.footer-info {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}



.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #888;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .main-footer-section {
    height: auto !important;
    padding: 6rem 1.5rem 3rem;
    overflow-y: auto;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-brand-side {
    align-items: center;
  }

  .footer-brand-statement {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-row-meta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bg-text {
    font-size: 30vw;
    bottom: 5%;
  }

  .footer-link-huge {
    font-size: 1.8rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}


.main {
  position: relative;
  z-index: 10;
  max-width: 1800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .main {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
}

/* Logo Mosaic Section - Highly Creative */
.logos-mosaic-section {
  height: 100vh !important;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 2rem;
}

.mosaic-container {
  width: 100%;
  max-width: 1400px;
  text-align: center;
  z-index: 5;
}

.mosaic-header {
  margin-bottom: 4rem;
}

.mosaic-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--text-subtle);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.mosaic-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: #111;
  font-weight: 400;
}

.mosaic-marquee {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.logo-item {
  flex-shrink: 0;
  padding: 0 5rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #efefef;
  transition: all 0.4s ease;
  cursor: default;
}

.logo-item:hover {
  color: #111;
  transform: scale(1.05);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mosaic-marquee::before,
.mosaic-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mosaic-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.mosaic-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.col {
  position: relative;
}

.col-left,
.col-right {
  display: none;
}

.col-center {
  padding: 10rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.col-mobile {
  padding: 0 1.5rem 8rem;
}

@media (min-width: 768px) {
  .col-center {
    padding: 12rem 4rem;
  }
}

@media (min-width: 1024px) {
  .col-left {
    display: block;
    grid-column: span 3;
    padding-left: 3rem;
  }

  .col-center {
    grid-column: span 6;
    padding: 2rem;
    position: sticky;
    top: 0;
    height: 100vh;
  }

  .col-right {
    display: block;
    grid-column: span 3;
    padding-right: 3rem;
  }

  .col-mobile {
    display: none;
  }
}

.track {
  position: relative;
  width: 100%;
  height: 200vh;
}

.col-left .track:nth-child(1) {
  margin-top: 10vh;
}

.col-left .track:nth-child(2),
.col-left .track:nth-child(3) {
  margin-top: 90vh;
}

.col-right .track:nth-child(1) {
  margin-top: 70vh;
}

.col-right .track:nth-child(2),
.col-right .track:nth-child(3) {
  margin-top: 90vh;
}

.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.mask {
  position: relative;
  width: 100%;
  height: 480px;
  max-width: 18rem;
  background: var(--bg-alt);
  clip-path: inset(100% 0 0 0);
  overflow: hidden;
}

.mask::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}

.img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: saturate(0.95);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 60%,
      rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.num {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #fff;
  opacity: 0.7;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.card {
  text-align: center;
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .card {
    padding: 4rem 3rem;
  }
}

.label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-subtle);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }
}

.title {
  font: 400 2.5rem/1.15 "Playfair Display", serif;
  color: var(--text);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 4rem;
  }
}

.divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom,
      transparent,
      var(--border) 20%,
      var(--border) 80%,
      transparent);
  margin: 3rem auto;
}

.text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 28rem;
}

@media (min-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  padding: 1rem 2rem;
  font: 500 0.75rem/1 "Inter", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: translateY(100%);
  transition: transform 0.4s;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn:hover {
  color: var(--bg);
  transform: translateY(-2px);
}

.btn svg {
  width: 14px;
  height: 14px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

.m-track {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 2rem;
}

.m-track:nth-child(1) {
  margin-top: 10vh;
}

.m-sticky {
  position: sticky;
  top: 10vh;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.m-mask {
  position: relative;
  width: 85%;
  max-width: 320px;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  clip-path: inset(100% 0 0 0);
  overflow: hidden;
}

.m-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}

.m-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  filter: saturate(0.95);
}

.m-footer {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-subtle);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 50;
  transition: opacity 0.6s;
}

.scroll-hint.hidden {
  opacity: 0;
  pointer-events: none;
}

.scroll-hint span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-subtle), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
}

/* 1st section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 4rem 2rem;
  /* Added more top padding for header */
  background: #000;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 50%,
      rgba(0, 0, 0, 0.6) 100%);
}


.hero__container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  z-index: 10;
  padding: 0 5%;
}

.hero__content {
  text-align: left;
  max-width: 650px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  /* Reduced slightly for vertical fit */
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.05;
  font-style: italic;
  background: linear-gradient(to right,
      var(--color-white),
      var(--color-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: var(--gap-sm);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button {
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-block;
}

.button--primary {
  background: #e8e4e4;
  color: var(--color-black);
}

.button--primary:hover {
  background: var(--color-text);
  transform: translateY(-1px);
}

.button--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-border-strong);
}

.button--secondary:hover {
  border-color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.05);
}

/* Enquiry Form Styles */
.hero__enquiry {
  width: 100%;
  max-width: 400px;
  /* Slightly narrower */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  /* Reduced vertical padding */
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  /* Reduced */
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: #fff;
}

.form-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  /* Reduced */
  line-height: 1.4;
}

.form-group {
  margin-bottom: 0.75rem;
  /* Reduced */
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.9rem 1.1rem;
  /* Compact inputs */
  color: #fff;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

.form-submit {
  width: 100%;
  background: #fff;
  color: #000;
  border: none;
  padding: 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.form-submit:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero__container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero__content {
    text-align: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__enquiry {
    max-width: 500px;
  }
}

.hero__image {
  position: absolute;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  object-fit: cover;
  opacity: 1;
  z-index: 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: opacity var(--transition-fast), transform 0.3s ease;
}

.hero__image:hover {
  transform: scale(1.05);
}

.hero__image--1 {
  top: 8%;
  left: 5%;
  width: 220px;
  height: 300px;
}

.hero__image--2 {
  top: 10%;
  right: 8%;
  width: 280px;
  height: 200px;
}

.hero__image--3 {
  bottom: 12%;
  left: 8%;
  width: 250px;
  height: 180px;
}

.hero__image--4 {
  bottom: 15%;
  right: 6%;
  width: 200px;
  height: 280px;
}

.hero__image--transitioning-1 {
  view-transition-name: image-1;
}

.hero__image--transitioning-2 {
  view-transition-name: image-2;
}

.hero__image--transitioning-3 {
  view-transition-name: image-3;
}

.hero__image--transitioning-4 {
  view-transition-name: image-4;
}

.hero__image--hidden {
  opacity: 0;
  pointer-events: none;
}

.grid-section {
  min-height: 100vh;
  background: #f7f5f2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.grid-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 25vw;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

.grid-section__container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  z-index: 5;
  height: 100%;
}

.grid-section__text {
  grid-column: 2 / 6;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.grid-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.grid-section__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 2rem;
  line-height: 1.1;
  color: #111;
}

.grid-section__paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.grid-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.grid-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.grid-section__images {
  grid-column: 7 / 13;
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-section__image-wrapper {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.grid-section__image-wrapper--transitioning-1 {
  view-transition-name: image-1;
}

.grid-section__image-wrapper--transitioning-2 {
  view-transition-name: image-2;
}

.grid-section__image-wrapper--transitioning-3 {
  view-transition-name: image-3;
}

.grid-section__image-wrapper--transitioning-4 {
  view-transition-name: image-4;
}

.grid-section__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      var(--bg-alt) 0%,
      var(--bg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-subtle);
  font-size: 0.875rem;
  transition: opacity var(--transition-fast);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.grid-section__placeholder--hidden {
  opacity: 0;
  pointer-events: none;
}

.grid-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-fast);
  position: relative;
  z-index: 2;
}

.grid-section__image--visible {
  opacity: 1;
}

::view-transition-group(image-1),
::view-transition-group(image-2),
::view-transition-group(image-3),
::view-transition-group(image-4) {
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

::view-transition-old(image-1),
::view-transition-old(image-2),
::view-transition-old(image-3),
::view-transition-old(image-4) {
  animation-duration: 0.4s;
}

::view-transition-new(image-1),
::view-transition-new(image-2),
::view-transition-new(image-3),
::view-transition-new(image-4) {
  animation-duration: 0.5s;
}

::view-transition-group(image-1) {
  animation-delay: 0s;
}

::view-transition-group(image-2) {
  animation-delay: 0.1s;
}

::view-transition-group(image-3) {
  animation-delay: 0.2s;
}

::view-transition-group(image-4) {
  animation-delay: 0.3s;
}

/* Full Screen Project Slider */
.gallery-slider-section {
  height: 100vh !important;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6vh 0 0 0 !important;
}

.slider-header {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 10;
}

.slider-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6em;
  color: #888;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.slider-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: #111;
  font-weight: 400;
}

.full-slider {
  flex: 1;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.full-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.full-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 10s linear;
}

.full-slide.active .slide-bg img {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  /* Slightly lower than true center for balance */
  z-index: 3;
  color: #fff;
  width: 90%;
  max-width: 600px;
  padding: 3.5rem;
  background: rgba(0, 0, 0, 0.25);
  /* Darker overlay for text legibility on light images */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-align: center;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
}

.full-slide.active .slide-content {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.slide-project {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.slide-location {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.slide-details {
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.slide-details strong {
  color: #fff;
  font-weight: 600;
  margin-right: 5px;
}

.slide-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 1rem 3rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.slide-btn:hover {
  background: #fff;
  color: #000;
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 3%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.slider-arrow:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #fff;
  width: 60px;
}

@media (max-width: 768px) {
  .slide-content {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border: none;
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .grid-section__container {
    grid-template-columns: 1fr;
  }

  .grid-section__images {
    grid-column: 1;
  }

  .hero__image {
    opacity: 0.4;
    width: 120px !important;
    height: 120px !important;
  }

  .gallery-card {
    min-width: calc((100% - 2rem) / 2);
  }
}

@media (max-width: 768px) {
  .gallery-card {
    min-width: 100%;
  }
}

/* Amenities Section - Creative Staggered Grid */
.amenities-section {
  height: 100vh !important;
  padding: var(--section-padding);
  background: #fdfcfa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.amenities-header {
  text-align: center;
  margin-bottom: 2vh;
}

.amenities-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.amenities-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: #111;
  font-weight: 400;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
}

.amenity-card {
  position: relative;
  height: 350px;
  /* Reduced to fit better */
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.amenity-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger every second card down */
.amenity-card:nth-child(even) {
  margin-top: 6rem;
}

.amenity-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 1.5s ease;
}

.amenity-card:hover .amenity-image {
  transform: scale(1.1);
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.amenity-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem;
  z-index: 2;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.amenity-icon svg {
  width: 100%;
  height: 100%;
}

.amenity-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.amenity-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 300px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s;
}

.amenity-card:hover .amenity-desc {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .amenities-grid {
    display: flex;
    /* Force single line */
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2rem;
    gap: 2rem;
    scrollbar-width: none;
  }

  .amenities-grid::-webkit-scrollbar {
    display: none;
  }

  .amenity-card {
    flex: 0 0 300px;
    /* Prevent squashing */
    height: 400px;
  }

  .amenity-card:nth-child(even) {
    margin-top: 0;
  }
}

.parent {
  display: flex;
  justify-content: flex-end;
  /* moves columns to right side */
  align-items: center;
  height: 500px;
}

.columns-wrapper {
  display: flex;
  gap: 20px;

  /* tilt all columns together */
  transform: rotate(-15deg);
}

.image-column {
  height: 400px;
  width: 150px;
  overflow: hidden;
  border-radius: 12px;
}

.track {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.track img {
  width: 100%;
  /* height: 150px; */
  object-fit: cover;
}

/* Up Animation */
.up {
  animation: scrollUp 10s linear infinite;
}

/* Down Animation */
.down {
  animation: scrollDown 10s linear infinite;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

/* Partners Mosaic Section */
.logos-mosaic-section {
  height: 100vh !important;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.mosaic-container {
  width: 100%;
  max-width: 1400px;
  text-align: center;
}

.mosaic-header {
  margin-bottom: 8vh;
}

.mosaic-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: #888;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.mosaic-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  color: #111;
  font-weight: 400;
}

.mosaic-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-content {
  display: flex;
  gap: 6rem;
  width: max-content;
  animation: marqueeLoop 30s linear infinite;
}

.logo-item {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #111;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.logo-item:hover {
  opacity: 1;
}

@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Awards Section Styles */
.awards-section {
  height: 100vh !important;
  background: #fdfcfa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  padding-top: 0rem;
}

.awards-container {
  width: 100%;
  max-width: 1400px;
  text-align: center;
}

.awards-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.awards-header .line {
  flex: 0 1 100px;
  height: 1px;
  background: var(--border);
}

.awards-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #111;
  text-transform: uppercase;
}

.awards-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  color: #333;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
}

.awards-slider-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  position: relative;
}

.awards-track-container {
  flex: 1;
  overflow: hidden;
  padding: 2rem 0;
}

.awards-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.award-card {
  flex: 0 0 calc(33.333% - 1.333rem);
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.award-icon {
  width: 60px;
  height: 60px;
  background: #fdfcfa;
  border: 2px solid #e5c07b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.award-name {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #111;
  font-weight: 600;
  margin-bottom: 1rem;
}

.award-org {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
}

.awards-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.awards-nav:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.awards-nav svg {
  width: 20px;
  height: 20px;
}

.awards-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 4vh;
}

.award-dot {
  width: 30px;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.award-dot.active {
  background: #111;
  width: 50px;
}

@media (max-width: 1024px) {
  .award-card {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .award-card {
    flex: 0 0 100%;
  }

  .awards-nav {
    display: none;
  }
}

/* Our Values Section Styles */
.values-section {
  background: #fdfcfa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--section-padding);
  position: relative;
  padding-bottom: 0 !important;
}

.values-container {
  width: 100%;
  max-width: 1400px;
  text-align: center;
}

.values-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.values-header .line {
  flex: 0 1 100px;
  height: 1px;
  background: var(--border);
}

.values-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #111;
  text-transform: uppercase;
}

.values-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  color: #111;
  max-width: 900px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  margin-bottom: 2vh;
}

.value-card {
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}

.value-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  opacity: 0.85;
}

.value-card:hover img {
  transform: scale(1.1);
}

.value-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2.5rem;
  z-index: 2;
}

.value-name {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

.values-footer {
  margin-top: 2rem;
}

.button--brand-story {
  background: #fff;
  color: #111;
  border: 1px solid var(--border);
  padding: 1.2rem 3rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.button--brand-story:hover {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .value-card {
    height: 30vh;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero Slider Styles */
.hero {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh !important;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.active .slide-image img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.hero-slide-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 800px;
  z-index: 2;
  color: #fff;
}

.slide-label {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
  color: rgba(255, 255, 255, 0.8);
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.slide-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.slide-explore-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 1.2rem 3rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

.slide-explore-btn:hover {
  background: #e5c07b;
  color: #111;
}

.hero-slider-nav {
  position: absolute;
  bottom: 5%;
  right: 10%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-nav-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.hero-nav-btn svg {
  width: 24px;
  height: 24px;
}

.hero-dots {
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #fff;
  width: 50px;
}

@media (max-width: 768px) {
  .hero-slide-content {
    left: 5%;
    right: 5%;
    bottom: 20%;
  }

  .hero-slider-nav {
    bottom: 5%;
    left: 5%;
    right: 5%;
    justify-content: center;
  }
}

/* Listings Section Styles */
.listings-section {
  height: 100vh !important;
  background: #fdfcfa;
  padding: var(--section-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden !important;
  margin-top:2rem;
}

.listings-header {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 0.25rem;
}

.listings-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.listings-title {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #111;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .listings-section {
    overflow-y: auto !important;
    padding: 80px 5% 40px;
  }

  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .listings-grid {
    grid-template-columns: 1fr;
  }
}

.listing-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.listing-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card:hover .listing-img {
  transform: scale(1.05);
}

.listing-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.listing-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.listing-plus-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.listing-plus-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
}

.listing-info {
  padding: 1.2rem 1rem 1.4rem;
  border: 1px solid #f0f0f0;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.listing-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.listing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a6fcf;
  margin-bottom: 0.9rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a6fcf;
  flex-shrink: 0;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.listing-price {
  font-weight: 700;
  color: #111;
}

.listing-divider {
  color: #ccc;
  font-weight: 300;
}

.listing-possession {
  color: #555;
}

.listing-possession strong {
  font-weight: 600;
  color: #333;
}

.listing-bhk {
  font-size: 0.82rem;
  color: #777;
  margin: 0;
}

/* VIP Modal Styles */
.vip-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vip-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.vip-modal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.vip-modal-overlay.active .vip-modal-content {
  transform: translateY(0);
}

.vip-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #111;
}

.vip-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.vip-modal-header p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.vip-form .form-group {
  margin-bottom: 1rem;
}

.vip-form input,
.vip-form select {
  width: 100%;
  padding: .6rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-sans);
  background: #fff;
  color: #333 !important;
  font-size: 1rem;
  appearance: none;
  /* For cleaner look on some browsers */
  cursor: pointer;
}

.vip-form input::placeholder {
  color: #999;
}

/* Action / CTA Section Styles */
.action-section {
  position: relative;
  /*height: 100vh !important;*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.action-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.action-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.action-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
}

.action-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: var(--section-padding);
  margin: 0 auto;
}

.action-header {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.action-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e5c07b;
  margin-bottom: 1rem;
}

.action-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.action-date-highlight {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.9;
}

.action-date-highlight strong {
  color: #e5c07b;
  font-size: 1.5rem;
  display: block;
  margin-top: 0.5rem;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.action-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: transform 0.4s ease, background 0.4s ease;
      width: 50%;
    margin: 0px auto;
}

.action-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.action-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: rgba(229, 192, 123, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-icon svg {
  width: 32px;
  height: 32px;
  color: #e5c07b;
}

.action-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 2rem;
}

.action-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.action-btn {
  background: #fff;
  color: #111;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  width: 100%;
}

.action-btn:hover {
  background: #e5c07b;
}

/* NRI Investment Section */
/* NRI Investment Section */
.nri-section {
  /* height: 100vh !important; */
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  overflow: hidden;
  background: #fdfcfa;
  position: relative;
}

.nri-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#c99c56 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.15;
  pointer-events: none;
}

.nri-content {
  padding: 8rem 5% 8rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nri-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1a2721;
  width: max-content;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(201, 156, 86, 0.2);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: #c99c56;
  border-radius: 50%;
  position: relative;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.nri-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: #111;
  line-height: 1.05;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nri-title-line {
  width: 80px;
  height: 3px;
  background: #c99c56;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.nri-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 3.5rem;
  line-height: 1.5;
  max-width: 85%;
  font-weight: 400;
}

.nri-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 4rem;
}

.nri-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.nri-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
}

.nri-feature:hover .nri-icon-circle {
  transform: translateY(-5px) rotate(8deg);
  background: #1a2721;
}

.nri-icon-circle svg {
  width: 22px;
  height: 22px;
  color: #c99c56;
  transition: color 0.3s ease;
}

.nri-feature:hover .nri-icon-circle svg {
  color: #fff;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.3rem;
}

.feature-text span {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
  display: block;
}

.nri-actions {
  display: flex;
  gap: 1.2rem;
}

.nri-btn-primary {
  background: #1a2721;
  color: #fff;
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(26, 39, 33, 0.2);
}

.nri-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(26, 39, 33, 0.3);
  background: #000;
}

.nri-btn-outline {
  background: transparent;
  color: #111;
  border: 2px solid #1a2721;
  padding: 1.2rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.nri-btn-outline:hover {
  background: #1a2721;
  color: #fff;
}

.nri-btn-outline svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.nri-image-col {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.nri-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nri-floating-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.8rem 2.2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.floating-icon {
  width: 48px;
  height: 48px;
  background: #c99c56;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.floating-icon svg {
  width: 20px;
  height: 20px;
}

.floating-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.1rem;
}

.floating-text p {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .nri-content {
    padding: 8% 5%;
  }
}

@media (max-width: 1024px) {
  .nri-section {
    grid-template-columns: 1fr;
    height: auto !important;
    overflow-y: visible;
  }

  .nri-content {
    padding: 100px 5%;
  }

  .nri-image-col {
    height: 400px;
  }

  .nri-floating-card {
    bottom: 20px;
    right: 20px;
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .nri-features {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .nri-actions {
    flex-direction: column;
  }

  .nri-btn-primary,
  .nri-btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 5%;
  }

  .hero-slide-content {
    bottom: 12%;
    left: 6%;
    right: 6%;
    max-width: 100%;
  }

  .slide-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .slide-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }

  .slide-explore-btn {
    padding: 1rem 2rem;
    font-size: 0.75rem;
  }
}