/* --- CSS VARIABLES & BASE SETUP --- */
:root {
  --clr-primary: #d6b98c;
  --clr-accent: #c9a96e;
  --clr-bg-main: #f5efe6;
  --clr-bg-light: #ffffff;
  --clr-text: #1c1c1c;
  --clr-text-muted: #555555;
  --clr-white: #ffffff;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- BOOTSTRAP OVERRIDES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* --- UTILITIES --- */
.section-padding {
  padding: 90px 0;
}

.bg-light,
.section-light {
  background-color: var(--clr-bg-light) !important;
}

.section-beige {
  background-color: var(--clr-bg-main) !important;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}

.title-divider {
  width: 60px;
  height: 2px;
  background-color: var(--clr-accent);
  margin-bottom: 24px;
}

/* --- BUTTONS --- */
.fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  gap: 8px;
}

.fh-btn-primary {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(31, 77, 58, 0.2);
}

.fh-btn-primary:hover {
  background-color: var(--clr-accent);
  color: var(--clr-text);
  box-shadow: 0 8px 25px rgba(200, 169, 106, 0.4);
  transform: translateY(-2px);
}

.fh-btn-secondary {
  background-color: var(--clr-accent);
  color: var(--clr-text);
}

.fh-btn-secondary:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.fh-btn-outline {
  background-color: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
}

.fh-btn-outline:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}

.fh-btn-block {
  width: 100%;
}

/* --- 1. HERO --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2; /* At the bottom */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: -1; /* Above video/image, below content */
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 24px 10vh 24px; /* Push content slightly above center */
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-size: 5.5rem; /* Slightly larger for a more premium presence */
  font-weight: 500;
  margin-bottom: 18px; /* Clean spacing (15-20px) as requested */
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.1;
  letter-spacing: 3px; /* Refined letter spacing */
}

.hero-location {
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  opacity: 0.8; /* Subtle, lower opacity */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-white);
  background-color: transparent;
  border: 1px solid var(--clr-accent);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-hero:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--clr-accent);
  background-color: transparent;
  border: 1px solid var(--clr-accent);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
}

/* --- NAVBAR REDESIGN --- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.4s ease;
  background-color: transparent;
  padding: 20px 0;
}

.main-header.scrolled {
  background-color: var(--clr-bg-main);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.main-header .navbar-brand img {
  height: 45px;
  transition: all 0.4s ease;
}

.main-header:not(.scrolled) .navbar-brand img {
  filter: brightness(0) invert(1) !important;
}

.main-header.scrolled .navbar-brand img {
  filter: brightness(0) invert(0) !important;
}

.main-header .navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-header .nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--clr-white) !important;
  transition: color 0.3s ease;
  padding: 8px 0 !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-header.scrolled .nav-link {
  color: var(--clr-text) !important;
}

.main-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--clr-accent);
  transition: width 0.3s ease;
}

.main-header .nav-link:hover {
  color: var(--clr-accent) !important;
}

.main-header .nav-link:hover::after {
  width: 100%;
}

.main-header .header-btn .btn-default {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.main-header.scrolled .header-btn .btn-default {
  color: var(--clr-text);
  border-color: var(--clr-text);
}

.main-header .header-btn .btn-default:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white) !important;
}

.main-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  gap: 48px;
}

/* Navbar collapse handled naturally by Bootstrap, 
   except we ensure vertical stack on mobile via Media Queries */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

/* Hide sidebar header on desktop */
.sidebar-header {
  display: none;
}

