:root {
  /* New color palette */
  --primary-gradient: linear-gradient(135deg, #9e1c3d 0%, #7a0f2a 30%, #4b1f4f 65%, #1e2148 100%);
  --accent-solid: #9e1c3d;
  --accent-light: #c44569;
  --accent-dark: #4b1f4f;

  /* Derived colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f3f4f6;
  --mid-gray: #e5e7eb;
  --border-gray: #d1d5db;
  --text-dark: #1f2937;
  --text-mid: #4b5563;
  --text-muted: #6b7280;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* CURSOR — desktop only */
.cursor,
.cursor-ring {
  display: none;
}
@media (pointer: fine) {
  body {
    cursor: none;
  }
  button,
  a,
  select,
  input {
    cursor: none;
  }
  .cursor {
    display: block;
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent-solid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    display: block;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-solid);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    opacity: 0.6;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, transparent 100%);
  transition:
    background 0.4s,
    padding 0.3s;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 14px 60px;
  border-bottom: 1px solid rgba(158, 28, 61, 0.15);
}
.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  height: 100px;
  transition: height 0.3s;
}
.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}
nav.scrolled .nav-logo {
  height: 100px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-solid);
  transition: width 0.3s;
}
.nav-links a:hover {
  opacity: 1;
  color: var(--accent-solid);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--accent-solid);
  color: var(--accent-solid);
  padding: 10px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--accent-solid);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent-solid);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 880;
  background: rgba(255, 255, 255, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  opacity: 0.85;
  transition: color 0.3s;
}
.mobile-nav a:hover {
  color: var(--accent-solid);
  opacity: 1;
}
.mobile-nav .mn-cta {
  margin-top: 8px;
  border: 1px solid var(--accent-solid);
  color: var(--accent-solid);
  padding: 14px 44px;
  font-size: 11px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.mobile-nav .mn-cta:hover {
  background: var(--accent-solid);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 0 10px 0 !important;
}
.hero-media {
  position: relative;
  width: 100%;
  line-height: 0;
}

/* video decides height */
.hero-video {
  width: 100vw;
  height: auto;
  display: block;
  object-fit: contain;
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.92) 0%,
    transparent 55%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;

  max-width: 860px;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-label {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent-solid);
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 7vw, 75px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-solid);
}
.hero-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(31, 41, 55, 0.7);
  max-width: 460px;
  line-height: 2;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  padding: 15px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(158, 28, 61, 0.25);
}
.btn-primary:hover {
  background: var(--accent-solid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 28, 61, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 15px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(31, 41, 55, 0.3);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent-solid);
  color: var(--accent-solid);
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: fadeUp 1.2s ease 0.6s both;
}
.stat {
  text-align: right;
  border-right: 1px solid var(--accent-solid);
  padding-right: 18px;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--accent-solid);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--accent-solid), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
.scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* COMMON */
section {
  padding: 90px 60px;
}
.section-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent-solid);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  color: var(--accent-solid);
}

/* INTRO */
.intro {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-text .section-title {
  margin-bottom: 24px;
}
.intro-body {
  font-size: 13px;
  line-height: 2;
  color: rgba(31, 41, 55, 0.65);
  margin-bottom: 18px;
}
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dark);
  opacity: 0.8;
}
.feature-pill::before {
  content: "◆";
  color: var(--accent-solid);
  font-size: 8px;
}
.intro-image {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.intro-image:hover img {
  transform: scale(1.04);
}
.intro-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--accent-solid);
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}
.badge-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--accent-solid);
}
.badge-sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}

/* RESIDENCES */
.residences {
  background: var(--white);
}
.residences-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  gap: 24px;
}
.residences-desc {
  max-width: 600px;
  font-size: 15px;
  line-height: 2;
  color: rgba(31, 41, 55, 0.5);
  text-align: justify;
}
.units-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.unit-card {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.unit-card:first-child {
  grid-row: span 2;
  height: auto;
  min-height: 460px;
}
.unit-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s;
}
.unit-card:hover .unit-bg {
  transform: scale(1.06);
}
.unit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.2) 60%,
    transparent 100%
  );
  transition: all 0.4s;
}
.unit-card:hover .unit-overlay {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
}
.unit-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.unit-type {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 6px;
}
.unit-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 4px;
}
.unit-size {
  font-size: 12px;
  color: rgba(31, 41, 55, 0.5);
}
.unit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s;
}
.unit-card:hover .unit-details {
  max-height: 160px;
}
.unit-detail {
  font-size: 11px;
  color: rgba(31, 41, 55, 0.6);
}
.unit-detail strong {
  display: block;
  color: var(--accent-solid);
  font-size: 15px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
}