@media (max-width: 991px) {
  /* ── RIGHT-SIDE SIDEBAR ── */
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 80vw;
    max-width: 320px;
    height: 100vh;
    background-color: var(--clr-bg-main);
    padding: 0 0 30px; /* header handles top space */
    display: flex !important;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.06);
    border: none;
    overflow-y: auto;
  }

  .navbar-collapse.show {
    transform: translateX(0);
  }

  /* ── SIDEBAR HEADER (logo + close row) ── */
  .sidebar-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(28, 28, 28, 0.08);
    flex-shrink: 0;
    width: 100%;
  }

  .sidebar-header .sidebar-logo {
    height: 40px;
    width: auto;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(0); /* always dark/black logo */
  }

  .sidebar-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 6px;
    flex-shrink: 0;
    transition: color 0.3s ease;
    position: static;
  }

  .sidebar-close:hover {
    color: var(--clr-accent);
  }

  /* ── MENU AREA ── */
  /* Override Bootstrap ms-auto / d-lg-flex that push content rightward */
  .main-menu-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    padding: 20px 24px 0;
    text-align: left;
  }

  /* Override Bootstrap mr-auto on the ul */
  .main-header .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    gap: 0;
    margin-top: 0;
    margin-bottom: 28px;
    width: 100%;
  }

  .main-header .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(28, 28, 28, 0.06);
  }

  .main-header .nav-link {
    color: var(--clr-text) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 14px 0 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block !important;
    text-align: left !important;
    width: 100%;
  }

  .main-header .nav-link::after {
    display: none;
  }

  /* ── HEADER BUTTON ── */
  /* Override Bootstrap d-inline-flex / ms-lg-4 that misalign on mobile */
  .header-btn {
    display: block !important;
    width: 100% !important;
    margin-top: auto;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }

  .header-btn .btn-default {
    display: block !important;
    width: 100%;
    text-align: center;
    background-color: var(--clr-accent) !important;
    color: var(--clr-white) !important;
    border: none !important;
    padding: 16px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
  }

  /* ── HAMBURGER ICON ── */
  /* Default (on hero/transparent header): white lines */
  .navbar-toggler {
    border: none;
    padding: 6px;
    background: none;
    outline: none;
    box-shadow: none;
    cursor: pointer;
  }

  .navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--clr-white);
    background-image: none !important;
    position: relative;
    transition: background-color 0.3s ease;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--clr-white);
    position: absolute;
    left: 0;
    transition: background-color 0.3s ease;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }
  .navbar-toggler-icon::after {
    top: 7px;
  }

  /* Scrolled: dark/accent lines clearly visible on white bg */
  .main-header.scrolled .navbar-toggler-icon,
  .main-header.scrolled .navbar-toggler-icon::before,
  .main-header.scrolled .navbar-toggler-icon::after {
    background-color: var(--clr-accent);
  }
}

/* BODY SCROLL LOCK (sidebar open)
   position:fixed is required for iOS Safari — overflow:hidden alone
   does not stop touch-scroll on WebKit. The JS stores/restores scrollY
   via the top property to prevent any layout jump. */
body.sidebar-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  /* top is set dynamically by JS: body.style.top = `-${scrollY}px` */
}

.hero-form-wrapper {
  display: flex;
  justify-content: flex-end;
}

.floating-form-card {
  background: var(--clr-white);
  padding: 36px 28px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  color: var(--clr-text);
}

.floating-form-title {
  font-size: 1.6rem;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

.floating-form-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.compact-form .form-group-sm {
  margin-bottom: 12px;
}

.compact-form input,
.compact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: #fafafa;
  transition: var(--transition);
}

.compact-form input:focus,
.compact-form textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  background-color: var(--clr-white);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.6rem;
  color: var(--clr-text-muted);
}

.form-consent input {
  margin-top: 6px;
  width: auto;
  flex-shrink: 0;
}

.compact-form button {
  padding: 14px;
}

/* --- 2. ABOUT --- */
.about {
  /* Background managed via utility class */
}

.about-content .section-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.about-content .title-divider {
  margin-bottom: 30px;
  width: 50px;
}

.about-content .section-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-item i {
  font-size: 1.25rem;
  color: var(--clr-accent);
  background: rgba(201, 169, 110, 0.1);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.highlight-item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* About Slider */
.about-slider-wrapper {
  position: relative;
  width: 100%;
}

.about-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s ease;
  z-index: 1;
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dots - Premium Real Estate Styling */
.about-slider-dots {
  position: absolute;
  bottom: 20px; /* Space from bottom of image */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.about-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4); /* White with low opacity */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.about-slider-dots .dot.active {
  background-color: var(--clr-accent); /* Luxury Gold */
  width: 24px; /* Pill shape */
  border-radius: 4px;
}

.about-slider-dots .dot:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.7);
}

/* ===== ADVANTAGE SECTION START ===== */

.advantage-section {
  /* Background managed via utility class */
}

.advantage-section .section-header {
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .advantage-section .section-header {
    margin-bottom: 16px !important;
  }
}

.advantage-section .section-title {
  color: var(--clr-text); /* Dark text for premium look */
}

.advantage-section .title-divider {
  width: 60px;
  height: 4px;
  background: var(--clr-accent);
  margin-top: 12px;
}

.advantage-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

.advantage-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--clr-accent);
}

/* ===== ADVANTAGE SECTION END ===== */

/* ===== AMENITIES SECTION START ===== */

.amenities-section {
  /* Background managed via utility class */
  overflow: hidden;
}

.filter-wrapper {
  margin-top: 10px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 4px; /* More premium square-ish look */
  border: 1px solid rgba(28, 28, 28, 0.1);
  background: #fff;
  color: #1c1c1c;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  background: #f8f8f8;
  border-color: var(--clr-accent);
}

.filter-btn.active {
  background: #1c1c1c;
  color: #fff;
  border-color: #1c1c1c;
}

/* Mobile Filter Horizontal Scroll Refinement */
@media (max-width: 768px) {
  .filter-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    -webkit-overflow-scrolling: touch;
  }
  .filter-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .filter-btn {
    flex: 0 0 42%; /* Shows ~2.3 items (2 full + 1 partial) */
    width: auto !important;
    white-space: nowrap;
    text-align: center;
    scroll-snap-align: start;
    padding: 12px 15px !important;
    font-size: 0.7rem !important;
  }
  .location-row {
    margin-top: 0px !important;
  }
  .layout-row {
    margin-top: 0px !important;
  }
}

/* Slider Mechanics (Hybrid Scroll) */
.amenities-slider {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.amenities-slider::-webkit-scrollbar {
  display: none;
}

.amenities-track {
  display: flex;
  will-change: scroll-position;
}

.amenity-card-wrapper {
  flex: 0 0 30%; /* 4 items on desktop */
  padding: 0 10px;
  box-sizing: border-box;
  scroll-snap-align: start;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.amenity-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.amenity-card:hover img {
  transform: scale(1.1);
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 24px 24px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.9) 0%,
    rgba(28, 28, 28, 0.4) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.4s ease;
}

.amenity-card:hover .amenity-overlay {
  padding-bottom: 30px;
}

.amenity-overlay h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.amenity-overlay p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Utility for Infinite Loop */
.no-transition {
  transition: none !important;
}

@media (max-width: 992px) {
  .amenity-card-wrapper {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .amenities-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
  .amenities-track {
    gap: 12px;
  }
  .amenity-card-wrapper {
    flex: 0 0 82%;
    padding: 0;
    scroll-snap-align: start;
  }
}

@media (max-width: 576px) {
  .amenity-card-wrapper {
    flex: 0 0 100%;
  }
}

/* ===== AMENITIES SECTION END ===== */
.premium-gallery-section {
  overflow: visible !important;
}

.premium-gallery-section .section-header {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 15px;
}

.premium-gallery-swiper {
  width: 100%;
  overflow: visible !important;
}

/* Structural Fix: 12px border-radius, no scale, no transition */
.swiper-slide.premium-gallery-slide {
  width: 31% !important; /* Exactly 3 images across on Desktop */
  flex: 0 0 31% !important;
  flex-shrink: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  border-radius: 12px !important;
  overflow: hidden;
  cursor: pointer;
}

.swiper-slide.premium-gallery-slide.swiper-slide-active {
  opacity: 1 !important;
  transform: none !important;
  z-index: 10;
  box-shadow: none !important;
}

.premium-gallery-slide img {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  border-radius: 12px !important;
  display: block;
  transition: none !important;
}

@media (max-width: 1400px) {
  .swiper-slide.premium-gallery-slide {
    width: 32% !important;
    flex: 0 0 32% !important;
  }
}

@media (max-width: 1100px) {
  .swiper-slide.premium-gallery-slide {
    width: 45% !important;
    flex: 0 0 45% !important;
  }
}

@media (max-width: 768px) {
  .premium-gallery-section .section-header {
    padding: 0 20px !important;
  }

  /* Match Amenities slide layout (Gap Perfection) */
  .premium-gallery-swiper {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .premium-gallery-swiper .swiper-wrapper {
    gap: 12px !important;
  }

  .premium-gallery-swiper .swiper-slide {
    margin-right: 0 !important;
  }

  .swiper-slide.premium-gallery-slide {
    width: 82% !important;
    flex: 0 0 82% !important;
    transform: none !important;
  }

  .swiper-slide.premium-gallery-slide.swiper-slide-active {
    transform: none !important;
  }

  .premium-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    border-radius: 12px !important;
  }
}

@media (max-width: 480px) {
  .swiper-slide.premium-gallery-slide {
    width: 82% !important;
    flex: 0 0 82% !important;
  }
}

/* Pagination Dots Styling */
.premium-gallery-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 30px !important;
  position: relative !important;
  bottom: 0 !important;
  z-index: 20 !important;
}

.premium-gallery-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #ccc !important;
  border-radius: 50% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 1 !important;
  margin: 0 !important;
  cursor: pointer !important;
  border: none !important;
}

.premium-gallery-pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 20px !important;
  background: #c5a46d !important; /* Premium brand gold */
}