/* AMENITIES */
.amenities {
  background: var(--off-white);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.amenity-item {
  padding: 36px;
  border: 1px solid rgba(158, 28, 61, 0.1);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.amenity-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-solid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.amenity-item:hover {
  border-color: rgba(158, 28, 61, 0.3);
  background: rgba(158, 28, 61, 0.04);
}
.amenity-item:hover::before {
  transform: scaleX(1);
}
.amenity-icon {
  font-size: 30px;
  margin-bottom: 18px;
  opacity: 0.85;
}
.amenity-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.amenity-desc {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(31, 41, 55, 0.5);
}

/* GALLERY */
.gallery {
  background: var(--white);
  padding: 0px 0;
}
.gallery-header {
  padding: 0 60px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-strip {
  display: flex;
  gap: 3px;
  overflow-x: auto;
  padding: 0 60px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-item-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-solid);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
}
/* ── Carousel Wrapper ── */
.gallery-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 45px 0px;
}

/* ── Track Outer: clips to show exactly 3 ── */
.gallery-track-outer {
  overflow: hidden;
  flex: 1;
}

/* ── Track: flex row of all items ── */
.gallery-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Each Card: exactly 1/3 of the visible frame ── */
.gallery-track .gallery-item {
  flex: 0 0 calc((100% - 28px) / 2); /* 28px = 2 gaps */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-track .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-track .gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-track .gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-track .gallery-item:hover .gallery-item-label {
  opacity: 1;
}

/* ── Prev / Next Buttons ── */
.carousel-btn {
  flex-shrink: 0;
  width: 76px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #c44569;
  font-size: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    opacity 0.2s;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* ── Dots ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 50px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.carousel-dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightboxFadeIn 0.3s ease;
}

.lightbox-caption {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .gallery-carousel-wrapper {
    padding: 0 16px 30px;
  }

  .gallery-track .gallery-item {
    flex: 0 0 calc((100% - 14px) / 2); /* show 2 on tablet */
  }
}

@media (max-width: 480px) {
  .gallery-track .gallery-item {
    flex: 0 0 100%; /* show 1 on mobile */
  }
}
/* LOCATION */
.location {
  background: var(--off-white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.location-map {
  height: 460px;
  background: var(--white);
  border: 1px solid rgba(158, 28, 61, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--accent-solid);
  border-radius: 50%;
  animation: ping 2s ease-in-out infinite;
}
@keyframes ping {
  0% {
    box-shadow: 0 0 0 0 rgba(158, 28, 61, 0.4);
  }
  70% {
    box-shadow: 0 0 0 28px rgba(158, 28, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(158, 28, 61, 0);
  }
}
.distances {
  display: flex;
  flex-direction: column;
}
.distance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(158, 28, 61, 0.1);
}
.distance-name {
  font-size: 13px;
  color: rgba(31, 41, 55, 0.75);
}
.distance-time {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.distance-mins {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-solid);
}
.distance-unit {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* Contact form */
/* SECTION BAR */
.inline-enquiry {
  /* max-width: 1200px;
  margin: 20px auto; */
  padding: 42px 25px;
  border: 1px solid #caa86a;
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--primary-gradient);
}

/* FIELD */
.ie-field {
  flex: 1;
  position: relative;
}

.ie-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  outline: none;
  transition: 0.3s;
}

/* placeholder style */
.ie-field input::placeholder {
  color: #e5e7eb;
  letter-spacing: 1px;
}

/* focus line luxury */
.ie-field input:focus {
  border-bottom: 1px solid #d4af37;
}

/* SUBMIT BUTTON */
.ie-submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.35s;
}

.ie-submit:hover {
  background: var(--primary-gradient);
}

/* MOBILE */
@media (max-width: 900px) {
  .inline-enquiry {
    flex-direction: column;
    gap: 18px;
  }

  .ie-submit {
    width: 100%;
  }
}

/* ENQUIRY SECTION */
.enquiry {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.enquiry-image {
  height: 680px;
  background: url("images/img68.jpg") center/cover;
  position: relative;
}
.enquiry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
}
.enquiry-form-wrap {
  padding: 72px 56px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  margin: 14px 0 6px;
}
.form-title em {
  font-style: italic;
  color: var(--accent-solid);
}
.form-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 2;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(158, 28, 61, 0.3);
  padding: 10px 0;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group select option {
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent-solid);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-submit {
  margin-top: 12px;
  background: var(--primary-gradient);
  border: none;
  color: var(--white);
  padding: 16px 48px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  box-shadow: 0 4px 12px rgba(158, 28, 61, 0.25);
}
.form-submit:hover {
  background: var(--accent-solid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 28, 61, 0.35);
}

/* ═══ FOOTER MAIN ═══ */
.footer-main {
  background: var(--off-white);
  position: relative;
}

/* Brand Section */
.footer-brand-section {
  padding: 80px 60px 60px;
  background: var(--primary-gradient);
  position: relative;
}

.footer-brand-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  width: 120px;
  height: 300px;
  background: linear-gradient(
    180deg,
    rgba(158, 28, 61, 0.08) 0%,
    rgba(158, 28, 61, 0.05) 20%,
    rgba(158, 28, 61, 0.03) 40%,
    rgba(158, 28, 61, 0.02) 60%,
    transparent 100%
  );
  clip-path: polygon(
    0 0,
    20% 0,
    20% 100%,
    0 100%,
    25% 0,
    45% 0,
    45% 100%,
    25% 100%,
    50% 0,
    70% 0,
    70% 100%,
    50% 100%,
    75% 0,
    95% 0,
    95% 100%,
    75% 100%
  );
}

.footer-brand-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo-divider {
  width: 1px;
  height: 60px;
  background: var(--mid-gray);
  opacity: 0.3;
}

.footer-project-name {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-name-main {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  line-height: 1;
}

.project-name-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-brand-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Enquire Section */
.footer-enquiry-section {
  background: var(--white);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 50px 60px;
}

.footer-enquiry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-enquiry-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.footer-enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 20px;
}

.footer-form-row-2 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-form-field {
  position: relative;
}

.footer-form-field input,
.footer-form-field select {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-gray);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: all 0.3s;
}