@media (max-width: 768px) {
  .premium-gallery-pagination {
    margin-top: 24px !important;
    gap: 6px !important;
  }

  .premium-gallery-pagination .swiper-pagination-bullet-active {
    width: 20px !important;
  }
}
/* END PREMIUM GALLERY CSS */
/* ===== INVESTMENT & PRICING SECTION START ===== */
.investment-pricing {
  /* Background managed via utility class */
}

.investment-pricing .row {
  display: flex;
  align-items: stretch; /* Balanced column height */
}

.investment-pricing h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 24px;
}

.investment-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.investment-points li {
  position: relative;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  padding-left: 28px;
}

.investment-points li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.pricing-card {
  background: var(--clr-white);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
  border: 1px solid rgba(200, 169, 106, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-card h2 {
  font-size: 2.8rem;
  color: var(--clr-accent);
  margin: 12px 0;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-family: var(--font-body);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.offer-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 8px 18px;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.pricing-card p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.pricing-details,
.payment-options {
  margin-bottom: 25px;
}

.pricing-details p,
.payment-options p {
  margin: 8px 0;
  font-weight: 500;
  color: var(--clr-text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-options h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clr-primary);
  margin-bottom: 12px;
}

/* Subtle button hierarchy */
.pricing-card .fh-btn {
  margin-top: 10px;
  width: 100%;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .pricing-card {
    margin-top: 40px;
    padding: 35px;
  }
}

/* ===== PRICING TABS START ===== */
.pricing-tabs {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-tab {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--clr-accent);
  transition: var(--transition);
}

.pricing-tab.active {
  color: var(--clr-accent);
}

.pricing-tab.active::after {
  width: 100%;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Pricing Headings (Unifed) */
.pricing-card h2 {
  font-size: 2.6rem;
  color: var(--clr-accent);
  margin: 10px 0;
}

.pricing-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--clr-primary);
  margin-bottom: 10px;
  font-weight: 600;
}

.plan-breakdown {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.plan-breakdown li {
  font-size: 0.92rem;
  color: var(--clr-text);
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  font-family: var(--font-body);
}

.plan-breakdown li::before {
  content: "\f058"; /* check-circle */
  font-family: "Phosphor";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.common-pricing-details {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 18px;
  margin-top: 5px;
}

.common-pricing-details p {
  font-size: 0.85rem !important;
  color: var(--clr-text-muted) !important;
  margin-bottom: 8px !important;
  display: block !important;
  align-items: center !important;
  gap: 10px !important;
  font-weight: 500 !important;
}

.common-pricing-details p i {
  color: var(--clr-accent);
  font-size: 1.1rem;
}

/* Pricing Card Mobile Optimization */
@media (max-width: 768px) {
  .pricing-card {
    padding: 24px 20px !important;
    margin-top: 25px;
  }

  .pricing-card .offer-badge {
    top: -10px;
    right: 15px;
    padding: 6px 12px;
    font-size: 9px;
    box-shadow: 0 4px 10px rgba(201, 169, 110, 0.2);
  }

  .pricing-card h3 {
    font-size: 1.05rem !important;
    margin-bottom: 6px;
  }

  .pricing-card h2 {
    font-size: 1.85rem !important;
    margin: 6px 0 14px;
    white-space: nowrap;
    letter-spacing: -0.5px;
  }

  .pricing-tabs {
    gap: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .plan-breakdown {
    margin: 14px 0 !important;
  }

  .plan-breakdown li {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 8px;
    padding-left: 2px;
  }

  .plan-breakdown li::before {
    font-size: 1rem;
    top: 2px;
  }

  .common-pricing-details {
    padding-top: 15px;
    margin-top: 10px;
  }

  .common-pricing-details p {
    font-size: 0.85rem !important;
    margin-bottom: 6px !important;
  }

  /* Custom override for mt-3 buttons within card */
  .pricing-card .mt-3 {
    margin-top: 8px !important;
  }

  .pricing-card .fh-btn {
    padding: 14px 10px;
    font-size: 0.8rem;
  }
}
/* ===== PRICING TABS END ===== */

/* ===== LAYOUT SECTION START ===== */
.layout-section {
  /* Background managed via utility class */
}

.layout-section h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--clr-primary);
  margin-bottom: 20px;
}

.layout-description {
  margin-bottom: 25px;
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.layout-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-points li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--clr-text);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
}

.layout-points li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.layout-image-wrapper {
  border-radius: 18px;
  position: relative;
}

.layout-image {
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.layout-image:hover {
  transform: scale(1.02);
}

.layout-badge {
  position: absolute;
  top: -20px;
  right: 8px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
  z-index: 2;
}
/* ===== LAYOUT SECTION END ===== */

/* --- 4.5 VIDEO TOUR --- */
.video-section {
  /* Background managed via utility class */
}

.video-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.video-tab {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: transparent;
  color: var(--clr-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

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

.video-tab.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: #000;
}


.custom-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.custom-play-btn i {
  font-size: 28px;
  color: #fff;
  margin-left: 4px; /* Optical centering for play icon */
}

@media (max-width: 768px) {
  .video-tabs {
    justify-content: flex-start;
    width: 100%;
  }
  .main-header {
    padding: 4px 0;
  }
  .video-wrapper {
    margin: 0px !important;
  }
  .main-header .navbar-brand img {
    height: 35px;
  }
  .video-tab {
    padding: 6px 14px;
    font-size: 13px;
    min-width: 100px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  background-color: var(--clr-bg-main);
  overflow: hidden;
}

.testi-track-wrapper {
  position: relative;
}

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

.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--clr-white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(31, 77, 58, 0.07);
  border: 1px solid rgba(200, 169, 106, 0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--clr-accent), var(--clr-primary));
  border-radius: 4px 0 0 4px;
  transition: height 0.4s ease;
}

.testi-card:hover::before {
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31, 77, 58, 0.13);
}

.testi-quote-icon {
  font-size: 1.8rem;
  color: var(--clr-accent);
  opacity: 0.6;
  line-height: 1;
}

.testi-text {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), #2d6b52);
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.testi-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-primary);
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-loc i {
  font-size: 0.82rem;
  color: var(--clr-accent);
}

.testi-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.testi-stars i {
  font-size: 0.82rem;
  color: var(--clr-accent);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 77, 58, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.testi-dot.active {
  background: var(--clr-accent);
  width: 24px;
  border-radius: 4px;
}

/* --- 9+10. CTA + FORM --- */
.cta-form-section {
  /* Background managed via utility class */
}

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-main-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 0.98rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.cta-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0;
}

.cta-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text);
  font-weight: 500;
}