.footer-form-field input::placeholder {
  color: var(--text-muted);
}

.footer-form-field input:focus,
.footer-form-field select:focus {
  border-bottom-color: var(--accent-solid);
}

.footer-form-field select {
  cursor: pointer;
  appearance: none;
  color: var(--text-muted);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}

.footer-phone-field {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
}

.footer-country-code {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-gray);
  cursor: pointer;
}

.footer-flag {
  font-size: 18px;
}

.footer-code {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.footer-dropdown-arrow {
  font-size: 8px;
  color: var(--text-muted);
  margin-left: auto;
}

.footer-submit-btn {
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  padding: 18px 48px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(158, 28, 61, 0.3);
}

.footer-submit-btn:hover {
  background: var(--accent-solid);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 28, 61, 0.4);
}

/* Emotional CTA Section */
.footer-cta-section {
  background: var(--primary-gradient);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.footer-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.footer-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
}

.footer-cta-title em {
  color: var(--accent-light);
  font-style: italic;
}

.footer-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-cta-left {
  border-left: 3px solid var(--accent-light);
  padding-left: 32px;
}

.footer-cta-highlight {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.footer-cta-pain-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-cta-pain-points li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 2;
  position: relative;
  padding-left: 28px;
}

.footer-cta-pain-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 600;
}

.footer-cta-right {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.footer-cta-solution {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-cta-closing {
  font-size: 17px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 32px;
}

.footer-cta-closing strong {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-cta-btn {
  background: var(--white);
  color: var(--accent-solid);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  background: var(--white);
  padding: 60px 60px 0;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-gray);
}

.footer-bottom-logo img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 360px;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li {
  font-size: 13px;
}

.footer-links a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-solid);
}

.footer-bottom-bar {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
}

.footer-rera {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .footer-brand-section,
  .footer-enquiry-section,
  .footer-cta-section,
  .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .footer-form-row {
    grid-template-columns: 1fr;
  }

  .footer-form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-submit-btn {
    width: 100%;
  }

  .footer-cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-brand-section,
  .footer-enquiry-section,
  .footer-cta-section,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-brand-section::before {
    left: 20px;
    width: 80px;
    height: 200px;
  }

  .footer-brand-title {
    font-size: 32px;
    margin-bottom: 36px;
  }

  .footer-logos {
    flex-direction: column;
    gap: 32px;
  }

  .footer-logo-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-solid), transparent);
    opacity: 0.3;
  }

  .footer-brand-description {
    font-size: 14px;
  }

  .footer-enquiry-title {
    font-size: 26px;
  }

  .footer-cta-title {
    font-size: 28px;
  }

  .footer-cta-highlight {
    font-size: 20px;
  }

  .footer-bottom-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-brand-title {
    font-size: 26px;
  }

  .project-name-main {
    font-size: 36px;
  }

  .footer-phone-field {
    grid-template-columns: 100px 1fr;
  }

  .footer-cta-title {
    font-size: 24px;
  }

  .footer-cta-solution,
  .footer-cta-closing {
    font-size: 15px;
  }
}

/* ═══ VERTICAL FLOATING SIDEBAR BUTTONS ═══ */
.float-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: sidebarSlide 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s both;
}
@keyframes sidebarSlide {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.float-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.float-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.float-tab:hover::before {
  transform: scaleY(1);
}

.float-tab svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  /* rotate icon to match vertical orientation */
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.float-tab:hover svg {
  transform: rotate(90deg) scale(1.15);
}

/* Enquire tab — gradient solid */
.float-tab-enquire {
  background: var(--primary-gradient);
  color: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: -4px 0 20px rgba(158, 28, 61, 0.35);
}
.float-tab-enquire:hover {
  background: var(--accent-solid);
  padding-right: 20px;
  box-shadow: -6px 0 28px rgba(158, 28, 61, 0.5);
}

/* Brochure tab — dark with gold border */
.float-tab-brochure {
  background: var(--off-white);
  color: var(--accent-solid);
  border-left: 2px solid var(--accent-solid);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.4);
}
.float-tab-brochure:hover {
  background: rgba(158, 28, 61, 0.1);
  padding-right: 20px;
  box-shadow: -6px 0 24px rgba(158, 28, 61, 0.25);
}

/* Pulse on enquire tab */
@keyframes tabPulse {
  0%,
  100% {
    box-shadow:
      -4px 0 20px rgba(158, 28, 61, 0.35),
      0 0 0 0 rgba(158, 28, 61, 0.3);
  }
  60% {
    box-shadow:
      -4px 0 20px rgba(158, 28, 61, 0.35),
      -8px 0 0 6px rgba(158, 28, 61, 0);
  }
}
.float-tab-enquire {
  animation: tabPulse 3s ease-in-out infinite;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ POPUP ═══════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(14, 13, 11, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.popup-box-new {
  background: var(--primary-gradient);
  width: 100%;
  max-width: 1200px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}
.popup-overlay.active .popup-box-new {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
}
.popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.popup-form-container {
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  gap: 40px;
  padding: 50px 40px;
  position: relative;
}

/* Left Benefits */
.popup-benefits {
  display: flex;
  flex-direction: column;
}

.popup-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: #c9a96e;
  margin-bottom: 12px;
  line-height: 1.2;
}

.popup-main-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 40px;
}

.benefit-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.benefit-item:hover .benefit-icon {
  background: rgba(201, 169, 110, 0.15);
  transform: scale(1.05);
}
.benefit-icon svg {
  width: 32px;
  height: 32px;
  stroke: #c9a96e;
}

.benefit-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Center Form */
.popup-form-area {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.popup-form-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: white;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: "Montserrat", sans-serif;
}

.phone-field {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
}

.country-code {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
}

.flag {
  font-size: 18px;
}

.code {
  font-weight: 500;
}

.recaptcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-top: 4px;
}

.recaptcha-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.recaptcha-box label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.popup-submit-new {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
  text-transform: uppercase;
}

.popup-submit-new:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

/* Right Info */
.popup-info {
  padding-top: 8px;
}

.info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 400;
  color: #c9a96e;
  line-height: 1.3;
  margin-bottom: 28px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  padding-left: 20px;
  transition: all 0.3s;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a96e;
  font-size: 18px;
}

.info-list li:hover {
  color: #c9a96e;
  padding-left: 24px;
}

/* Success State */
.popup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  min-height: 400px;
}
.popup-success.show {
  display: flex;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(76, 175, 80, 0.15);
  border: 3px solid #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #4caf50;
  margin-bottom: 24px;
  animation: successPop 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes successPop {
  from {
    transform: scale(0.3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.success-title em {
  color: #c9a96e;
  font-style: italic;
}

.success-msg {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 400px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .popup-form-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }

  .popup-benefits {
    order: 1;
  }

  .popup-form-area {
    order: 2;
  }

  .popup-info {
    order: 3;
    max-width: 500px;
    margin: 0 auto;
  }

  .benefit-items {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
  }

  .benefit-icon svg {
    width: 28px;
    height: 28px;
  }

  .benefit-text {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .popup-box-new {
    border-radius: 12px;
  }

  .popup-form-container {
    padding: 32px 24px;
  }

  .popup-main-title {
    font-size: 28px;
  }

  .popup-main-subtitle {
    font-size: 12px;
  }

  .popup-form-area {
    padding: 32px 24px;
  }

  .form-row-fields {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 90px 1fr;
  }

  .info-title {
    font-size: 22px;
  }

  .benefit-items {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 12px;
  }

  .popup-form-container {
    padding: 24px 20px;
  }

  .popup-form-area {
    padding: 24px 20px;
  }

  .popup-main-title {
    font-size: 24px;
  }

  .success-title {
    font-size: 28px;
  }

  .popup-success {
    padding: 60px 24px;
  }
}

/* ═══ BROCHURE POPUP ═══ */
.brochure-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.brochure-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.brochure-box {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  position: relative;
  border: 1px solid rgba(158, 28, 61, 0.2);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s ease;
  overflow: hidden;
}
.brochure-overlay.active .brochure-box {
  transform: translateY(0) scale(1);
}

.brochure-header {
  padding: 0 36px 28px;
  border-bottom: 1px solid rgba(158, 28, 61, 0.12);
  background: var(--off-white);
  position: relative;
}
.brochure-header-img {
  height: 160px;
  margin: 0 -36px 28px;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=800&q=80")
    center/cover;
  position: relative;
}
.brochure-header-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.7));
}
.brochure-header-img-text {
  position: absolute;
  bottom: 16px;
  left: 36px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-solid);
}
.brochure-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 6px;
}
.brochure-title em {
  font-style: italic;
  color: var(--accent-solid);
}
.brochure-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.brochure-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(158, 28, 61, 0.25);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
}
.brochure-close:hover {
  color: var(--accent-solid);
  border-color: var(--accent-solid);
}