.cta-points li i {
  font-size: 1.3rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.cta-contact-strip {
  margin-top: 8px;
}

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-primary);
  border: 2px solid var(--clr-accent);
  padding: 12px 22px;
  border-radius: 8px;
  transition: var(--transition);
}

.cta-phone-link i {
  font-size: 1.3rem;
  color: var(--clr-accent);
}

.cta-phone-link:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.cta-phone-link:hover i {
  color: var(--clr-white);
}

.enquiry-form-card {
  background: var(--clr-white);
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.enquiry-form-header {
  margin-bottom: 22px;
}

.enquiry-form-title {
  font-size: 1.75rem;
  color: var(--clr-primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.enquiry-form-header p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}

.enquiry-form-group {
  margin-bottom: 14px;
}

.enquiry-form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-size: 0.88rem;
}

.enquiry-form-group input {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background-color: #fdfdfd;
  transition: var(--transition);
}

.enquiry-form-group input:focus {
  outline: none;
  border-color: var(--clr-accent);
  background-color: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.12);
}

.enquiry-lead-form .btn {
  margin-top: 6px;
  padding: 13px 20px;
  font-size: 0.98rem;
}

/* =============================================
   RESPONSIVE — TABLET (max 992px)
   ============================================= */
@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-form-wrapper {
    justify-content: center;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .about-image::before,
  .about-image::after {
    display: none;
  }

  .about-image img {
    min-height: 320px;
  }

  .testi-card {
    flex: 0 0 calc(50% - 12px);
  }

  .cta-main-title {
    font-size: 2rem;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .section-padding {
    padding: 30px 0;
  }

  .section-header {
    margin-bottom: 16px !important;
    padding-left: 0;
    padding-right: 0;
  }

  .video-section-header {
    margin-bottom: 16px !important;
    gap: 0px !important;
  }

  .section-title {
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    min-height: 100vh;
    height: auto;
  }

  .hero-bg {
    height: 100%;
    background-attachment: scroll;
  }

  .hero-container {
    padding-top: 100px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .floating-form-card {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .about-content .section-title {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .investment {
    padding: 80px 0;
  }

  .testi-card {
    flex: 0 0 calc(100%);
  }

  .cta-main-title {
    font-size: 1.8rem;
  }

  .enquiry-form-card {
    padding: 28px 20px;
  }

  .footer {
    padding: 50px 0 20px;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .about-content .section-title {
    font-size: 1.6rem;
  }

  .cta-main-title {
    font-size: 1.6rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

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

  .enquiry-form-card {
    padding: 24px 16px;
  }

  .testi-footer {
    flex-wrap: wrap;
  }

  .testi-stars {
    width: 100%;
    margin-top: 4px;
  }

  .footer-col p {
    font-size: 0.88rem;
  }

  .btn {
    font-size: 0.92rem;
    padding: 12px 22px;
  }
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

.hero {
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .hero-form-wrapper {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* --- MOBILE MENU FOOTER & BOTTOM BAR --- */
.mobile-menu-footer,
.mobile-bottom-bar,
.mob-modal-overlay {
  display: none;
}

@media (max-width: 992px) {
  .mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 24px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    flex-shrink: 0;
    width: 100%;
  }

  .mobile-menu-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }

  .mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    text-decoration: none;
    border: none;
    padding: 0;
    width: auto;
  }

  .mobile-menu-contact a i {
    color: #c8a96a;
    font-size: 1.2rem;
  }

  .mobile-menu-company {
    color: #c8a96a;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-align: left;
    margin-bottom: 16px;
  }

  .mobile-menu-socials {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
  }

  .mobile-menu-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    font-size: 1.2rem;
    padding: 0;
    border: none;
    text-decoration: none;
  }

  body {
    padding-bottom: 80px; /* Space for bottom bar */
  }

  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 4px 0 8px;
    display: flex;
    align-items: center;
    z-index: 999;
  }

  .mobile-bottom-bar a,
  .mobile-bottom-bar button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 6px;
    background: transparent;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    border-radius: 0;
    box-shadow: none;
  }

  .mobile-bottom-bar a:active,
  .mobile-bottom-bar button:active {
    background: rgba(0, 0, 0, 0.04);
    transform: none;
  }

  .mobile-bottom-bar a i,
  .mobile-bottom-bar button i {
    font-size: 1.8rem;
    margin-bottom: 2px;
  }

  .mobile-bottom-bar a span,
  .mobile-bottom-bar button span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: #222222;
  }

  .mob-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .mob-btn-whatsapp i {
    color: #25d366;
  }

  .mob-btn-call i {
    color: #1f4d3a;
  }

  .mob-btn-enquire i {
    color: #1f4d3a;
  }

  .mob-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .mob-modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mob-modal-card {
    background: var(--clr-white);
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 32px 24px 40px;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .mob-modal-overlay.active .mob-modal-card {
    transform: translateY(0);
  }

  .mob-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 5px;
  }
}

/* --- FOOTER DISCLAIMER & CREDIT --- */
.disclaimer-block {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 20px;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.7;
  padding: 0 24px;
}

.disclaimer-short,
.disclaimer-full {
  margin-bottom: 8px;
}

.disclaimer-toggle {
  background: none;
  border: none;
  color: #c8a96a;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity 0.2s ease;
}

.disclaimer-toggle:hover {
  opacity: 0.8;
}

.footer-credit {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  padding-bottom: 16px;
  font-family: "Outfit", sans-serif;
}

.footer-credit a {
  color: #c8a96a;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-credit a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* --- LOGO IMAGES --- */
.navbar-logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .navbar-logo-img {
    height: 36px;
  }
}

/* Default state — transparent navbar (top of page) */
.navbar .logo-dark {
  display: none;
}

.navbar .logo-light {
  display: block;
  filter: brightness(0) invert(1);
}

/* Scrolled state — white navbar */
.navbar.scrolled .logo-light {
  display: none;
}

.navbar.scrolled .logo-dark {
  display: block;
  filter: none;
}

/* Disabled button state */
.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background-color: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  box-shadow: none !important;
}

/* ===== Experience Luxury Living Section START ===== */
.luxury-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.luxury-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.luxury-img-wrapper:hover img {
  transform: scale(1.03);
}

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

.small-img {
  aspect-ratio: 16 / 9;
  flex: 1;
}

@media (min-width: 992px) {
  .large-img {
    height: 100%;
    min-height: 550px;
  }
}

@media (max-width: 991px) {
  .luxury-img-wrapper {
    aspect-ratio: 16 / 9;
  }
}
/* ===== Experience Luxury Living Section END ===== */

/* ===== LIFESTYLE SECTION START ===== */
.lifestyle-section {
  /* Background managed via utility class */
}

.lifestyle-section .section-header {
  margin-bottom: 40px;
  text-align: left;
}

@media (max-width: 768px) {
  .lifestyle-section .section-header {
    margin-bottom: 16px !important;
  }
}

.lifestyle-section .section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  color: var(--clr-text-main);
  letter-spacing: -0.02em;
}

.lifestyle-section .title-divider {
  width: 60px;
  height: 2px;
  background: var(--clr-accent); /* Luxury Gold */
  margin-top: 12px;
}

.lifestyle-scroll-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 24px;
}

.lifestyle-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.lifestyle-scroll-item {
  flex: 0 0 85vw;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  position: relative; /* Required for absolute overlay */
}

.lifestyle-scroll-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease; /* Smooth hover transition */
}

.lifestyle-scroll-item:hover img {
  transform: scale(1.03); /* Subtle zoom effect */
}

/* ===== LIFESTYLE IMAGE OVERLAY START ===== */
.lifestyle-scroll-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
  pointer-events: none;
}

.image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
  z-index: 2;
}

.image-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #ffffff;
}

.image-overlay p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  opacity: 0.9;
  font-weight: 400;
  letter-spacing: 0.02em;
}
/* ===== LIFESTYLE IMAGE OVERLAY END ===== */

@media (max-width: 768px) {
  .lifestyle-scroll-wrapper {
    padding-left: 20px;
    padding-right: 40px;
    gap: 12px;
  }
  .lifestyle-scroll-item {
    scroll-snap-align: start;
  }
}

@media (min-width: 992px) {
  .lifestyle-scroll-item {
    flex: 0 0 55vw;
  }
}
/* ===== LIFESTYLE SECTION END ===== */