.brochure-form-wrap {
  padding: 28px 36px 36px;
}
.brochure-form .form-group {
  margin-bottom: 18px;
}
.brochure-form .form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.brochure-form .form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(158, 28, 61, 0.3);
  padding: 9px 0;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s;
}
.brochure-form .form-group input:focus {
  border-color: var(--accent-solid);
}
.brochure-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.brochure-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--primary-gradient);
  border: none;
  color: var(--white);
  padding: 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brochure-submit:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}
.brochure-submit svg {
  width: 16px;
  height: 16px;
}
.brochure-privacy {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.7;
}

/* Brochure features list */
.brochure-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 4px;
}
.brochure-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(31, 41, 55, 0.6);
  letter-spacing: 0.04em;
}
.brochure-feature::before {
  content: "◆";
  color: var(--accent-solid);
  font-size: 7px;
}

/* Brochure success */
.brochure-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
}
.brochure-success.show {
  display: flex;
}
.brochure-success-anim {
  width: 64px;
  height: 64px;
  border: 2px solid var(--accent-solid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  animation: successPop 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes successPop {
  from {
    transform: scale(0.3);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.brochure-success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 10px;
}
.brochure-success-title em {
  color: var(--accent-solid);
  font-style: italic;
}
.brochure-success-msg {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 24px;
  max-width: 280px;
}
.brochure-download-btn {
  background: var(--accent-solid);
  border: none;
  color: var(--white);
  padding: 14px 36px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brochure-download-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .float-tab {
    padding: 16px 11px;
    font-size: 9px;
    gap: 9px;
  }
  .float-tab svg {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 480px) {
  .float-tab {
    padding: 14px 10px;
    font-size: 8px;
    letter-spacing: 0.15em;
  }
}
@media (max-width: 480px) {
  .brochure-box {
    max-width: 100%;
  }
  .brochure-form .form-row {
    grid-template-columns: 1fr;
  }
  .brochure-header {
    padding: 0 24px 24px;
  }
  .brochure-header-img {
    margin: 0 -24px 24px;
  }
  .brochure-header-img-text {
    left: 24px;
  }
  .brochure-form-wrap {
    padding: 24px 24px 32px;
  }
}

/* ═══ MASTER PLAN ═══ */
.masterplan {
  background: var(--white);
}
.masterplan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
}
.masterplan-desc {
  max-width: 691px;
  font-size: 15px;
  line-height: 2;
  color: rgb(44 30 71);
  text-align: justify;
}

.masterplan-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(158, 28, 61, 0.15);
  cursor: zoom-in;
}
.masterplan-img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-origin: center center;
}
.masterplan-wrap.zoomed {
  cursor: zoom-out;
}
.masterplan-wrap.zoomed .masterplan-img {
  transform: scale(2);
}

.masterplan-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(158, 28, 61, 0.3);
  color: var(--accent-solid);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  transition: opacity 0.3s;
  pointer-events: none;
}
.masterplan-hint svg {
  width: 14px;
  height: 14px;
}
.masterplan-wrap.zoomed .masterplan-hint {
  opacity: 0;
}

.masterplan-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--off-white);
  border: 1px solid rgba(158, 28, 61, 0.1);
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(31, 41, 55, 0.65);
  letter-spacing: 0.06em;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ═══ FLOOR PLANS ═══ */
.floorplans {
  background: var(--white);
  padding: 0px !important;
}
.floorplans-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
}

/* Tab pills */
.fp-tabs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid rgba(158, 28, 61, 0.2);
  align-self: flex-end;
}
.fp-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  cursor: pointer;
  border-right: 1px solid rgba(158, 28, 61, 0.2);
}
.fp-tab:last-child {
  border-right: none;
}
.fp-tab.active {
  background: var(--accent-solid);
  color: var(--white);
  font-weight: 600;
}
.fp-tab:not(.active):hover {
  background: rgba(158, 28, 61, 0.08);
  color: var(--accent-solid);
}

/* Floor plan panels */
.fp * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fp {
  font-family: "DM Sans", sans-serif;
  background: var(--primary-gradient);
  color: #e8e0d0;
  padding: 48px 40px 60px;
}
.fp-head {
  margin-bottom: 36px;
}
.fp-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5a358;
  margin-bottom: 10px;
}
.fp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  color: #f0e8d8;
  line-height: 1.05;
}
.fp-title em {
  font-style: italic;
  color: #c5a358;
}

.fp-bhk-tabs {
  display: flex;
  gap: 0;
  border-bottom: 0.5px solid rgba(232, 224, 208, 0.1);
  margin-bottom: 24px;
}
.fp-bhk-tab {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.35);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 26px 10px;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.fp-bhk-tab:hover {
  color: rgba(232, 224, 208, 0.7);
}
.fp-bhk-tab.active {
  color: var(--border-gray);
  border-bottom-color: var(--text-dark);
}

.fp-type-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.fp-type-lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.28);
  margin-right: 4px;
}
.fp-type-btn {
  font-size: 11px;
  padding: 5px 15px;
  border: 0.5px solid rgba(232, 224, 208, 0.12);
  background: transparent;
  color: rgba(232, 224, 208, 0.45);
  cursor: pointer;
  letter-spacing: 0.07em;
  transition: all 0.15s;
  border-radius: 2px;
}
.fp-type-btn:hover {
  border-color: rgba(197, 163, 88, 0.45);
  color: #c5a358;
}
.fp-type-btn.active {
  background: rgba(197, 163, 88, 0.1);
  border-color: #c5a358;
  color: #c5a358;
}

.fp-panel {
  display: none;
}
.fp-panel.active {
  display: block;
}
.fp-type-panel {
  display: none;
}
.fp-type-panel.active {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.fp-img-card {
  aspect-ratio: 4 / 4;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: #1a1c22;
}
.fp-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s;
  opacity: 0.82;
  display: block;
}
.fp-img-card:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.fp-img-card .fp-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(13, 15, 20, 0.85) 0%, transparent 100%);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5a358;
  pointer-events: none;
}

/* Lightbox */
.fp-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 15, 20, 0.96);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.fp-lb.open {
  display: flex;
}
.fp-lb img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  animation: lbIn 0.25s ease;
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fp-lb-close {
  position: fixed;
  top: 22px;
  right: 28px;
  background: none;
  border: 0.5px solid rgba(232, 224, 208, 0.2);
  color: rgba(232, 224, 208, 0.6);
  font-size: 20px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.fp-lb-close:hover {
  color: #c5a358;
  border-color: #c5a358;
}
.fp-lb-label {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.35);
}
.fp-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0.5px solid rgba(232, 224, 208, 0.15);
  color: rgba(232, 224, 208, 0.5);
  width: 40px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 18px;
}
.fp-lb-nav:hover {
  border-color: #c5a358;
  color: #c5a358;
}
.fp-lb-prev {
  left: 20px;
}
.fp-lb-next {
  right: 20px;
}
/* SECTION */
.specs {
  background: var(--primary-gradient);
  padding: 120px 20px;
  color: var(--white);
}

/* TITLE */
.specs-title {
  text-align: center;
  font-size: 42px;
  letter-spacing: 6px;
  font-weight: 300;
  margin-bottom: 70px;
  text-transform: uppercase;
}