/* ===== LOCATION SECTION START ===== */
.location-section {
  /* Background managed via utility class */
}

.location-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.location-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.62;
}

.location-points li::before {
  content: "\f058"; /* FontAwesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--clr-accent);
  font-size: 1.1rem;
}

.location-map {
  border-radius: 18px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.location-map img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.location-map:hover img {
  transform: scale(1.02);
}

.location-distance {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.distance-item {
  flex: 1 1 calc(20% - 15px); /* 5 items per row, or wrap appropriately */
  min-width: 180px;
  background: var(--clr-white);

  padding: 16px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text);
  border: 1px solid rgba(214, 185, 140, 0.2); /* Subtle beige border */
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.distance-item:hover {
  background: var(--clr-bg-main);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
  .location-distance {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .distance-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
/* ===== LOCATION SECTION END ===== */

/* ===== MODAL SECTION START ===== */
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(4px);
}

#enquiryModal .modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  padding: 20px;
  overflow: hidden;
}

#enquiryModal .modal-header {
  border-bottom: none;
  padding-bottom: 5px;
  position: relative;
}

#enquiryModal .modal-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--clr-primary);
  margin-bottom: 4px;
}

#enquiryModal .modal-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

#enquiryModal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f8f9fa;
  border-radius: 50%;
  padding: 10px;
  opacity: 0.8;
  transition: var(--transition);
}

#enquiryModal .btn-close:hover {
  opacity: 1;
  background-color: #f1f3f5;
  transform: rotate(90deg);
}

#enquiryModal .modal-body {
  padding-top: 10px;
}

#enquiryModal .modal-form-group {
  margin-bottom: 18px;
}

#enquiryModal .modal-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  margin-bottom: 6px;
}

#enquiryModal .modal-form-group input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background-color: #fdfdfd;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

#enquiryModal .modal-form-group input:focus {
  outline: none;
  border-color: var(--clr-accent);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}

#enquiryModal .modal-footer {
  border-top: none;
  padding-top: 10px;
}

#enquiryModal .fh-btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 576px) {
  #enquiryModal .modal-content {
    padding: 15px;
    border-radius: 12px;
  }

  #enquiryModal .modal-title {
    font-size: 1.5rem;
  }
  .highlight-item span {
    font-size: 0.7rem;
  }
}
/* ===== MODAL SECTION END ===== */

/* ===== MOBILE MEDIA CONSISTENCY REFINEMENT (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Use Amenities (4:3) as the reference for all visual blocks */

  /* 1. Art of Living (Lifestyle) Images */
  .lifestyle-scroll-item {
    aspect-ratio: 4 / 3 !important;
  }
  .advantage-row {
    margin-top: 0px !important;
  }
  .advantage-card {
    padding: 10px 15px !important;
  }
  .lifestyle-scroll-item img {
    height: 100%;
    object-fit: cover !important;
  }



  /* 3. Global consistency for section images if needed */
  .about-slide img {
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
  }
  .title-divider {
    margin-bottom: 0px;
  }
  .advantage-section .advantage-row > *:first-child {
    margin-top: 0 !important;
  }
  .advantage-section .advantage-row > * {
    margin-top: 10px !important;
  }
  .location-points li {
    font-size: 0.9rem !important;
    margin-bottom: 5px !important;
  }
  .investment-row {
    margin-top: 0px !important;
  }
  .investment-pricing h3 {
    font-size: 1.6rem;
  }
  .layout-section h3 {
    font-size: 1.6rem;
  }
  .amenities-header-row {
    margin-bottom: 0px !important;
  }
  .amenities-filter-row {
    margin-bottom: 0px !important;
  }
  .hero-location {
    font-size: 0.9rem !important;
  }
  .highlight-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}