/* GRID */
.specs-grid {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.spec-item {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

/* HEADER */
.spec-head {
  width: 100%;
  background: transparent;
  color: var(--white);
  padding: 22px 28px;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-head::after {
  content: "+";
  font-size: 20px;
  transition: 0.3s;
}

.spec-item.active .spec-head::after {
  content: "–";
}

/* BODY */

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  nav,
  nav.scrolled {
    padding-left: 40px;
    padding-right: 40px;
  }

  section {
    padding: 80px 40px;
  }
  .hero-content {
    padding: 0 40px;
  }
  .hero-stats {
    right: 40px;
  }
  .gallery-strip,
  .gallery-header {
    padding-left: 40px;
    padding-right: 40px;
  }
  footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .units-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .unit-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 380px;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-1 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-image {
    height: 380px;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .location-map {
    height: 300px;
  }
  .enquiry {
    grid-template-columns: 1fr;
  }
  .enquiry-image {
    height: 280px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  /* popup */
  .popup-box {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .popup-left {
    min-height: 200px;
  }
  .popup-right {
    padding: 30px 28px;
  }
  .popup-form .form-row {
    grid-template-columns: 1fr;
  }
  /* floor plans */
  .fp-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-specs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  nav {
    padding: 16px 20px;
  }
  nav.scrolled {
    padding: 0px 15px;
  }
  .nav-logo {
    height: 32px;
  }
  nav.scrolled .nav-logo {
    height: 75px;
  }
  section {
    padding: 60px 20px;
  }
  .hero-content {
    padding: 0 20px;
  }
  .hero-stats {
    display: none;
  }
  .hero-1 {
    padding: 17px 20px 10px 20px !important;
  }
  .hero-subtitle {
    font-size: 12px;
    max-width: 100%;
  }
  .residences-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .residences-desc {
    text-align: left;
    max-width: 100%;
  }
  .units-grid {
    grid-template-columns: 1fr 1fr;
  }
  .unit-card {
    height: 280px;
  }
  .unit-card:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    padding: 60px 0;
  }
  .gallery-header {
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .gallery-strip {
    padding: 0 20px;
  }
  .gallery-item {
    flex: 0 0 260px;
  }
  .enquiry-form-wrap {
    padding: 44px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  footer {
    padding: 44px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  /* masterplan */
  .masterplan-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .masterplan-desc {
    text-align: left;
    max-width: 100%;
  }
  .masterplan-legend {
    gap: 14px;
  }
  /* floorplans */
  .floorplans-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .fp-tabs {
    width: 100%;
  }
  .fp-tab {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .fp-specs {
    grid-template-columns: repeat(2, 1fr);
  }
  .fp-type-panel.active {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }
  .units-grid {
    grid-template-columns: 1fr;
  }
  .unit-card,
  .unit-card:first-child {
    grid-column: span 1;
    height: 260px;
  }
  .intro-features {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    flex: 0 0 220px;
  }
  .popup-right {
    padding: 24px 20px;
  }
}
/* SECTION */
.specifications {
  background: #f3f4f6;
  padding: 110px 20px;
}

/* TITLE */
.spec-title {
  text-align: center;
  font-size: 44px;
  letter-spacing: 8px;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 70px;
  position: relative;
}

/* center ornament */
/* .spec-title::after {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-solid);
  display: block;
  margin: 18px auto 0;
  box-shadow: 0 0 0 6px rgba(158, 28, 61, 0.12);
} */

/* GRID */
.spec-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */
.spec-card {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: 0.35s ease;
  align-self: start;
}

/* LUXURY DEPTH */
.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.spec-header {
  background: var(--primary-gradient);
  color: #fff;
  padding: 22px 26px;
  font-size: 17px;
  letter-spacing: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 68px;
}

/* PLUS ICON */
.spec-header::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  transition: 0.35s;
}

.spec-card.active .spec-header::after {
  content: "−";
}

/* CONTENT */
.spec-content {
  height: 0;
  overflow: hidden;
  transition: height 0.45s ease;
  background: #fff;
}

/* divider line */
.spec-card.active .spec-content {
  border-top: 1px solid #eee;
}

/* TEXT */
.spec-content p {
  padding: 16px 26px;
  margin: 0;
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
}

/* spacing between lines */
.spec-content p + p {
  border-top: 1px dashed #eee;
}

/* open state */

/* MOBILE */
@media (max-width: 900px) {
  .spec-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .spec-title {
    font-size: 25px;
    letter-spacing: 6px;
  }
}
/* ═══ HIGHLIGHTS SECTION ═══ */
.highlights {
  background: linear-gradient(360deg, #9e1c3d 0%, #7a0f2a 30%, #4b1f4f 65%, #1e2148 100%);
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.highlights .section-tag {
  color: rgba(255, 255, 255, 0.7);
}
.highlights .section-tag::before {
  background: rgba(255, 255, 255, 0.7);
}
.highlights .section-title {
  color: var(--white);
  margin-bottom: 56px;
}
.highlights .section-title em {
  color: #c44569;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
}

.highlight-item {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.highlight-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.highlight-item:hover .highlight-icon {
  border-color: #c44569;
  transform: scale(1.05);
}
.highlight-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(255, 255, 255, 0.9);
}

.highlight-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 6px;
}

.highlight-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* ═══ CLUBHOUSE SECTIONS ═══ */
.clubhouse {
  background: var(--white);
  padding: 90px 60px;
}
.clubhouse-alt {
  background: var(--off-white);
}

.clubhouse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1200px) {
  .highlights {
    padding: 80px 40px;
  }
  .clubhouse {
    padding: 80px 40px;
  }
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .clubhouse-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .clubhouse-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .highlights {
    padding: 60px 20px;
  }
  .clubhouse {
    padding: 60px 20px;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .clubhouse-grid {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    padding: 28px 16px;
  }
  .highlight-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
  }
  .highlight-icon svg {
    width: 28px;
    height: 28px;
  }
  .highlight-value {
    font-size: 32px;
  }
  .highlight-label {
    font-size: 11px;
  }
  .highlight-sub {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .highlight-item {
    padding: 24px 12px;
  }
}
/* ═══ CONSTRUCTION PROGRESS ═══ */
.construction-progress {
  background: var(--off-white);
  padding: 90px 60px;
}

.progress-header {
  text-align: center;
  margin-bottom: 56px;
}

.progress-intro {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 18px auto 0;
  line-height: 1.8;
}

/* Timeline Navigation */
.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.timeline-nav-btn {
  background: white;
  border: 1px solid var(--border-gray);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.03em;
}

.timeline-nav-btn:hover {
  border-color: var(--accent-solid);
  color: var(--accent-solid);
  transform: translateY(-2px);
}

.timeline-nav-btn.active {
  background: var(--primary-gradient);
  color: white;
  border-color: var(--accent-solid);
}

/* Progress Timeline */
.progress-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.progress-update {
  display: none;
  margin-bottom: 40px;
}

.progress-update.active {
  display: block;
}

.update-content {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.update-info {
  padding: 40px;
}

.update-date {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.update-month {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--accent-solid);
}

.update-year {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

.update-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.update-status {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-completed {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.status-progress {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

.completion-percent {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.update-description {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.update-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.update-highlights li {
  font-size: 13px;
  color: var(--text-dark);
  padding: 8px 0;
  line-height: 1.6;
}

/* Gallery */
.update-gallery {
  padding: 20px;
  padding-left: 0;
}

.gallery-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 380px;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-main:hover .gallery-main-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-main:hover .gallery-overlay {
  opacity: 1;
}

.gallery-expand {
  background: white;
  color: var(--accent-solid);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-expand:hover {
  background: var(--accent-solid);
  color: white;
  transform: translateY(-2px);
}

.gallery-expand svg {
  width: 16px;
  height: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.gallery-thumbs img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-thumbs img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-more {
  background: var(--accent-solid);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-more:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

/* Overall Progress */
.overall-progress {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.overall-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.overall-progress-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
}

.overall-progress-percent {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent-solid);
  font-family: "Cormorant Garamond", serif;
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 20px;
  transition: width 1s ease;
}

.progress-milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.milestone {
  text-align: center;
}

.milestone-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--light-gray);
  color: var(--text-muted);
  transition: all 0.3s;
}

.milestone-done .milestone-icon {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.milestone-active .milestone-icon {
  background: rgba(255, 152, 0, 0.15);
  color: #ff9800;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.milestone-label {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}

.milestone-done .milestone-label {
  color: #4caf50;
}

.milestone-active .milestone-label {
  color: #ff9800;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .construction-progress {
    padding: 80px 40px;
  }

  .update-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .update-gallery {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .construction-progress {
    padding: 60px 20px;
  }

  .timeline-nav {
    gap: 8px;
  }

  .timeline-nav-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .update-info {
    padding: 32px 24px;
  }

  .update-month {
    font-size: 26px;
  }

  .update-title {
    font-size: 22px;
  }

  .gallery-main {
    height: 280px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .overall-progress {
    padding: 32px 24px;
  }

  .progress-milestones {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .update-date {
    flex-direction: column;
    gap: 4px;
  }

  .update-month {
    font-size: 22px;
  }

  .update-year {
    font-size: 14px;
  }

  .update-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }

  .overall-progress-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
/* wrapper */
.form-consent {
  margin: 18px 0 25px;
  text-align: left;
}

/* label layout */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: #6d6a66;
}

/* hide default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* ═══ CHECKBOX STYLING ═══ */
.checkbox-group,
.checkbox-field {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent-solid);
}

.checkbox-label span {
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* For popup form */
.popup-form-new .checkbox-label span {
  color: var(--text-dark);
}

/* For footer form */
.footer-enquiry-form .checkbox-label {
  margin-top: 12px;
}

.footer-enquiry-form .checkbox-label span {
  color: var(--text-mid);
  font-size: 11px;
}

/* Brochure form */
.brochure-form .checkbox-label span {
  color: var(--text-mid);
  font-size: 11px;
}
/* ═══ FAQ SECTION ═══ */
.faq-section {
  background: var(--primary-gradient);
  padding: 90px 60px;
  position: relative;
  overflow: hidden;
}

/* Pattern overlay */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
  opacity: 0.5;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-section .section-tag {
  color: rgba(255, 255, 255, 0.7);
}

.faq-section .section-tag::before {
  background: rgba(255, 255, 255, 0.7);
}

.faq-section .section-title {
  color: var(--white);
}

.faq-section .section-title em {
  color: var(--accent-light);
}

.faq-intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 640px;
  margin: 20px auto 0;
}

.faq-intro a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-light);
  transition: all 0.3s;
}

.faq-intro a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.faq-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 48px;
  margin-bottom: 60px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-category-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  stroke: var(--accent-light);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-top: 16px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.faq-answer ul {
  margin: 12px 0;
  padding-left: 20px;
}

.faq-answer li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.faq-answer strong {
  color: var(--white);
  font-weight: 600;
}

/* FAQ CTA Box */
.faq-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
}

.faq-cta-content {
  position: relative;
  z-index: 1;
}

.faq-cta h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.faq-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.faq-cta-actions {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-cta .btn-primary {
  background: var(--white);
  color: var(--accent-solid);
  white-space: nowrap;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-cta .btn-primary:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.faq-cta .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.faq-cta .btn-outline:hover {
  background: var(--white);
  color: var(--accent-solid);
  transform: translateY(-2px);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .faq-section {
    padding: 80px 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-cta {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  .faq-cta h3 {
    font-size: 26px;
  }

  .faq-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .faq-cta .btn-primary,
  .faq-cta .btn-outline {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-question {
    font-size: 14px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 13px;
  }

  .faq-category-title {
    font-size: 10px;
  }
}
.ft-social {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ft-social-link {
  width: 50px;
  height: 38px;
  border: 0.5px solid rgba(232, 224, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  border-radius: 2px;
}
.ft-social-link:hover {
  border-color: #c5a358;
  background: rgba(197, 163, 88, 0.08);
}
.ft-social-link svg {
  width: 100px;
  height: 20px;
  fill: var(--accent-solid);
  transition: fill 0.2s;
}
.ft-social-link:hover svg {
  fill: #c5a358;
}