.number-font {
  font-family: "Inter", sans-serif;
}

.price-cloud {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #512ec3, #7a5af8);
    color: #fff;
    font-weight: 600;
    font-size: 18px;

    /* Cloud / Blob Shape */
    border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%;

    /* Soft floating feel */
    box-shadow: 
        0 8px 20px rgba(81, 46, 195, 0.35),
        inset 0 2px 6px rgba(255,255,255,0.25);

    position: relative;
    animation: floatCloud 4s ease-in-out infinite;
}

/* Optional: subtle organic movement */
@keyframes floatCloud {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}
/* RESPONSIVE HERO FIXED ABOVE */
.booking-highlight {
  background: rgba(201, 169, 110, 0.08); /* soft gold tint */
  border-left: 3px solid var(--clr-accent);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--clr-text);
  margin-bottom: 12px !important;
  display: inline-block;
}

.booking-highlight strong {
  font-weight: 600;
  color: var(--clr-accent);
  margin-left: 4px;
}
@media (max-width: 768px) {
  .booking-highlight {
    margin-bottom: 8 !important;
  }
}
/* START: Fixed Enquire Button */
.fixed-enquire-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  z-index: 9998;
  background-color: #c9a96e; /* Premium accent color */
  color: #ffffff;
  padding: 12px 25px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, padding 0.3s ease, visibility 0.4s;
  white-space: nowrap;
}

/* START: Enquire Button Modal Behavior */
.fixed-enquire-btn.btn-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) rotate(-90deg) translateX(20px);
}
/* END: Enquire Button Modal Behavior */

.fixed-enquire-btn:hover {
  background-color: #1c1c1c; /* Darker hover for contrast */
  color: #c9a96e;
  padding-bottom: 30px; /* Subtle outwards movement */
}

@media (max-width: 768px) {
  .fixed-enquire-btn {
    padding: 7px 20px;
    font-size: 10px;
    letter-spacing: 1px;
      top: 35%;

  }
}

/* START: Gallery Arrow Navigation styling */
.premium-gallery-button-next,
.premium-gallery-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-gallery-button-next::after,
.premium-gallery-button-prev::after {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    font-family: swiper-icons;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.premium-gallery-button-prev::after {
    content: 'prev';
}

.premium-gallery-button-next::after {
    content: 'next';
}

.premium-gallery-button-next:hover,
.premium-gallery-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Positioning */
.premium-gallery-button-prev {
    left: 10px;
}

.premium-gallery-button-next {
    right: 10px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .premium-gallery-button-next,
    .premium-gallery-button-prev {
        width: 36px;
        height: 36px;
    }
}
/* END: Gallery Arrow Navigation styling */

/* END: Fixed Enquire Button */



/* START: Gallery Lightbox Section */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90%;
  max-height: 85%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.lightbox-prev {
  left: 20px;
}
.lightbox-next {
  right: 20px;
}

/* END: Gallery Lightbox Section */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.video-thumbnail-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.video-thumbnail-container:hover .custom-play-btn {
  transform: scale(1.15);
  background: var(--clr-accent);
  box-shadow: 0 0 40px rgba(201, 169, 110, 0.4);
}
.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-iframe-container {
  position: absolute;
  inset: 0;
}
.video-thumbnail-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-iframe-container {
  position: absolute;
  inset: 0;
}
.custom-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); /* CHANGE */
  border: 1px solid rgba(255, 255, 255, 0.4); /* ADD */
  backdrop-filter: blur(10px); /* CHANGE */
  transition: transform 0.3s ease;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: #000;
  aspect-ratio: 16 / 9;
}

/* Thumbnail */
.video-thumbnail-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumbnail-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Play Button FIX */
.custom-play-btn {
  position: relative;
  z-index: 2;
}

/* Iframe */
.video-iframe-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 768px) {


  .custom-play-btn {
    width: 60px;
    height: 60px;
  }
  .layout-badge {
      font-size:"0.3rem";
      padding:4px 16px;
      top:-10px;
  }

 
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.coming-soon-overlay span {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
}
.mobile-break {
  display: none;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 5;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(3px);
}

.mouse {
  width: 28px;
  height: 48px;
  border: 2px solid var(--clr-accent); /* your gold color */
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 2px;
  animation: scrollWheel 1.6s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 60px;
  }

  .mouse {
    width: 24px;
    height: 42px;
  }
}
@media (max-width: 524px) {
  .scroll-indicator {
    bottom: 40px;
  }

  .mouse {
    width: 24px;
    height: 42px;
  }
}

